]> git.saurik.com Git - wxWidgets.git/commitdiff
Implemented OnParentEnable to allow widgets to reset their colours
authorJulian Smart <julian@anthemion.co.uk>
Thu, 17 May 2001 10:58:05 +0000 (10:58 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 17 May 2001 10:58:05 +0000 (10:58 +0000)
after a wxWindow::Enable call

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

include/wx/gtk/textctrl.h
include/wx/gtk/window.h
include/wx/gtk1/textctrl.h
include/wx/gtk1/window.h
src/gtk/textctrl.cpp
src/gtk/window.cpp
src/gtk1/textctrl.cpp
src/gtk1/window.cpp

index ebc4c18d4a3f0f50e7e1c4bb09bf36e50443748a..0a529c6a2789f32d728084d8eed4bd8d3d5cce72 100644 (file)
@@ -143,6 +143,11 @@ public:
 
     void SetModified() { m_modified = TRUE; }
 
+    // wxGTK-specific: called recursively by Enable,
+    // to give widgets an oppprtunity to correct their colours after they
+    // have been changed by Enable
+    virtual void OnParentEnable( bool enable ) ;
+
 protected:
     virtual wxSize DoGetBestSize() const;
 
index 914a9a045a667bcd578af88e35be517993c15754..187c9e34cb74796daeee7454e6bd2dbcba2bfc86 100644 (file)
@@ -114,6 +114,11 @@ public:
     /* For compatibility across platforms (not in event table) */
     void OnIdle(wxIdleEvent& WXUNUSED(event)) {};
 
+    // wxGTK-specific: called recursively by Enable,
+    // to give widgets an oppprtunity to correct their colours after they
+    // have been changed by Enable
+    virtual void OnParentEnable( bool WXUNUSED(enable) ) {};
+
     /* used by all window classes in the widget creation process */
     bool PreCreation( wxWindow *parent, const wxPoint &pos, const wxSize &size );
     void PostCreation();
index ebc4c18d4a3f0f50e7e1c4bb09bf36e50443748a..0a529c6a2789f32d728084d8eed4bd8d3d5cce72 100644 (file)
@@ -143,6 +143,11 @@ public:
 
     void SetModified() { m_modified = TRUE; }
 
+    // wxGTK-specific: called recursively by Enable,
+    // to give widgets an oppprtunity to correct their colours after they
+    // have been changed by Enable
+    virtual void OnParentEnable( bool enable ) ;
+
 protected:
     virtual wxSize DoGetBestSize() const;
 
index 914a9a045a667bcd578af88e35be517993c15754..187c9e34cb74796daeee7454e6bd2dbcba2bfc86 100644 (file)
@@ -114,6 +114,11 @@ public:
     /* For compatibility across platforms (not in event table) */
     void OnIdle(wxIdleEvent& WXUNUSED(event)) {};
 
+    // wxGTK-specific: called recursively by Enable,
+    // to give widgets an oppprtunity to correct their colours after they
+    // have been changed by Enable
+    virtual void OnParentEnable( bool WXUNUSED(enable) ) {};
+
     /* used by all window classes in the widget creation process */
     bool PreCreation( wxWindow *parent, const wxPoint &pos, const wxSize &size );
     void PostCreation();
index 91caedb0d746200af33333d924fbc6c650f8108f..fb8a8e6fce816ff3fd75523c7359b0ff0214ccc7 100644 (file)
@@ -757,19 +757,6 @@ bool wxTextCtrl::Enable( bool enable )
     {
         gtk_text_set_editable( GTK_TEXT(m_text), enable );
 
-       // If we have a custom background colour, we use this colour in both
-       // disabled and enabled mode, or we end up with a different colour under the
-       // text.
-        wxColour oldColour = GetBackgroundColour();
-        if (oldColour.Ok())
-        {
-            // Need to set twice or it'll optimize the useful stuff out
-            if (oldColour == * wxWHITE)
-                SetBackgroundColour(*wxBLACK);
-            else
-                SetBackgroundColour(*wxWHITE);
-            SetBackgroundColour(oldColour);
-        }
     }
     else
     {
@@ -779,6 +766,26 @@ bool wxTextCtrl::Enable( bool enable )
     return TRUE;
 }
 
+// wxGTK-specific: called recursively by Enable,
+// to give widgets an oppprtunity to correct their colours after they
+// have been changed by Enable
+void wxTextCtrl::OnParentEnable( bool enable )
+{
+    // If we have a custom background colour, we use this colour in both
+    // disabled and enabled mode, or we end up with a different colour under the
+    // text.
+    wxColour oldColour = GetBackgroundColour();
+    if (oldColour.Ok())
+    {
+        // Need to set twice or it'll optimize the useful stuff out
+        if (oldColour == * wxWHITE)
+            SetBackgroundColour(*wxBLACK);
+        else
+            SetBackgroundColour(*wxWHITE);
+        SetBackgroundColour(oldColour);
+    }
+}
+
 void wxTextCtrl::DiscardEdits()
 {
     m_modified = FALSE;
index 8adc34fead87a4ac07986a73d7f3e9498786f92f..0feff90ecba2dec8e1aabd8c278d7074748be40b 100644 (file)
@@ -2934,6 +2934,23 @@ bool wxWindow::Show( bool show )
     return TRUE;
 }
 
+static void wxWindowNotifyEnable(wxWindow* win, bool enable)
+{
+    win->OnParentEnable(enable);
+
+    // Recurse, so that children have the opportunity to Do The Right Thing
+    // and reset colours that have been messed up by a parent's (really ancestor's)
+    // Enable call
+    for ( wxWindowList::Node *node = win->GetChildren().GetFirst();
+          node;
+          node = node->GetNext() )
+    {
+        wxWindow *child = node->GetData();
+        if (!child->IsKindOf(CLASSINFO(wxDialog)) && !child->IsKindOf(CLASSINFO(wxFrame)))
+            wxWindowNotifyEnable(child, enable);
+    }
+}
+
 bool wxWindow::Enable( bool enable )
 {
     wxCHECK_MSG( (m_widget != NULL), FALSE, wxT("invalid window") );
@@ -2948,15 +2965,7 @@ bool wxWindow::Enable( bool enable )
     if ( m_wxwindow )
         gtk_widget_set_sensitive( m_wxwindow, enable );
 
-    // Recurse, so that children have the opportunity to Do The Right Thing.
-    for ( wxWindowList::Node *node = GetChildren().GetFirst();
-          node;
-          node = node->GetNext() )
-    {
-        wxWindow *child = node->GetData();
-       if (!child->IsKindOf(CLASSINFO(wxDialog)) && !child->IsKindOf(CLASSINFO(wxFrame)))
-            child->Enable(enable);
-    }
+    wxWindowNotifyEnable(this, enable);
 
     return TRUE;
 }
index 91caedb0d746200af33333d924fbc6c650f8108f..fb8a8e6fce816ff3fd75523c7359b0ff0214ccc7 100644 (file)
@@ -757,19 +757,6 @@ bool wxTextCtrl::Enable( bool enable )
     {
         gtk_text_set_editable( GTK_TEXT(m_text), enable );
 
-       // If we have a custom background colour, we use this colour in both
-       // disabled and enabled mode, or we end up with a different colour under the
-       // text.
-        wxColour oldColour = GetBackgroundColour();
-        if (oldColour.Ok())
-        {
-            // Need to set twice or it'll optimize the useful stuff out
-            if (oldColour == * wxWHITE)
-                SetBackgroundColour(*wxBLACK);
-            else
-                SetBackgroundColour(*wxWHITE);
-            SetBackgroundColour(oldColour);
-        }
     }
     else
     {
@@ -779,6 +766,26 @@ bool wxTextCtrl::Enable( bool enable )
     return TRUE;
 }
 
+// wxGTK-specific: called recursively by Enable,
+// to give widgets an oppprtunity to correct their colours after they
+// have been changed by Enable
+void wxTextCtrl::OnParentEnable( bool enable )
+{
+    // If we have a custom background colour, we use this colour in both
+    // disabled and enabled mode, or we end up with a different colour under the
+    // text.
+    wxColour oldColour = GetBackgroundColour();
+    if (oldColour.Ok())
+    {
+        // Need to set twice or it'll optimize the useful stuff out
+        if (oldColour == * wxWHITE)
+            SetBackgroundColour(*wxBLACK);
+        else
+            SetBackgroundColour(*wxWHITE);
+        SetBackgroundColour(oldColour);
+    }
+}
+
 void wxTextCtrl::DiscardEdits()
 {
     m_modified = FALSE;
index 8adc34fead87a4ac07986a73d7f3e9498786f92f..0feff90ecba2dec8e1aabd8c278d7074748be40b 100644 (file)
@@ -2934,6 +2934,23 @@ bool wxWindow::Show( bool show )
     return TRUE;
 }
 
+static void wxWindowNotifyEnable(wxWindow* win, bool enable)
+{
+    win->OnParentEnable(enable);
+
+    // Recurse, so that children have the opportunity to Do The Right Thing
+    // and reset colours that have been messed up by a parent's (really ancestor's)
+    // Enable call
+    for ( wxWindowList::Node *node = win->GetChildren().GetFirst();
+          node;
+          node = node->GetNext() )
+    {
+        wxWindow *child = node->GetData();
+        if (!child->IsKindOf(CLASSINFO(wxDialog)) && !child->IsKindOf(CLASSINFO(wxFrame)))
+            wxWindowNotifyEnable(child, enable);
+    }
+}
+
 bool wxWindow::Enable( bool enable )
 {
     wxCHECK_MSG( (m_widget != NULL), FALSE, wxT("invalid window") );
@@ -2948,15 +2965,7 @@ bool wxWindow::Enable( bool enable )
     if ( m_wxwindow )
         gtk_widget_set_sensitive( m_wxwindow, enable );
 
-    // Recurse, so that children have the opportunity to Do The Right Thing.
-    for ( wxWindowList::Node *node = GetChildren().GetFirst();
-          node;
-          node = node->GetNext() )
-    {
-        wxWindow *child = node->GetData();
-       if (!child->IsKindOf(CLASSINFO(wxDialog)) && !child->IsKindOf(CLASSINFO(wxFrame)))
-            child->Enable(enable);
-    }
+    wxWindowNotifyEnable(this, enable);
 
     return TRUE;
 }