4 Implemented comment object for simple one-line comments. No
5 validation is performed.
10 Fixes for wxMSW (notebook highlighting, control sizes, tree Unselect).
15 Notebook page highlighting fix. Highlight resizes when the window
16 is resized. ParamUnit spin button detects event handler re-entry
17 (wxGTK probably has a bug in wxSpinButton with repeated events).
22 Fix for dealing with empty 'growable' property, using MiniFrame
23 for properties panel, the panel is restored together with the
29 Fixed SetItemBold and editing 'growable' properties of
35 New feature added from a patch submitted on sourceforge by botg:
39 - ChecklistBox content editing;
40 - Window styles more in sync with the docs;
42 - Reference property page created correctly (every property is
48 Fix for non-ascii characters support when using other encodings
49 than utf-8 in 'content' property. Tested under unicode build.
54 Second fix for Copy/Paste (using expat.native_encoding property).
55 Added cellpos,cellspan properties for Spacer in GridBag sizer.
60 Fix for Copy/Paste objects with international characters.
65 Fixed Cut command, added support for MenuBar inside Frame/Dialog.
70 Important update of Paste command code which was passing too much data
71 thru clipboard using cPickle. Objects created while unpickling (from
72 minidom) were clogging memory. Now using toxml() (why didn't I do it
73 before - was I drunk or what? :) ).
78 Added new controls (Choicebook, Listbook, StatusBar, DatePicker), and
79 completed style flags. Test window is opened for an available parent
80 control if no specific view defined. Better handling of exceptions
81 (highlighting does not 'stick' anymore). Tested on wxGTK 2.6.1.0.
86 Using system clipboard for Copy/Paste.
91 Improved some dialogs (window styles, growable cols). Changed the
92 range for wxSpinCtrl min/max to all integers (default 0/100 is not
98 Fixed testing for any element inside object tree.
103 Fixed replacing op for sizer children and spacer objects.
104 UndoReplace is not yet implemented.
109 Fix for crash when opening new file with active tree selection.
110 Replacing controls bug fixed.
115 wxMSW wxTreeCtrl behaviour is still different from wxGTK for
116 wxTR_MULTIPLE, some fixes for this.
121 New (experimental ;) ) feature: support for "object_ref" tag, for
122 creating references to named objects (see tn0014.txt). "reference..."
123 menu command creates new object_ref node. Properties of the top-level
124 object can be overriden, but overriding child controls is not working
125 as expected (maybe a bug in wx).
130 xxxStdDialogButtonSizer pulldown menu with standard buttons.
132 Some fixes for selecting tools inside toolbar with test window open
133 (whole toolbar is selected).
135 Toolbars can be added inside windows.
140 Using wx.GetDefaultPyEncoding/wx.SetDefaultPyEncoding for changing active encoding.
142 Fixed pasting siblings (Ctrl key pressed while pasting).
144 Dealed with ascii build (Python does not recognize 'ascii' as valid encoding).
145 If encoding is not specified it is not written in XRC. Will add more
146 customization in the future.
148 Changed to use SimpleTool instead or Toggle tool (does not work on Win32).
153 Added wxWizard, wxWizardPageSimple (only from pull-down menu).
155 Hide command for test window.
157 Replacing classes works better.
164 Edit->Locate command (Ctrl-L) for quick selection of items.
165 Works with event-handling controls (buttons, text fields) but
166 not with labels/sizers.
168 Some improvements: relative paths for files supplied as command-
169 line argument work correctly, notebook panels are highlighted
175 Added support for wxGridBagSizer (supported in wxPython 2.5).
180 Added subclass attribute.
185 Fixed problems with wxStaticBitmap (stock_id attribute, icon type
188 Changed some dimensions in properties panel elements.
193 Sizes of some controls were not normal on wxMSW. Fixed.
195 Some changes to test window code to make it resize better and to
196 have focus control with sawfish for all types of windows.
201 Bugs with currentEncoding and frame testing fixed.
203 Some required parameters are set to default if missing.
205 Unsupported classes are tolerated, with warning message.
207 wxScrolledWindow added (to 'control' pulldown menu, not yet to the
210 Multi-line editing for labels and some values (wxTextCtrl,
216 Changed internationalization support. '-i' option removed, default
217 encoding is used (should be defined in sitecustomize.py, or 'ascii' by
218 default). When XRC file is opened with encoding specified,
219 translations are not used.
224 Replace command added (not quite finished yet).
229 Finally implemented tools panel for almost all controls (except
230 wxHtmlWindow, wxCalendarCtrl and wxGenericDirCtrl - they are too
233 Changed some sizes in panel to better work with different fonts.
235 Fixed double-refreshing after Ctrl+R.
237 Maybe something else that I've forgot. It's been a looong day... :)
243 Added dialog unit support.
245 Dealing with non-specified required values (set to defaults, if exist).
247 Added 'minsize' parameter of sizeritem.
249 Added '-i' option to turn off translations and use international characters.
254 Mac platform-specific checks.
259 Implemented standard bitmap selection.
261 Fixed a bug in FlexGridSizer code.
266 File browsing (for bitmaps/icons, etc.) had a small problem when current
267 file was not saved yet.
272 Small bug fix for initial don't panic message.
277 Changed program structure, reduced use of global variables (grouped in
278 module 'globals', which creates an instanse 'g' of class Globals.
280 First version of undo/redo working!
282 Support for toolbars inside panels and frames.
284 Added 'container' submenu for creating Panel, Notebook and ToolBar objects.
286 wxMSW-only: added code to switch focus back to main window when test
292 Fixed unicode problem for unicode build.
299 Added new controls: wxSpinCtrl, wxGenericDirCtrl, unknown (custom
300 control), improved wxXRC format suppor (menu styles, etc.).
302 Some I18N support: parsing "encoding" attribute in XML header, later
303 it can be modified in "properties" panel for "XML tree".
305 UNIX note: currently XML writing for non-ascii chars works only if
306 sys.getdefaultencoding() returns good value. To do this, one has to
307 put following lines to "sitecustomize.py" file:
311 sys.setdefaultencoding('iso-8859-1') # or whatever
317 Some command-line arguments.
319 "Test window" command and toolbar button.
321 New panel interphace (wxHTMLWindow is not used anymore).
323 Toggling between embedded and detached panel.
325 Cache for already used windows.
327 Current top-level control is bold, if test window shown.
331 CheckListBox does not work unless wxXRC source fixed (in both wxPytnon and
334 contrib/src/xrc/xmlrsall.cpp
336 < AddHandler(new wxListCtrlXmlHandler);
339 > AddHandler(new wxListCtrlXmlHandler);
340 > #if wxUSE_CHECKLISTBOX
342 This is fixed in CVS.
347 Toolbar, bitmap, icon support (no display yet).
349 Changed parameter objects, added support for multiple parameters (like
352 Fixed double-clicking problem with tree control on Windows.
354 Some performance improovements.
360 Added notebook with properties page and style page. Fixed some problems
367 Some fixes suggested by RD
373 Faster preview window refresh.
375 Cut/Paste works better.