AGW Logo

svn SVN Revision 68881 For labelbook

This file contains the SVN revision history for labelbook, at revision 68881.

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: 20-Oct-2008 20:05:15 UTC
  • Committer: AG
  • File Size: 107272 byte(s)

svn_log Log Messages

The following log message was entered by the committer:

  • AGW: General overhaul of the documentation, much improved. All the widgets have their own sample usage in the docs as well;

  • FlatNotebook: Added the FNB_NAV_BUTTONS_WHEN_NEEDED style, which hides the navigation left/right arrows if all tabs fit;

  • RibbonBar: - Added the EVT_RIBBONBAR_TAB_LEFT_DCLICK event, which generates a special event

    when a ribbon bar tab is double-clicked;

    • Added support for toggle buttons;
    • Improved support for ribbon panel sizers: panels with sizers should now automatically minimise at small sizes, and behave properly when popping up from a minimised state;
    • Added tooltips via SetToolTip for those buttons which have the help_string attribute set.
  • XLSGrid: a new widget was added to AGW, termed XLSGrid. It’s based on wx.grid.Grid and can be used to faithfully reproduce the appearance of a Microsoft Excel spreadsheets.


svn_diff Diff To Previous Version (68775)

Version SVN diff:

--- wxPython/3rdParty/AGW/agw/labelbook.py  2011/08/18 19:31:19     68775
+++ wxPython/3rdParty/AGW/agw/labelbook.py  2011/08/25 16:40:17     68881
@@ -78,13 +78,11 @@

def __init__(self, parent):

-            wx.Frame.__init__(self, parent)
+            wx.Frame.__init__(self, parent, -1, "LabelBook Demo")

# Possible values for Tab placement are INB_TOP, INB_BOTTOM, INB_RIGHT, INB_LEFT

-            notebook = LB.LabelBook(self, -1, agwStyle=LB.INB_FIT_LABELTEXT|LB.INB_LEFT| \
-                                                       LB.INB_DRAW_SHADOW| \
-                                                       LB.INB_GRADIENT_BACKGROUND|LB.INB_BORDER)
+            notebook = LB.LabelBook(self, -1, agwStyle=LB.INB_FIT_LABELTEXT|LB.INB_LEFT|LB.INB_DRAW_SHADOW|LB.INB_GRADIENT_BACKGROUND)

pane1 = wx.Panel(notebook)
pane2 = wx.Panel(notebook)
Tree

Table Of Contents

Previous topic

SVN Revision 68775 For labelbook

Next topic

SVN Revision 69803 For labelbook