Classes | |
| class | SegmentBookEvent |
| SegmentBook event. More... | |
| class | SegmentBook |
| Notebook Class. More... | |
Variables | |
| string | __author__ = "Cody Precord <cprecord@editra.org>" |
| Editra Control Library: SegmentBook. | |
| string | __svnid__ = "$Id: segmentbk.py 69065 2011-09-11 19:18:25Z CJP $" |
| string | __revision__ = "$Revision: 69065 $" |
| list | __all__ |
| tuple | edEVT_SB_PAGE_CHANGING = wx.NewEventType() |
| tuple | EVT_SB_PAGE_CHANGING = wx.PyEventBinder(edEVT_SB_PAGE_CHANGING, 1) |
| tuple | edEVT_SB_PAGE_CHANGED = wx.NewEventType() |
| tuple | EVT_SB_PAGE_CHANGED = wx.PyEventBinder(edEVT_SB_PAGE_CHANGED, 1) |
| tuple | edEVT_SB_PAGE_CLOSING = wx.NewEventType() |
| tuple | EVT_SB_PAGE_CLOSING = wx.PyEventBinder(edEVT_SB_PAGE_CLOSING, 1) |
| tuple | edEVT_SB_PAGE_CLOSED = wx.NewEventType() |
| tuple | EVT_SB_PAGE_CLOSED = wx.PyEventBinder(edEVT_SB_PAGE_CLOSED, 1) |
| tuple | edEVT_SB_PAGE_CONTEXT_MENU = wx.NewEventType() |
| tuple | EVT_SB_PAGE_CONTEXT_MENU = wx.PyEventBinder(edEVT_SB_PAGE_CONTEXT_MENU, 1) |
| int | SEGBOOK_STYLE_NO_DIVIDERS = 1 |
| int | SEGBOOK_STYLE_LABELS = 2 |
| int | SEGBOOK_STYLE_TOP = 4 |
| int | SEGBOOK_STYLE_BOTTOM = 8 |
| int | SEGBOOK_STYLE_LEFT = 16 |
| int | SEGBOOK_STYLE_RIGHT = 32 |
| SEGBOOK_STYLE_DEFAULT = SEGBOOK_STYLE_TOP | |
| string | SEGBOOK_NAME_STR = u"EditraSegmentBook" |
| list __all__ |
00001 ['SegmentBook', 'SegmentBookEvent', 'SEGBOOK_STYLE_DEFAULT', 00002 'SEGBOOK_STYLE_NO_DIVIDERS', 'SEGBOOK_STYLE_LABELS', 00003 'SEGBOOK_STYLE_LEFT', 'SEGBOOK_STYLE_RIGHT', 00004 'SEGBOOK_STYLE_TOP', 'SEGBOOK_STYLE_BOTTOM', 00005 'SEGBOOK_NAME_STR', 00006 'edEVT_SB_PAGE_CHANGING', 'EVT_SB_PAGE_CHANGING', 00007 'edEVT_SB_PAGE_CHANGED', 'EVT_SB_PAGE_CHANGED', 00008 'edEVT_SB_PAGE_CLOSED', 'EVT_SB_PAGE_CLOSED', 00009 'edEVT_SB_PAGE_CONTEXT_MENU', 'EVT_SB_PAGE_CONTEXT_MENU', 00010 'edEVT_SB_PAGE_CLOSING', 'EVT_SB_PAGE_CLOSING' ]
| string __author__ = "Cody Precord <cprecord@editra.org>" |
Editra Control Library: SegmentBook.
A SegmentBook is a Toolbook like class derived from a ControlBox and SegmentBar. Allows for a multi page control with Icons w/ optional text as page buttons.
+-----------------------------------------+ | @^@ *> | | <-> /|D | | frog bird | +-----------------------------------------+ | | | Main Page Area | | | | | | | | | | | | | | | | | +-----------------------------------------+
| string __revision__ = "$Revision: 69065 $" |
| string __svnid__ = "$Id: segmentbk.py 69065 2011-09-11 19:18:25Z CJP $" |
| tuple edEVT_SB_PAGE_CHANGED = wx.NewEventType() |
| tuple edEVT_SB_PAGE_CHANGING = wx.NewEventType() |
| tuple edEVT_SB_PAGE_CLOSED = wx.NewEventType() |
| tuple edEVT_SB_PAGE_CLOSING = wx.NewEventType() |
| tuple edEVT_SB_PAGE_CONTEXT_MENU = wx.NewEventType() |
| tuple EVT_SB_PAGE_CHANGED = wx.PyEventBinder(edEVT_SB_PAGE_CHANGED, 1) |
| tuple EVT_SB_PAGE_CHANGING = wx.PyEventBinder(edEVT_SB_PAGE_CHANGING, 1) |
| tuple EVT_SB_PAGE_CLOSED = wx.PyEventBinder(edEVT_SB_PAGE_CLOSED, 1) |
| tuple EVT_SB_PAGE_CLOSING = wx.PyEventBinder(edEVT_SB_PAGE_CLOSING, 1) |
| tuple EVT_SB_PAGE_CONTEXT_MENU = wx.PyEventBinder(edEVT_SB_PAGE_CONTEXT_MENU, 1) |
| string SEGBOOK_NAME_STR = u"EditraSegmentBook" |
| int SEGBOOK_STYLE_BOTTOM = 8 |
| int SEGBOOK_STYLE_LABELS = 2 |
| int SEGBOOK_STYLE_LEFT = 16 |
| int SEGBOOK_STYLE_NO_DIVIDERS = 1 |
| int SEGBOOK_STYLE_RIGHT = 32 |
| int SEGBOOK_STYLE_TOP = 4 |
1.7.6.1