4 Using wx.GetDefaultPyEncoding/wx.SetDefaultPyEncoding for changing active encoding.
6 Fixed pasting siblings (Ctrl key pressed while pasting).
8 Dealed with ascii build (Python does not recognize 'ascii' as valid encoding).
9 If encoding is not specified it is not written in XRC. Will add more
10 customization in the future.
12 Changed to use SimpleTool instead or Toggle tool (does not work on Win32).
17 Added wxWizard, wxWizardPageSimple (only from pull-down menu).
19 Hide command for test window.
21 Replacing classes works better.
28 Edit->Locate command (Ctrl-L) for quick selection of items.
29 Works with event-handling controls (buttons, text fields) but
30 not with labels/sizers.
32 Some improvements: relative paths for files supplied as command-
33 line argument work correctly, notebook panels are highlighted
39 Added support for wxGridBagSizer (supported in wxPython 2.5).
44 Added subclass attribute.
49 Fixed problems with wxStaticBitmap (stock_id attribute, icon type
52 Changed some dimensions in properties panel elements.
57 Sizes of some controls were not normal on wxMSW. Fixed.
59 Some changes to test window code to make it resize better and to
60 have focus control with sawfish for all types of windows.
65 Bugs with currentEncoding and frame testing fixed.
67 Some required parameters are set to default if missing.
69 Unsupported classes are tolerated, with warning message.
71 wxScrolledWindow added (to 'control' pulldown menu, not yet to the
74 Multi-line editing for labels and some values (wxTextCtrl,
80 Changed internationalization support. '-i' option removed, default
81 encoding is used (should be defined in sitecustomize.py, or 'ascii' by
82 default). When XRC file is opened with encoding specified,
83 translations are not used.
88 Replace command added (not quite finished yet).
93 Finally implemented tools panel for almost all controls (except
94 wxHtmlWindow, wxCalendarCtrl and wxGenericDirCtrl - they are too
97 Changed some sizes in panel to better work with different fonts.
99 Fixed double-refreshing after Ctrl+R.
101 Maybe something else that I've forgot. It's been a looong day... :)
107 Added dialog unit support.
109 Dealing with non-specified required values (set to defaults, if exist).
111 Added 'minsize' parameter of sizeritem.
113 Added '-i' option to turn off translations and use international characters.
118 Mac platform-specific checks.
123 Implemented standard bitmap selection.
125 Fixed a bug in FlexGridSizer code.
130 File browsing (for bitmaps/icons, etc.) had a small problem when current
131 file was not saved yet.
136 Small bug fix for initial don't panic message.
141 Changed program structure, reduced use of global variables (grouped in
142 module 'globals', which creates an instanse 'g' of class Globals.
144 First version of undo/redo working!
146 Support for toolbars inside panels and frames.
148 Added 'container' submenu for creating Panel, Notebook and ToolBar objects.
150 wxMSW-only: added code to switch focus back to main window when test
156 Fixed unicode problem for unicode build.
163 Added new controls: wxSpinCtrl, wxGenericDirCtrl, unknown (custom
164 control), improved wxXRC format suppor (menu styles, etc.).
166 Some I18N support: parsing "encoding" attribute in XML header, later
167 it can be modified in "properties" panel for "XML tree".
169 UNIX note: currently XML writing for non-ascii chars works only if
170 sys.getdefaultencoding() returns good value. To do this, one has to
171 put following lines to "sitecustomize.py" file:
175 sys.setdefaultencoding('iso-8859-1') # or whatever
181 Some command-line arguments.
183 "Test window" command and toolbar button.
185 New panel interphace (wxHTMLWindow is not used anymore).
187 Toggling between embedded and detached panel.
189 Cache for already used windows.
191 Current top-level control is bold, if test window shown.
195 CheckListBox does not work unless wxXRC source fixed (in both wxPytnon and
198 contrib/src/xrc/xmlrsall.cpp
200 < AddHandler(new wxListCtrlXmlHandler);
203 > AddHandler(new wxListCtrlXmlHandler);
204 > #if wxUSE_CHECKLISTBOX
206 This is fixed in CVS.
211 Toolbar, bitmap, icon support (no display yet).
213 Changed parameter objects, added support for multiple parameters (like
216 Fixed double-clicking problem with tree control on Windows.
218 Some performance improovements.
224 Added notebook with properties page and style page. Fixed some problems
231 Some fixes suggested by RD
237 Faster preview window refresh.
239 Cut/Paste works better.