+25th June '99: Seventh wxGTK 2.1 snapshot released
+
+Many fixes to th new makefile system. The last version gave
+immediate crashes on all Unices except Linux when linked
+dynamically against an application. I reordered the object
+files in the library as I guess that this was the cause.
+
+Added icons to message box. This also slightly killed the
+layout so this needs to be changed again.
+
+wxGTK now chooses the best visual available on the display instead
+of the default one.
+
+Fixed wxProgressDialog again.
+
+Some more corrections I forgot.
+
+New wxPython (includes new layout system and printing).
+
15th June '99: Sixth wxGTK 2.1 snapshot released
}
else
{
- sm_abortIt = true;
- keepGoing = false;
+ sm_abortIt = TRUE;
+ keepGoing = FALSE;
}
}
wxYield();
parent = parent->GetParent();
}
- bool iconized = false;
+ bool iconized = FALSE;
wxFrame *frame = wxDynamicCast(parent, wxFrame);
if ( frame )
iconized = frame->IsIconized();
##
## Process this file with automake to produce Makefile.in
-AUTOMAKE_OPTIONS = 1.3
-# no-dependencies
+AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp .c
}
else
{
+#if (GTK_MINOR_VERSION > 0)
/* assume 8-bit true or static colors. this really
exists. */
GdkVisual* vis = gdk_colormap_get_visual( cmap );
index = (r >> (5 - vis->red_prec)) << vis->red_shift;
index |= (g >> (5 - vis->green_prec)) << vis->green_shift;
index |= (b >> (5 - vis->blue_prec)) << vis->blue_shift;
+#else
+ wxFAIL_MSG( _T("Unsupported graphics hardware") );
+#endif
}
-
m_colorCube[ (r*1024) + (g*32) + b ] = index;
}
}
##
## Process this file with automake to produce Makefile.in
-AUTOMAKE_OPTIONS = 1.3
-# no-dependencies
+AUTOMAKE_OPTIONS = 1.3 no-dependencies
SUFFIXES = .cpp .c
}
else
{
+#if (GTK_MINOR_VERSION > 0)
/* assume 8-bit true or static colors. this really
exists. */
GdkVisual* vis = gdk_colormap_get_visual( cmap );
index = (r >> (5 - vis->red_prec)) << vis->red_shift;
index |= (g >> (5 - vis->green_prec)) << vis->green_shift;
index |= (b >> (5 - vis->blue_prec)) << vis->blue_shift;
+#else
+ wxFAIL_MSG( _T("Unsupported graphics hardware") );
+#endif
}
-
m_colorCube[ (r*1024) + (g*32) + b ] = index;
}
}