Classes | |
| class | CommandBarBase |
| Base class for control bars. More... | |
| class | SearchBar |
| Commandbar for searching text in the current buffer. More... | |
| class | CommandEntryBar |
| Commandbar for editor command entry and execution. More... | |
| class | GotoLineBar |
| Commandbar for Goto Line function. More... | |
| class | CommandExecuter |
| Part of the Vi emulation, opens a minibuffer to execute EX commands. More... | |
| class | LineCtrl |
| A custom int control for providing a go To line control for the Command Bar. More... | |
| class | PopupListBase |
| Common functionality between Popuplist GTK and Mac. More... | |
| class | PopupList |
| Popup window with a listbox in it. More... | |
| class | PopupWinList |
| Popuplist for Windows/GTK. More... | |
Variables | |
| string | __author__ = "Cody Precord <cprecord@editra.org>" |
| This class creates a custom panel that can hide and show different controls based an id value. | |
| string | __svnid__ = "$Id: ed_cmdbar.py 70229 2012-01-01 01:27:10Z CJP $" |
| string | __revision__ = "$Revision: 70229 $" |
| _ = wx.GetTranslation | |
| tuple | XButton |
| tuple | ID_CLOSE_BUTTON = wx.NewId() |
| tuple | ID_SEARCH_NEXT = wx.NewId() |
| tuple | ID_SEARCH_PRE = wx.NewId() |
| tuple | ID_FIND_ALL = wx.NewId() |
| tuple | ID_MATCH_CASE = wx.NewId() |
| tuple | ID_WHOLE_WORD = wx.NewId() |
| tuple | ID_REGEX = wx.NewId() |
| _ = wx.GetTranslation |
| string __author__ = "Cody Precord <cprecord@editra.org>" |
This class creates a custom panel that can hide and show different controls based an id value.
The panel is generally between 24-32 pixels in height but can grow to fit the controls inserted in it. The the background is painted with a gradient using system defined colors.
The buffers CommandBar control with search/goto line/command entry
| string __revision__ = "$Revision: 70229 $" |
| string __svnid__ = "$Id: ed_cmdbar.py 70229 2012-01-01 01:27:10Z CJP $" |
| tuple ID_CLOSE_BUTTON = wx.NewId() |
| tuple ID_FIND_ALL = wx.NewId() |
| tuple ID_MATCH_CASE = wx.NewId() |
| tuple ID_REGEX = wx.NewId() |
| tuple ID_SEARCH_NEXT = wx.NewId() |
| tuple ID_SEARCH_PRE = wx.NewId() |
| tuple ID_WHOLE_WORD = wx.NewId() |
| tuple XButton |
00001 PyEmbeddedImage( 00002 "iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAIAAACQKrqGAAAAA3NCSVQICAjb4U/gAAAB6UlE" 00003 "QVQokW2SvWsTYRjAn7tcctdLc7kmxtJqj8ZECIqi7eJHhywVxLWLSBctXQKFOhSE0IJKB0EH" 00004 "wf/BwUkEBxEFFR0cSoei1ZaSJjQ56Zn0vDd3977v8zrcUTr0mZ6PH8+39Onxw97Xz0FnL2w1" 00005 "4DhJnbLU4ZHs1Snpza0bk1cum0MFLvwoJmg/pmjs6bW7a5u7StDZM8Zu0v0W3W/HAGMAgJxF" 00006 "pmYaxumc+nNLDlsNUBKceNJAKj27KI2OIWfImWKVcnMPuKr53QOmJsVfWz7sSZ+pqZWJ7L26" 00007 "YpUUq5SfX1YrE4XZRR+pwikAKAAgBBMQkPevkuMVWdPz88sAIGs6+sR5+/IwlwIA0CXBrsM2" 00008 "toPm/ZMrz2RNBwD0SaO+4G/9AACeG41R9o8wL6CuLwXs6Jow5Mz1OSJ3XMG4DAAiZIgidfb8" 00009 "yOrzqC76RNb08Scv9HMXAAAoFyGNx0Kk2dt3I25nqbazVIvo/J05ABAsAMTETEYrX7pIbNv7" 00010 "8iFZLLeePiKbG7TT9ta+y7lCY7UuM6oNGZ1mW3p9fXKqeq3/xz6wm8yNz8MRIyWRSg6amfTg" 00011 "wHqzp+hW0XUcI3NCy6QBQGAYNRfVZYgJztxeH3LDilmd/vXxHVn/5m3/PvZd0mfKulU0q9P/" 00012 "AeP28JG84F5KAAAAAElFTkSuQmCC")
1.7.6.1