]> git.saurik.com Git - wxWidgets.git/commitdiff
wxAUI: Don't fade venetian blind effect by default
authorAlex Bligh <alex@alex.org.uk>
Sun, 23 Jul 2006 11:39:13 +0000 (11:39 +0000)
committerAlex Bligh <alex@alex.org.uk>
Sun, 23 Jul 2006 11:39:13 +0000 (11:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40246 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/aui/framemanager.h
src/aui/framemanager.cpp

index 904f07415b2d11421b61b6f2badc89c6f5545477..23a277e70544480493d7c7f9073bd4ec31f773b0 100644 (file)
@@ -48,10 +48,12 @@ enum wxFrameManagerOption
     // at runtime we determine we cannot use transparency (because, for instance, the OS does not support it).
     // setting this flag drops back in such circumstances (only) to the behaviour without wxAUI_MGR_TRANSPARENT_HINT
     wxAUI_MGR_DISABLE_VENETIAN_BLINDS = 1 << 5,
     // at runtime we determine we cannot use transparency (because, for instance, the OS does not support it).
     // setting this flag drops back in such circumstances (only) to the behaviour without wxAUI_MGR_TRANSPARENT_HINT
     wxAUI_MGR_DISABLE_VENETIAN_BLINDS = 1 << 5,
+    wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE = 1 << 6,
 
     wxAUI_MGR_DEFAULT = wxAUI_MGR_ALLOW_FLOATING |
                         wxAUI_MGR_TRANSPARENT_HINT |
 
     wxAUI_MGR_DEFAULT = wxAUI_MGR_ALLOW_FLOATING |
                         wxAUI_MGR_TRANSPARENT_HINT |
-                        wxAUI_MGR_TRANSPARENT_HINT_FADE
+                        wxAUI_MGR_TRANSPARENT_HINT_FADE |
+                        wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE
 };
 
 enum wxPaneDockArtSetting
 };
 
 enum wxPaneDockArtSetting
index 2cad663320ceab648bfbe7df4273d0a0fd3de552..98ad576ec2caa841b79059ac676b78c548609702 100644 (file)
@@ -2590,16 +2590,20 @@ void wxFrameManager::ShowHint(const wxRect& rect)
     if ((m_flags & wxAUI_MGR_TRANSPARENT_HINT) != 0
         && m_hint_wnd
         // Finally, don't use a venetian blind effect if it's been specifically disabled
     if ((m_flags & wxAUI_MGR_TRANSPARENT_HINT) != 0
         && m_hint_wnd
         // Finally, don't use a venetian blind effect if it's been specifically disabled
-        && !((m_hint_wnd->IsKindOf(CLASSINFO(wxPseudoTransparentFrame))) && (m_flags & wxAUI_MGR_DISABLE_VENETIAN_BLINDS))
+        && !((m_hint_wnd->IsKindOf(CLASSINFO(wxPseudoTransparentFrame))) &&
+             (m_flags & wxAUI_MGR_DISABLE_VENETIAN_BLINDS))
        )
     {
         if (m_last_hint == rect)
             return;
         m_last_hint = rect;
 
        )
     {
         if (m_last_hint == rect)
             return;
         m_last_hint = rect;
 
-        wxByte initial_fade = m_hint_fademax;
-        if (m_flags & wxAUI_MGR_TRANSPARENT_HINT_FADE)
-            initial_fade = 0;
+        m_hint_fadeamt = m_hint_fademax;
+        if ((m_flags & wxAUI_MGR_TRANSPARENT_HINT_FADE)
+            && !((m_hint_wnd->IsKindOf(CLASSINFO(wxPseudoTransparentFrame))) &&
+                 (m_flags & wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE))
+            )
+            m_hint_fadeamt = 0;
 
         if (! m_hint_wnd->IsShown())
             m_hint_wnd->Show();
 
         if (! m_hint_wnd->IsShown())
             m_hint_wnd->Show();
@@ -2609,15 +2613,14 @@ void wxFrameManager::ShowHint(const wxRect& rect)
         if (m_action == actionDragFloatingPane && m_action_window)
             m_action_window->SetFocus();
 
         if (m_action == actionDragFloatingPane && m_action_window)
             m_action_window->SetFocus();
 
-        m_hint_wnd->SetTransparent(initial_fade);
+        m_hint_wnd->SetTransparent(m_hint_fadeamt);
         m_hint_wnd->SetSize(rect);
         m_hint_wnd->Raise();
         
 
         m_hint_wnd->SetSize(rect);
         m_hint_wnd->Raise();
         
 
-        if (m_flags & wxAUI_MGR_TRANSPARENT_HINT_FADE)
+        if (m_hint_fadeamt != m_hint_fademax) //  Only fade if we need to
         {
             // start fade in timer
         {
             // start fade in timer
-            m_hint_fadeamt = 0;
             m_hint_fadetimer.SetOwner(this, 101);
             m_hint_fadetimer.Start(5);
         }
             m_hint_fadetimer.SetOwner(this, 101);
             m_hint_fadetimer.Start(5);
         }