]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wx/tools/XRCed/CHANGES.txt
SetModified updates window title ('*' is shown if modified)
[wxWidgets.git] / wxPython / wx / tools / XRCed / CHANGES.txt
CommitLineData
5758b246
RR
10.1.5-3
2-------
3
4xxxStdDialogButtonSizer pulldown menu with standard buttons.
5
6Some fixes for selecting tools inside toolbar with test window open
7(whole toolbar is selected).
8
9Toolbars can be added inside windows.
10
016f67ba
RR
110.1.5-2
12-------
13
14Using wx.GetDefaultPyEncoding/wx.SetDefaultPyEncoding for changing active encoding.
15
16Fixed pasting siblings (Ctrl key pressed while pasting).
17
9a69d0aa
RR
18Dealed with ascii build (Python does not recognize 'ascii' as valid encoding).
19If encoding is not specified it is not written in XRC. Will add more
20customization in the future.
21
22Changed to use SimpleTool instead or Toggle tool (does not work on Win32).
23
64bce500
RR
240.1.5-1
25-------
26
27Added wxWizard, wxWizardPageSimple (only from pull-down menu).
28
29Hide command for test window.
30
31Replacing classes works better.
32
33Added Locate tool.
34
ab24d442
RR
350.1.4-1
36-------
37
38Edit->Locate command (Ctrl-L) for quick selection of items.
39Works with event-handling controls (buttons, text fields) but
40not with labels/sizers.
41
42Some improvements: relative paths for files supplied as command-
43line argument work correctly, notebook panels are highlighted
44better.
45
a4c013b2
RR
460.1.2-1
47_______
48
49Added support for wxGridBagSizer (supported in wxPython 2.5).
50
510.1.1-5
52-------
53
54Added subclass attribute.
55
8b9a4190
RD
560.1.1-4
57-------
58
59Fixed problems with wxStaticBitmap (stock_id attribute, icon type
60switching).
61
62Changed some dimensions in properties panel elements.
63
1fded56b
RD
640.1.1-3
65-------
66
67Sizes of some controls were not normal on wxMSW. Fixed.
68
69Some changes to test window code to make it resize better and to
70have focus control with sawfish for all types of windows.
71
720.1.1-2
73-------
74
75Bugs with currentEncoding and frame testing fixed.
76
77Some required parameters are set to default if missing.
78
79Unsupported classes are tolerated, with warning message.
80
81wxScrolledWindow added (to 'control' pulldown menu, not yet to the
82tool palette).
83
84Multi-line editing for labels and some values (wxTextCtrl,
85wxHtmlWindow).
86
870.1.1-1
88-------
89
90Changed internationalization support. '-i' option removed, default
91encoding is used (should be defined in sitecustomize.py, or 'ascii' by
92default). When XRC file is opened with encoding specified,
93translations are not used.
94
950.1.1
96-----
97
98Replace command added (not quite finished yet).
99
1e4a197e
RD
1000.1.0
101-----
102
103Finally implemented tools panel for almost all controls (except
104wxHtmlWindow, wxCalendarCtrl and wxGenericDirCtrl - they are too
105rarely used).
106
107Changed some sizes in panel to better work with different fonts.
108
109Fixed double-refreshing after Ctrl+R.
110
111Maybe something else that I've forgot. It's been a looong day... :)
112
1fded56b 113
1e4a197e
RD
1140.0.9-6
115-------
116
117Added dialog unit support.
118
119Dealing with non-specified required values (set to defaults, if exist).
120
121Added 'minsize' parameter of sizeritem.
122
123Added '-i' option to turn off translations and use international characters.
124
1250.0.9-5
126-------
127
128Mac platform-specific checks.
129
1300.0.9-4
131-------
132
133Implemented standard bitmap selection.
134
135Fixed a bug in FlexGridSizer code.
136
1370.0.9-3
138-------
139
140File browsing (for bitmaps/icons, etc.) had a small problem when current
141file was not saved yet.
142
1430.0.9-2
144-------
145
146Small bug fix for initial don't panic message.
147
1480.0.9-1
149-------
150
151Changed program structure, reduced use of global variables (grouped in
152module 'globals', which creates an instanse 'g' of class Globals.
153
154First version of undo/redo working!
155
156Support for toolbars inside panels and frames.
157
158Added 'container' submenu for creating Panel, Notebook and ToolBar objects.
159
160wxMSW-only: added code to switch focus back to main window when test
161window is updated.
162
1630.0.8-2
164-------
165
166Fixed unicode problem for unicode build.
167
1680.0.8-1
169-------
170
171Using WX_2_4_BRANCH.
172
173Added new controls: wxSpinCtrl, wxGenericDirCtrl, unknown (custom
174control), improved wxXRC format suppor (menu styles, etc.).
175
176Some I18N support: parsing "encoding" attribute in XML header, later
177it can be modified in "properties" panel for "XML tree".
178
179UNIX note: currently XML writing for non-ascii chars works only if
180sys.getdefaultencoding() returns good value. To do this, one has to
181put following lines to "sitecustomize.py" file:
182
183# Start code segment
184import sys
185sys.setdefaultencoding('iso-8859-1') # or whatever
186# End code segment
187
1880.0.7
189-----
190
191Some command-line arguments.
192
193"Test window" command and toolbar button.
194
195New panel interphace (wxHTMLWindow is not used anymore).
196
197Toggling between embedded and detached panel.
198
199Cache for already used windows.
200
201Current top-level control is bold, if test window shown.
202
203Undo/redo broken.
204
205CheckListBox does not work unless wxXRC source fixed (in both wxPytnon and
206wxWin):
207
208contrib/src/xrc/xmlrsall.cpp
20945,46c45,46
210< AddHandler(new wxListCtrlXmlHandler);
211< #if CHECKLISTBOX
212---
213> AddHandler(new wxListCtrlXmlHandler);
214> #if wxUSE_CHECKLISTBOX
215
216This is fixed in CVS.
217
2180.0.6
219-----
220
221Toolbar, bitmap, icon support (no display yet).
222
223Changed parameter objects, added support for multiple parameters (like
224`growablecols').
225
226Fixed double-clicking problem with tree control on Windows.
227
228Some performance improovements.
229
230
2310.0.5
232-----
233
234Added notebook with properties page and style page. Fixed some problems
235on Windows.
236
237
2380.0.4
239-----
240
241Some fixes suggested by RD
242
243
2440.0.3
245-----
246
247Faster preview window refresh.
248
249Cut/Paste works better.
250
251Some tree icons.
252
253Tree item names.
254
255Bugfixes.
256
257
2580.0.2
259-----
260
261The first release.
262