]> git.saurik.com Git - wxWidgets.git/commitdiff
wxFrame::Set/GetClientSize() uses toolbar area again,
authorRobert Roebling <robert@roebling.de>
Sun, 24 Oct 1999 19:09:50 +0000 (19:09 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 24 Oct 1999 19:09:50 +0000 (19:09 +0000)
  wxWindow no longer reroutes mouse events to invisble windows,
  Compile fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/frame.cpp
src/gtk/radiobox.cpp
src/gtk/window.cpp
src/gtk1/frame.cpp
src/gtk1/radiobox.cpp
src/gtk1/window.cpp
src/zlib/zutil.h

index 7cbd3ec7d2017da9a94599ea1369acbb8b075457..3098d050c0f0a6adb57fdc5e2375286bbccbbf2b 100644 (file)
@@ -615,7 +615,6 @@ void wxFrame::DoGetClientSize( int *width, int *height ) const
 
 #if wxUSE_TOOLBAR
         /* tool bar */
-/*
         if (m_frameToolBar)
         {
             if (!m_toolBarDetached)
@@ -627,7 +626,6 @@ void wxFrame::DoGetClientSize( int *width, int *height ) const
             else
                 (*height) -= wxPLACE_HOLDER;
         }
-*/
 #endif
 
         /* mini edge */
@@ -661,7 +659,6 @@ void wxFrame::DoSetClientSize( int width, int height )
 
 #if wxUSE_TOOLBAR
         /* tool bar */
-/*
         if (m_frameToolBar)
         {
             if (!m_toolBarDetached)
@@ -673,7 +670,6 @@ void wxFrame::DoSetClientSize( int width, int height )
             else
                 height += wxPLACE_HOLDER;
         }
-*/
 #endif
 
     DoSetSize( -1, -1, width + m_miniEdge*2, height  + m_miniEdge*2 + m_miniTitle, 0 );
index d96aff1a1d099c852379498aafaf74a091a9887e..53796108d5974db079d96060750e717485000cb5 100644 (file)
@@ -277,7 +277,11 @@ bool wxRadioBox::Show( bool show )
 {
     wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid radiobox") );
 
-    wxWindow::Show( show );
+    if (!wxControl::Show(show))
+    {
+        // nothing to do
+        return FALSE;
+    }
 
     if ((m_windowStyle & wxNO_BORDER) != 0)
         gtk_widget_hide( m_widget );
index bc543f7d514f1cca6f656aa7a926297caef2118d..c6b827a1e4ee66d34130638ef4f0eda6d4954c95 100644 (file)
@@ -1122,6 +1122,10 @@ static gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton
         while (node)
         {
             wxWindow *child = (wxWindow*)node->Data();
+           
+            node = node->Next();
+           if (!child->IsShown())
+               continue;
 
             if (child->m_isStaticBox)
             {
@@ -1161,7 +1165,6 @@ static gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton
                     break;
                 }
             }
-            node = node->Next();
         }
     }
 
@@ -1247,6 +1250,10 @@ static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButto
         {
             wxWindow *child = (wxWindow*)node->Data();
 
+            node = node->Next();
+           if (!child->IsShown())
+               continue;
+
             if (child->m_isStaticBox)
             {
                 // wxStaticBox is transparent in the box itself
@@ -1285,7 +1292,6 @@ static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButto
                     break;
                 }
             }
-            node = node->Next();
         }
     }
 
@@ -1364,6 +1370,10 @@ static gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion
         {
             wxWindow *child = (wxWindow*)node->Data();
 
+            node = node->Next();
+           if (!child->IsShown())
+               continue;
+
             if (child->m_isStaticBox)
             {
                 // wxStaticBox is transparent in the box itself
@@ -1402,7 +1412,6 @@ static gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion
                     break;
                 }
             }
-            node = node->Next();
         }
     }
 
index 7cbd3ec7d2017da9a94599ea1369acbb8b075457..3098d050c0f0a6adb57fdc5e2375286bbccbbf2b 100644 (file)
@@ -615,7 +615,6 @@ void wxFrame::DoGetClientSize( int *width, int *height ) const
 
 #if wxUSE_TOOLBAR
         /* tool bar */
-/*
         if (m_frameToolBar)
         {
             if (!m_toolBarDetached)
@@ -627,7 +626,6 @@ void wxFrame::DoGetClientSize( int *width, int *height ) const
             else
                 (*height) -= wxPLACE_HOLDER;
         }
-*/
 #endif
 
         /* mini edge */
@@ -661,7 +659,6 @@ void wxFrame::DoSetClientSize( int width, int height )
 
 #if wxUSE_TOOLBAR
         /* tool bar */
-/*
         if (m_frameToolBar)
         {
             if (!m_toolBarDetached)
@@ -673,7 +670,6 @@ void wxFrame::DoSetClientSize( int width, int height )
             else
                 height += wxPLACE_HOLDER;
         }
-*/
 #endif
 
     DoSetSize( -1, -1, width + m_miniEdge*2, height  + m_miniEdge*2 + m_miniTitle, 0 );
index d96aff1a1d099c852379498aafaf74a091a9887e..53796108d5974db079d96060750e717485000cb5 100644 (file)
@@ -277,7 +277,11 @@ bool wxRadioBox::Show( bool show )
 {
     wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid radiobox") );
 
-    wxWindow::Show( show );
+    if (!wxControl::Show(show))
+    {
+        // nothing to do
+        return FALSE;
+    }
 
     if ((m_windowStyle & wxNO_BORDER) != 0)
         gtk_widget_hide( m_widget );
index bc543f7d514f1cca6f656aa7a926297caef2118d..c6b827a1e4ee66d34130638ef4f0eda6d4954c95 100644 (file)
@@ -1122,6 +1122,10 @@ static gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton
         while (node)
         {
             wxWindow *child = (wxWindow*)node->Data();
+           
+            node = node->Next();
+           if (!child->IsShown())
+               continue;
 
             if (child->m_isStaticBox)
             {
@@ -1161,7 +1165,6 @@ static gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton
                     break;
                 }
             }
-            node = node->Next();
         }
     }
 
@@ -1247,6 +1250,10 @@ static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButto
         {
             wxWindow *child = (wxWindow*)node->Data();
 
+            node = node->Next();
+           if (!child->IsShown())
+               continue;
+
             if (child->m_isStaticBox)
             {
                 // wxStaticBox is transparent in the box itself
@@ -1285,7 +1292,6 @@ static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButto
                     break;
                 }
             }
-            node = node->Next();
         }
     }
 
@@ -1364,6 +1370,10 @@ static gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion
         {
             wxWindow *child = (wxWindow*)node->Data();
 
+            node = node->Next();
+           if (!child->IsShown())
+               continue;
+
             if (child->m_isStaticBox)
             {
                 // wxStaticBox is transparent in the box itself
@@ -1402,7 +1412,6 @@ static gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion
                     break;
                 }
             }
-            node = node->Next();
         }
     }
 
index f6a075104619c58aa20d37283945e4f1dfe38f7d..1415c44225c108776ed79fac2e9ea74b50b7f310 100644 (file)
@@ -208,12 +208,14 @@ extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
 #endif
 
 
+#if defined(__VISAGECPP__)
 typedef uLong (ZEXPORT _Optlink *check_func) OF((uLong check, const Bytef *buf,
                                       uInt len));
-#if defined(__VISAGECPP__)
 voidpf _Optlink zcalloc OF((voidpf opaque, unsigned items, unsigned size));
 void  _Optlink zcfree OF((voidpf opaque, voidpf ptr));
 #else
+typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf,
+                                      uInt len));
 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
 void   zcfree  OF((voidpf opaque, voidpf ptr));
 #endif