-bool wxApp::InitVisual()
-{
- if (wxVisualSetByExternal)
- {
- /* this happens in the wxModule code of the OpenGl canvas.
- it chooses the best display for OpenGl and stores it
- in wxDisplaySetByExternal. we then have to make it the
- default for the system */
-
- gtk_widget_set_default_visual( wxVisualSetByExternal );
- }
-
- if (wxColormapSetByExternal)
- {
- /* OpenGl also gives us a colormap */
-
- gtk_widget_set_default_colormap( wxColormapSetByExternal );
- }
- else
- {
- /* this initiates the standard palette as defined by GdkImlib
- in the GNOME libraries. it ensures that all GNOME applications
- use the same 64 colormap entries on 8-bit displays so you
- can use several rather graphics-heavy applications at the
- same time */
-
- GdkColormap *cmap = gdk_colormap_new( gdk_visual_get_system(), TRUE );
-
- for (int i = 0; i < 64; i++)
- {
- GdkColor col;
- col.red = g_palette[i*3 + 0] << 8;
- col.green = g_palette[i*3 + 1] << 8;
- col.blue = g_palette[i*3 + 2] << 8;
- col.pixel = 0;
+//-----------------------------------------------------------------------------
+// wxWakeUpIdle
+//-----------------------------------------------------------------------------