wxGTK now chooses the best visual X offers,

instead of the default one.
  Reordered object files for library creation.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2886 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-06-24 14:43:01 +00:00
parent 9fff23f6cb
commit 7b280524bb
5 changed files with 50 additions and 42 deletions

View File

@@ -297,9 +297,13 @@ wxApp::~wxApp()
bool wxApp::OnInitGui()
{
/* Nothing to do for 15, 16, 24, 32 bit displays */
/* on some SGIs, the default visual is just 256 colours, so we
make sure we get the best. this can sometimes be wasteful,
of course, but what do these guys pay $30.000 for? */
GdkVisual* visual = gdk_visual_get_best();
gtk_widget_set_default_visual( visual );
GdkVisual *visual = gdk_visual_get_system();
/* Nothing to do for 15, 16, 24, 32 bit displays */
if (visual->depth > 8) return TRUE;
/* this initiates the standard palette as defined by GdkImlib