diff --git a/wx/lib/agw/__init__.py b/wx/lib/agw/__init__.py index 1ead5279..abcd59db 100644 --- a/wx/lib/agw/__init__.py +++ b/wx/lib/agw/__init__.py @@ -120,7 +120,7 @@ andrea.gavana@maerskoil.com AGW version: 0.9.7 -Last updated: 15 January 2013, 21.00 GMT +Last updated: 22 January 2013, 21.00 GMT """ diff --git a/wx/lib/agw/labelbook.py b/wx/lib/agw/labelbook.py index 5e4c479b..969ed4b5 100644 --- a/wx/lib/agw/labelbook.py +++ b/wx/lib/agw/labelbook.py @@ -10,7 +10,7 @@ # Python Code By: # # Andrea Gavana, @ 03 Nov 2006 -# Latest Revision: 27 Dec 2012, 21.00 GMT +# Latest Revision: 22 Jan 2013, 21.00 GMT # # # For All Kind Of Problems, Requests Of Enhancements And Bug Reports, Please @@ -170,7 +170,7 @@ License And Version :class:`LabelBook` and :class:`FlatImageBook` are distributed under the wxPython license. -Latest Revision: Andrea Gavana @ 27 Dec 2012, 21.00 GMT +Latest Revision: Andrea Gavana @ 22 Jan 2013, 21.00 GMT Version 0.6. @@ -2224,6 +2224,7 @@ class FlatBookBase(wx.Panel): self._bInitializing = False self.Bind(wx.EVT_NAVIGATION_KEY, self.OnNavigationKey) + self.Bind(wx.EVT_MOUSE_CAPTURE_LOST, lambda evt: True) def SetAGWWindowStyleFlag(self, agwStyle): diff --git a/wx/lib/agw/persist/__init__.py b/wx/lib/agw/persist/__init__.py index ae4a0db6..4da04e41 100644 --- a/wx/lib/agw/persist/__init__.py +++ b/wx/lib/agw/persist/__init__.py @@ -179,7 +179,7 @@ License And Version `PersistentObjects` library is distributed under the wxPython license. -Latest revision: Andrea Gavana @ 27 Dec 2012, 21.00 GMT +Latest revision: Andrea Gavana @ 22 Jan 2013, 21.00 GMT Version 0.4. """ diff --git a/wx/lib/agw/persist/persist_handlers.py b/wx/lib/agw/persist/persist_handlers.py index a1d7b7e8..bc90f2b2 100644 --- a/wx/lib/agw/persist/persist_handlers.py +++ b/wx/lib/agw/persist/persist_handlers.py @@ -2505,7 +2505,6 @@ HANDLERS = [ ("BookHandler", (wx.BookCtrlBase, wx.aui.AuiNotebook, AUI.AuiNotebook, FNB.FlatNotebook, LBK.LabelBook, LBK.FlatImageBook)), ("TLWHandler", (wx.TopLevelWindow, )), - ("AUIHandler", (wx.Panel, )), ("CheckBoxHandler", (wx.CheckBox, )), ("TreeCtrlHandler", (wx.TreeCtrl, wx.GenericDirCtrl, CT.CustomTreeCtrl)), ("MenuBarHandler", (wx.MenuBar, FM.FlatMenuBar)), @@ -2525,6 +2524,7 @@ HANDLERS = [ ("TreeListCtrlHandler", (HTL.HyperTreeList, wx.gizmos.TreeListCtrl)), ("CalendarCtrlHandler", (calendar.CalendarCtrl, )), ("CollapsiblePaneHandler", (wx.CollapsiblePane, PCP.PyCollapsiblePane)), + ("AUIHandler", (wx.Panel, )), ("DatePickerHandler", (wx.DatePickerCtrl, wx.GenericDatePickerCtrl)), ("MediaCtrlHandler", (wx.media.MediaCtrl, )), ("ColourPickerHandler", (wx.ColourPickerCtrl, csel.ColourSelect)),