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