| 1 |
#!/usr/bin/env python |
|---|
| 2 |
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| 3 |
##~ License |
|---|
| 4 |
##~ |
|---|
| 5 |
##- The RuneBlade Foundation library is intended to ease some |
|---|
| 6 |
##- aspects of writing intricate Jabber, XML, and User Interface (wxPython, etc.) |
|---|
| 7 |
##- applications, while providing the flexibility to modularly change the |
|---|
| 8 |
##- architecture. Enjoy. |
|---|
| 9 |
##~ |
|---|
| 10 |
##~ Copyright (C) 2002 TechGame Networks, LLC. |
|---|
| 11 |
##~ |
|---|
| 12 |
##~ This library is free software; you can redistribute it and/or |
|---|
| 13 |
##~ modify it under the terms of the BSD style License as found in the |
|---|
| 14 |
##~ LICENSE file included with this distribution. |
|---|
| 15 |
##~ |
|---|
| 16 |
##~ TechGame Networks, LLC can be reached at: |
|---|
| 17 |
##~ 3578 E. Hartsel Drive #211 |
|---|
| 18 |
##~ Colorado Springs, Colorado, USA, 80920 |
|---|
| 19 |
##~ |
|---|
| 20 |
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| 21 |
|
|---|
| 22 |
"""Skinning support for the wxPython toolkit. |
|---|
| 23 |
|
|---|
| 24 |
wxPythonSkin Status Roundup |
|---|
| 25 |
Special |
|---|
| 26 |
PyCrust: crust, shell, filling is Complete |
|---|
| 27 |
wxStyledTextCtrl is Complete |
|---|
| 28 |
Transform wxEventSystem is Complete |
|---|
| 29 |
|
|---|
| 30 |
Frame |
|---|
| 31 |
wxFrame is Complete |
|---|
| 32 |
wxMiniFrame is Complete |
|---|
| 33 |
wxMDIChildFrame is Complete |
|---|
| 34 |
wxMDIParentFrame is Complete |
|---|
| 35 |
|
|---|
| 36 |
Dialogs |
|---|
| 37 |
wxDialog is Complete |
|---|
| 38 |
wxWizard is still Wanted |
|---|
| 39 |
wxWizardPage is still Wanted |
|---|
| 40 |
wxWizardPageSimple is still Wanted |
|---|
| 41 |
|
|---|
| 42 |
Container Windows |
|---|
| 43 |
wxPopupWindow is not planned |
|---|
| 44 |
wxPopupTransientWindow is not planned |
|---|
| 45 |
wxSashWindow is Complete |
|---|
| 46 |
wxSashLayoutWindow is Complete |
|---|
| 47 |
wxScrolledWindow is Complete |
|---|
| 48 |
wxSplitterWindow is Complete |
|---|
| 49 |
wxDynamicSashWindow is Complete |
|---|
| 50 |
wxNotebook is Complete |
|---|
| 51 |
wxPanel is Complete |
|---|
| 52 |
|
|---|
| 53 |
Bars |
|---|
| 54 |
wxMenuBar is Complete |
|---|
| 55 |
wxToolBar is still Wanted |
|---|
| 56 |
wxStatusBar is Complete |
|---|
| 57 |
|
|---|
| 58 |
Widgets |
|---|
| 59 |
wxGrid is Complete |
|---|
| 60 |
wxHtmlWindow is still Wanted |
|---|
| 61 |
wxButton is Complete |
|---|
| 62 |
wxBitmapButton is Complete |
|---|
| 63 |
wxCheckBox is Complete |
|---|
| 64 |
wxCheckListBox is Complete |
|---|
| 65 |
wxChoice is Complete |
|---|
| 66 |
wxComboBox is Complete |
|---|
| 67 |
wxGuage is still Wanted |
|---|
| 68 |
wxStaticBox is still Wanted |
|---|
| 69 |
wxListBox is Complete |
|---|
| 70 |
wxListCtrl is Complete |
|---|
| 71 |
wxTextCtrl is Complete |
|---|
| 72 |
wxTabCtrl is not planned |
|---|
| 73 |
wxTreeCtrl is Complete |
|---|
| 74 |
wxScrollBar is still Wanted |
|---|
| 75 |
wxSpinButton is still Wanted |
|---|
| 76 |
wxSpinCtrl is still Wanted |
|---|
| 77 |
wxStaticText is Complete |
|---|
| 78 |
wxStaticBitmap is Complete |
|---|
| 79 |
wxRadioBox is still Wanted |
|---|
| 80 |
wxRadioButton is Complete |
|---|
| 81 |
wxSlider is Complete |
|---|
| 82 |
wxToggleButton is Complete |
|---|
| 83 |
wxEditableListBox is not planned |
|---|
| 84 |
wxLEDNumberCtrl is not planned |
|---|
| 85 |
|
|---|
| 86 |
User Interaction |
|---|
| 87 |
wxMenu is Complete |
|---|
| 88 |
wxMenuItem is Complete |
|---|
| 89 |
wxAcceleratorTable is still Needed |
|---|
| 90 |
Layout |
|---|
| 91 |
wxLayoutConstraints is not planned |
|---|
| 92 |
wxIndividualLayoutConstraint is not planned |
|---|
| 93 |
wxSizers is Complete |
|---|
| 94 |
wxLayoutAlgorithm is Complete |
|---|
| 95 |
LayoutAnchors (from wxPython.lib.anchors) is still Wanted |
|---|
| 96 |
|
|---|
| 97 |
Graphics |
|---|
| 98 |
wxFont is still Wanted |
|---|
| 99 |
wxFontList is still Wanted |
|---|
| 100 |
wxIcon is Complete |
|---|
| 101 |
wxImage is Complete |
|---|
| 102 |
wxImageList is Complete |
|---|
| 103 |
wxMask is still Wanted |
|---|
| 104 |
|
|---|
| 105 |
Misc |
|---|
| 106 |
wxApplication is Complete |
|---|
| 107 |
wxTimer is still Wanted |
|---|
| 108 |
wxGLCanvas is Complete |
|---|
| 109 |
wxOGL is Complete |
|---|
| 110 |
wxJoystick is still Wanted |
|---|
| 111 |
SplitTree is not planned |
|---|
| 112 |
wxMultipleChoiceDialog is not planned |
|---|
| 113 |
wxPlotCanvas is not planned |
|---|
| 114 |
ColourSelect is not planned |
|---|
| 115 |
wxFloatBar is not planned |
|---|
| 116 |
wxRightTextCtrl is still Wanted |
|---|
| 117 |
""" |
|---|