AGW Logo

svn SVN Revision 69086 For flatnotebook

This file contains the SVN revision history for flatnotebook, at revision 69086.

Available information include commit date, the name of the committer, the file size, the SVN log messages and a diff from the previous version (if available).


file_info File Information

  • Commit Date: 29-Oct-2008 00:55:34 UTC
  • Committer: AG
  • File Size: 216694 byte(s)

svn_log Log Messages

The following log message was entered by the committer:

  • Fixed bug #13437 for SuperToolTip;
  • Fixed bug #13477 for UltimateListCtrl.

svn_diff Diff To Previous Version (68881)

Version SVN diff:

--- wxPython/3rdParty/AGW/agw/flatnotebook.py       2011/08/25 16:40:17     68881
+++ wxPython/3rdParty/AGW/agw/flatnotebook.py       2011/09/14 19:39:08     69086
@@ -1235,7 +1235,7 @@
"""
Sets the tab region.

-        :param `points`: a Python list of `wx.Points`
+        :param `points`: a Python list of `wx.Point`
"""

self._region = wx.RegionFromPoints(points)
@@ -2366,7 +2366,7 @@

def DrawFocusRectangle(self, dc, pageContainer, page):
"""
-        Draws a focus rectangle like the native `wx.Notebooks`.
+        Draws a focus rectangle like the native `wx.Notebook`.

:param `dc`: an instance of `wx.DC`;
:param `pageContainer`: an instance of L{FlatNotebook};
@@ -3323,7 +3323,7 @@

:param `pageContainer`: an instance of L{FlatNotebook};
:param `dc`: an instance of `wx.DC`;
-        :param `tabPoints`: a Python list of `wx.Points` representing the tab outline;
+        :param `tabPoints`: a Python list of `wx.Point` representing the tab outline;
:param `bSelectedTab`: ``True`` if the tab is selected, ``False`` otherwise;
:param `tabIdx`: the index of the tab;
"""
@@ -3414,7 +3414,7 @@
"""
Returns the `x` start position of a tab.

-        :param `tabPoints`: a Python list of `wx.Points` representing the tab outline;
+        :param `tabPoints`: a Python list of `wx.Point` representing the tab outline;
:param `y`: the y start position of the tab;
:param `style`: can be ``FNB_BOTTOM`` or the default (tabs at top).
"""
@@ -3479,7 +3479,7 @@
"""
Returns the `x` end position of a tab.

-        :param `tabPoints`: a Python list of `wx.Points` representing the tab outline;
+        :param `tabPoints`: a Python list of `wx.Point` representing the tab outline;
:param `y`: the y end position of the tab;
:param `style`: can be ``FNB_BOTTOM`` or the default (tabs at top).
"""
@@ -4065,7 +4065,7 @@
Sets a custom panel to show when there are no pages left in L{FlatNotebook}.

:param `panel`: any subclass of `wx.Window` will do, as long as it is suitable
-         to be used as a notebook page. Examples include `wx.Panel`, wx.ScrolledWindow`,
+         to be used as a notebook page. Examples include `wx.Panel`, `wx.ScrolledWindow`,
and so on.
"""
Tree