]> git.saurik.com Git - wxWidgets.git/blame - utils/dialoged/src/winprop.cpp
Set the selection under Motif in wxChoiceDialog
[wxWidgets.git] / utils / dialoged / src / winprop.cpp
CommitLineData
457814b5
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: winprop.cpp
3// Purpose: Window properties
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "winprop.h"
14#endif
15
16// For compilers that support precompilation, includes "wx/wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
24#include "wx/wx.h"
25#endif
26
27#include <ctype.h>
28#include <stdlib.h>
29#include <math.h>
30#include <string.h>
31
2049ba38 32#ifdef __WXMSW__
457814b5
JS
33#include <windows.h>
34#endif
35
36#include "reseditr.h"
457814b5
JS
37#include "winprop.h"
38
39// Causes immediate feedback.
40void wxResourcePropertyListView::OnPropertyChanged(wxProperty *property)
41{
f6bcfd97
BP
42 // Sets the value of the property back into the actual object,
43 // IF the property value was modified.
44 if (property->GetValue().GetModified())
45 {
46 m_propertyInfo->SetProperty(property->GetName(), property);
47 property->GetValue().SetModified(FALSE);
48 wxResourceManager::GetCurrentResourceManager()->Modify(TRUE);
49 }
457814b5
JS
50}
51
52bool wxResourcePropertyListView::OnClose(void)
53{
f6bcfd97
BP
54 int w, h, x, y;
55 GetManagedWindow()->GetSize(& w, & h);
56 GetManagedWindow()->GetPosition(& x, & y);
57
58 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width = w;
59 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height = h;
60 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x = x;
61 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y = y;
62
63 return wxPropertyListView::OnClose();
457814b5
JS
64}
65
ae8351fc
JS
66wxWindow *wxPropertyInfo::sm_propertyWindow;
67
457814b5 68/*
f6bcfd97
BP
69* wxDialogEditorPropertyListDialog
70*/
457814b5 71
f6bcfd97 72/*
ae8351fc 73wxDialogEditorPropertyListDialog::wxDialogEditorPropertyListDialog(wxPropertyListView *v, wxWindow *parent, const wxString& title,
f6bcfd97
BP
74const wxPoint& pos, const wxSize& size,
75long style, const wxString& name):
76wxPropertyListDialog(v, parent, title, pos, size, style, name)
ae8351fc 77{
f6bcfd97
BP
78m_propSheet = NULL;
79m_propInfo = NULL;
ae8351fc
JS
80}
81
f6bcfd97
BP
82 wxDialogEditorPropertyListDialog::~wxDialogEditorPropertyListDialog()
83 {
84 delete m_propSheet;
85 delete m_propInfo;
86 wxPropertyInfo::sm_propertyWindow = NULL;
87 }
bbcdf8bc
JS
88*/
89
90wxDialogEditorPropertyListFrame::wxDialogEditorPropertyListFrame(wxPropertyListView *v, wxFrame *parent, const wxString& title,
f6bcfd97
BP
91 const wxPoint& pos, const wxSize& size,
92 long style, const wxString& name):
93wxPropertyListFrame(v, parent, title, pos, size, style, name)
bbcdf8bc 94{
f6bcfd97
BP
95 m_propSheet = NULL;
96 m_propInfo = NULL;
bbcdf8bc
JS
97}
98
99wxDialogEditorPropertyListFrame::~wxDialogEditorPropertyListFrame()
100{
101 delete m_propSheet;
102 delete m_propInfo;
8caa4ed1
JS
103 if (wxPropertyInfo::sm_propertyWindow == this)
104 wxPropertyInfo::sm_propertyWindow = NULL;
bbcdf8bc 105}
ae8351fc
JS
106
107/*
f6bcfd97
BP
108* wxPropertyInfo
109*/
457814b5
JS
110
111// Edit the information represented by this object, whatever that
112// might be.
fd71308f 113bool wxPropertyInfo::Edit(wxWindow *WXUNUSED(parent), const wxString& title)
457814b5 114{
f6bcfd97 115 if (sm_propertyWindow)
457814b5 116 {
f6bcfd97
BP
117 wxWindowPropertyInfo* thisProp = (wxWindowPropertyInfo*) this;
118 wxWindowPropertyInfo* oldProp = (wxWindowPropertyInfo*) (((wxDialogEditorPropertyListFrame *) sm_propertyWindow)->GetInfo());
119 if (oldProp->GetWindow() == thisProp->GetWindow())
120 {
121 sm_propertyWindow->Raise();
122 return TRUE;
123 }
124 else
125 {
126 CloseWindow(); // Close the window so we can open a new one
127 }
457814b5 128 }
f6bcfd97
BP
129
130 int width = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width;
131 int height = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height;
132 int x = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x;
133 int y = wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y;
134
135 wxPropertySheet *propSheet = new wxPropertySheet;
136
137 wxStringList propNames;
138 GetPropertyNames(propNames);
139
140 wxNode *node = propNames.First();
141 while (node)
142 {
143 wxString name((char *)node->Data());
144 wxProperty *prop = GetProperty(name);
145 if (prop)
146 {
147 propSheet->AddProperty(prop);
148 }
149 node = node->Next();
150 }
151
152 // Reset 'modified' flags for all property values
153 propSheet->SetAllModified(FALSE);
154
155 wxResourcePropertyListView *view = new wxResourcePropertyListView(this, NULL,
156 wxPROP_BUTTON_OK | // wxPROP_BUTTON_CANCEL |
157 wxPROP_BUTTON_CHECK_CROSS|wxPROP_DYNAMIC_VALUE_FIELD|wxPROP_PULLDOWN|wxPROP_SHOWVALUES);
158
159 wxDialogEditorPropertyListFrame *propWin = new wxDialogEditorPropertyListFrame(view,
160 wxResourceManager::GetCurrentResourceManager()->GetEditorFrame(), title, wxPoint(x, y),
161 wxSize(width, height), wxDEFAULT_FRAME_STYLE);
162 sm_propertyWindow = propWin;
163
164 propWin->m_registry.RegisterValidator(wxString("real"), new wxRealListValidator);
165 propWin->m_registry.RegisterValidator(wxString("string"), new wxStringListValidator);
166 propWin->m_registry.RegisterValidator(wxString("integer"), new wxIntegerListValidator);
167 propWin->m_registry.RegisterValidator(wxString("bool"), new wxBoolListValidator);
168 propWin->m_registry.RegisterValidator(wxString("filename"), new wxFilenameListValidator);
169 propWin->m_registry.RegisterValidator(wxString("stringlist"), new wxListOfStringsListValidator);
170 propWin->m_registry.RegisterValidator(wxString("window_id"), new wxResourceSymbolValidator);
171
172 propWin->m_propInfo = this;
173 propWin->m_propSheet = propSheet;
174
175 // view->m_propertyWindow = propWin;
176 view->AddRegistry(&(propWin->m_registry));
177
178 propWin->Initialize();
179 view->ShowView(propSheet, propWin->GetPropertyPanel());
180
181 propWin->Show(TRUE);
182
183 // Otherwise doesn't show itself
15d5ab67 184#ifdef __WXMOTIF__
f6bcfd97
BP
185 wxNoOptimize noOptimize;
186 propWin->SetSize(-1, -1, width, height);
15d5ab67 187#endif
f6bcfd97
BP
188
189 return TRUE;
457814b5
JS
190}
191
30b5fc11
JS
192void wxPropertyInfo::CloseWindow()
193{
f6bcfd97
BP
194 if (sm_propertyWindow)
195 {
30b5fc11
JS
196 int w, h, x, y;
197 sm_propertyWindow->GetSize(& w, & h);
198 sm_propertyWindow->GetPosition(& x, & y);
f6bcfd97 199
30b5fc11
JS
200 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width = w;
201 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height = h;
202 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x = x;
203 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y = y;
f6bcfd97 204
30b5fc11
JS
205 sm_propertyWindow->Destroy();
206 sm_propertyWindow = (wxDialogEditorPropertyListFrame *) NULL;
f6bcfd97 207 }
30b5fc11
JS
208}
209
457814b5 210/*
f6bcfd97
BP
211* wxWindowPropertyInfo
212*/
457814b5
JS
213
214wxWindowPropertyInfo::wxWindowPropertyInfo(wxWindow *win, wxItemResource *res)
215{
f6bcfd97
BP
216 m_propertyWindow = win;
217 m_propertyResource = res;
457814b5
JS
218}
219
220wxWindowPropertyInfo::~wxWindowPropertyInfo(void)
221{
222}
223
224wxProperty *wxWindowPropertyInfo::GetFontProperty(wxString& name, wxFont *font)
225{
f6bcfd97
BP
226 if (!font)
227 return NULL;
228
229 if (name.Contains("Points"))
230 return new wxProperty(name, (long)font->GetPointSize(), "integer", new wxIntegerListValidator(1, 100));
231 else if (name.Contains("Family"))
232 return new wxProperty(name, font->GetFamilyString(), "string",
233 new wxStringListValidator(new wxStringList("wxDECORATIVE", "wxROMAN", "wxSCRIPT", "wxSWISS", "wxMODERN",
234 NULL)));
235 else if (name.Contains("Style"))
236 return new wxProperty(name, font->GetStyleString(), "string",
237 new wxStringListValidator(new wxStringList("wxNORMAL", "wxITALIC", "wxSLANT", NULL)));
238 else if (name.Contains("Weight"))
239 return new wxProperty(name, font->GetWeightString(), "string",
240 new wxStringListValidator(new wxStringList("wxNORMAL", "wxBOLD", "wxLIGHT", NULL)));
241 else if (name.Contains("Underlined"))
242 return new wxProperty(name, (bool)font->GetUnderlined(), "bool");
243 else
244 return NULL;
457814b5
JS
245}
246
247wxFont *wxWindowPropertyInfo::SetFontProperty(wxString& name, wxProperty *property, wxFont *font)
248{
f6bcfd97
BP
249 int pointSize = 12;
250 int fontFamily = wxMODERN;
251 int fontStyle = wxNORMAL;
252 int fontWeight = wxNORMAL;
253 bool fontUnderlined = FALSE;
457814b5 254
f6bcfd97
BP
255 if (name.Contains("Points"))
256 {
257 pointSize = (int)property->GetValue().IntegerValue();
258 if (font && (pointSize == font->GetPointSize()))
259 return NULL; // No change
260 }
261 else if (font) pointSize = font->GetPointSize();
457814b5 262
f6bcfd97
BP
263 if (name.Contains("Family"))
264 {
265 wxString val = property->GetValue().StringValue();
266 fontFamily = wxStringToFontFamily(val);
267
268 if (font && (fontFamily == font->GetFamily()))
269 return NULL; // No change
270 }
271 else if (font) fontFamily = font->GetFamily();
272
273 if (name.Contains("Style"))
274 {
275 wxString val = property->GetValue().StringValue();
276 fontStyle = wxStringToFontStyle(val);
277
278 if (font && (fontStyle == font->GetStyle()))
279 return NULL; // No change
280 }
281 else if (font) fontStyle = font->GetStyle();
282 if (name.Contains("Weight"))
283 {
284 wxString val = property->GetValue().StringValue();
285 fontWeight = wxStringToFontWeight(val);
286
287 if (font && (fontWeight == font->GetWeight()))
288 return NULL; // No change
289 }
290 else if (font) fontWeight = font->GetWeight();
291
292 if (name.Contains("Underlined"))
293 {
294 fontUnderlined = property->GetValue().BoolValue();
295
296 if (font && (fontUnderlined == font->GetUnderlined()))
297 return NULL; // No change
298 }
299 else if (font) fontUnderlined = font->GetUnderlined();
300
301 wxFont *newFont = wxTheFontList->FindOrCreateFont(pointSize, fontFamily, fontStyle, fontWeight, fontUnderlined);
302 if (newFont)
5de76427 303 {
f6bcfd97 304 return newFont;
5de76427
JS
305 }
306 else
307 return NULL;
457814b5
JS
308}
309
f6bcfd97 310wxProperty *wxWindowPropertyInfo::GetProperty(wxString& name)
457814b5 311{
f6bcfd97
BP
312 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
313
314 wxFont *font = & m_propertyWindow->GetFont();
315 if (name == "fontPoints" || name == "fontFamily" || name == "fontStyle" || name == "fontWeight" ||
316 name == "fontUnderlined")
317 return GetFontProperty(name, font);
318 else if (name == "name")
319 return new wxProperty("name", m_propertyWindow->GetName(), "string");
320 else if (name == "title")
321 return new wxProperty("title", m_propertyWindow->GetTitle(), "string");
322 else if (name == "x")
30b5fc11 323 {
f6bcfd97 324 return new wxProperty("x", (long)resource->GetX(), "integer");
30b5fc11 325 }
f6bcfd97 326 else if (name == "y")
457814b5 327 {
f6bcfd97 328 return new wxProperty("y", (long)resource->GetY(), "integer");
457814b5 329 }
f6bcfd97 330 else if (name == "width")
457814b5 331 {
f6bcfd97 332 return new wxProperty("width", (long)resource->GetWidth(), "integer");
457814b5 333 }
f6bcfd97 334 else if (name == "height")
fd71308f 335 {
f6bcfd97 336 return new wxProperty("height", (long)resource->GetHeight(), "integer");
fd71308f 337 }
f6bcfd97 338 else if (name == "id")
fd71308f 339 {
f6bcfd97
BP
340 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
341 if (resource)
fd71308f 342 {
f6bcfd97
BP
343 int id = resource->GetId();
344 wxString idStr;
345 idStr.Printf("%d", id);
346 wxString symbolName = wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetSymbolForId(id);
347 symbolName += "=";
348 symbolName += idStr;
349 // symbolName is now e.g. "ID_PANEL21=105"
350 return new wxProperty("id", symbolName, "window_id");
fd71308f 351 }
f6bcfd97
BP
352 else
353 return NULL;
fd71308f 354 }
f6bcfd97 355 else if (name == "border")
7978fe62 356 {
f6bcfd97
BP
357 wxString border("");
358 if (m_propertyWindow->GetWindowStyleFlag() & wxSIMPLE_BORDER)
359 border = "wxSIMPLE_BORDER";
360 else if (m_propertyWindow->GetWindowStyleFlag() & wxRAISED_BORDER)
361 border = "wxRAISED_BORDER";
362 else if (m_propertyWindow->GetWindowStyleFlag() & wxSUNKEN_BORDER)
363 border = "wxSUNKEN_BORDER";
364 else if (m_propertyWindow->GetWindowStyleFlag() & wxDOUBLE_BORDER)
365 border = "wxDOUBLE_BORDER";
366 else if (m_propertyWindow->GetWindowStyleFlag() & wxSTATIC_BORDER)
367 border = "wxSTATIC_BORDER";
368 else if (m_propertyWindow->GetWindowStyleFlag() & wxNO_BORDER)
369 border = "wxNO_BORDER";
370 else
371 border = "default border";
372
373 return new wxProperty("border", border, "string",
374 new wxStringListValidator(new wxStringList("wxSIMPLE_BORDER", "wxRAISED_BORDER",
375 "wxSUNKEN_BORDER", "wxDOUBLE_BORDER", "wxSTATIC_BORDER", "wxNO_BORDER", "default border", NULL)));
7978fe62 376 }
f6bcfd97
BP
377 else
378 return NULL;
379}
fd71308f 380
f6bcfd97
BP
381bool wxWindowPropertyInfo::SetProperty(wxString& name, wxProperty *property)
382{
383 wxFont *font = & m_propertyWindow->GetFont();
384 if (font && (name == "fontPoints" || name == "fontFamily" || name == "fontStyle" || name == "fontWeight" || name == "fontUnderlined" ))
fd71308f 385 {
f6bcfd97
BP
386 wxFont *newFont = SetFontProperty(name, property, font);
387 if (newFont)
fd71308f 388 {
f6bcfd97
BP
389 m_propertyWindow->SetFont(* newFont);
390 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
391 if (resource)
392 {
393 resource->SetFont(* newFont);
394 }
fd71308f 395 }
f6bcfd97
BP
396
397 return TRUE;
fd71308f 398 }
f6bcfd97 399 else if (name == "name")
fd71308f 400 {
f6bcfd97
BP
401 // Remove old name from resource table, if it's there.
402 wxItemResource *oldResource = (wxItemResource *)wxResourceManager::GetCurrentResourceManager()->GetResourceTable().Delete(m_propertyWindow->GetName());
403 if (oldResource)
404 {
405 // It's a top-level resource
406 m_propertyWindow->SetName(property->GetValue().StringValue());
407 oldResource->SetName(property->GetValue().StringValue());
408 wxResourceManager::GetCurrentResourceManager()->GetResourceTable().Put(m_propertyWindow->GetName(), oldResource);
409 }
410 else
fd71308f 411 {
f6bcfd97
BP
412 // It's a child of something; just set the name of the resource and the window.
413 m_propertyWindow->SetName(property->GetValue().StringValue());
414 m_propertyResource->SetName(property->GetValue().StringValue());
fd71308f 415 }
f6bcfd97
BP
416 // Refresh the resource manager list, because the name changed.
417 wxResourceManager::GetCurrentResourceManager()->UpdateResourceList();
418 return TRUE;
fd71308f 419 }
f6bcfd97 420 else if (name == "title")
7978fe62 421 {
f6bcfd97
BP
422 m_propertyWindow->SetTitle(property->GetValue().StringValue());
423 return TRUE;
7978fe62 424 }
f6bcfd97 425 else if (name == "x")
fd71308f 426 {
f6bcfd97
BP
427 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
428 int x, y;
429 m_propertyWindow->GetPosition(&x, &y);
430 int newX = (int)property->GetValue().IntegerValue();
431 int pixelX = newX;
432
433 // We need to convert to pixels if this is not a dialog or panel, but
434 // the parent resource specifies dialog units.
435 if (m_propertyWindow->GetParent() && m_propertyWindow->IsKindOf(CLASSINFO(wxControl)))
fd71308f 436 {
f6bcfd97
BP
437 wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
438 if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
439 {
440 wxPoint pt = m_propertyWindow->GetParent()->ConvertDialogToPixels(wxPoint(newX, y));
441 pixelX = pt.x;
442 }
443 }
444 else if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
445 {
446 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
447 if (resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
448 {
449 wxPoint pt = m_propertyWindow->ConvertDialogToPixels(wxPoint(newX, y));
450 pixelX = pt.x;
451 }
452 }
453
454 if (x != pixelX)
455 {
456 m_propertyWindow->Move(pixelX, y);
457 resource->SetSize(newX, resource->GetY(), resource->GetWidth(), resource->GetHeight());
fd71308f 458 }
f6bcfd97 459 return TRUE;
fd71308f 460 }
f6bcfd97 461 else if (name == "y")
fd71308f
JS
462 {
463 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
f6bcfd97
BP
464 int x, y;
465 m_propertyWindow->GetPosition(&x, &y);
466 int newY = (int)property->GetValue().IntegerValue();
467 int pixelY = newY;
468
469 // We need to convert to pixels if this is not a dialog or panel, but
470 // the parent resource specifies dialog units.
471 if (m_propertyWindow->GetParent() && m_propertyWindow->IsKindOf(CLASSINFO(wxControl)))
fd71308f 472 {
f6bcfd97
BP
473 wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
474 if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
475 {
476 wxPoint pt = m_propertyWindow->GetParent()->ConvertDialogToPixels(wxPoint(x, newY));
477 pixelY = pt.y;
478 }
fd71308f 479 }
f6bcfd97
BP
480 else if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
481 {
482 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
483 if (resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
484 {
485 wxPoint pt = m_propertyWindow->ConvertDialogToPixels(wxPoint(x, newY));
486 pixelY = pt.y;
487 }
488 }
489
490 if (y != pixelY)
fd71308f 491 {
f6bcfd97
BP
492 m_propertyWindow->Move(x, pixelY);
493 resource->SetSize(resource->GetX(), newY, resource->GetWidth(), resource->GetHeight());
fd71308f 494 }
f6bcfd97 495 return TRUE;
fd71308f 496 }
f6bcfd97 497 else if (name == "width")
fd71308f
JS
498 {
499 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
f6bcfd97
BP
500 int width, height;
501 m_propertyWindow->GetSize(&width, &height);
502 int newWidth = (int)property->GetValue().IntegerValue();
503 int pixelWidth = newWidth;
504
505 // We need to convert to pixels if this is not a dialog or panel, but
506 // the parent resource specifies dialog units.
507 if (m_propertyWindow->GetParent() && m_propertyWindow->IsKindOf(CLASSINFO(wxControl)))
fd71308f 508 {
f6bcfd97
BP
509 wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
510 if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
511 {
512 wxSize sz = m_propertyWindow->GetParent()->ConvertDialogToPixels(wxSize(newWidth, height));
513 pixelWidth = sz.x;
514 }
fd71308f 515 }
f6bcfd97
BP
516 else if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
517 {
518 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
519 if (resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
520 {
521 wxSize sz = m_propertyWindow->ConvertDialogToPixels(wxSize(newWidth, height));
522 pixelWidth = sz.x;
523 }
524 }
525
526 if (width != pixelWidth)
527 {
528 m_propertyWindow->SetSize(pixelWidth, height);
529 resource->SetSize(resource->GetX(), resource->GetY(), newWidth, resource->GetHeight());
530 }
531 return TRUE;
fd71308f 532 }
f6bcfd97 533 else if (name == "height")
5de76427 534 {
f6bcfd97
BP
535 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
536 int width, height;
537 m_propertyWindow->GetSize(&width, &height);
538 int newHeight = (int)property->GetValue().IntegerValue();
539 int pixelHeight = newHeight;
540
541 // We need to convert to pixels if this is not a dialog or panel, but
542 // the parent resource specifies dialog units.
543 if (m_propertyWindow->GetParent() && m_propertyWindow->IsKindOf(CLASSINFO(wxControl)))
5de76427 544 {
f6bcfd97
BP
545 wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
546 if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
5de76427 547 {
f6bcfd97
BP
548 wxSize sz = m_propertyWindow->GetParent()->ConvertDialogToPixels(wxSize(width, newHeight));
549 pixelHeight = sz.y;
5de76427 550 }
f6bcfd97
BP
551 }
552 else if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
553 {
554 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
555 if (resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
5de76427 556 {
f6bcfd97
BP
557 wxSize sz = m_propertyWindow->ConvertDialogToPixels(wxSize(width, newHeight));
558 pixelHeight = sz.y;
5de76427 559 }
f6bcfd97
BP
560 }
561
562 if (height != pixelHeight)
563 {
564 m_propertyWindow->SetSize(width, pixelHeight);
565 resource->SetSize(resource->GetX(), resource->GetY(), resource->GetWidth(), newHeight);
566 }
567 return TRUE;
568 }
569 else if (name == "id")
570 {
571 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
572 if (resource)
573 {
574 wxString value = property->GetValue().StringValue();
575
576 wxString strName = value.Before('=');
577 wxString strId = value.After('=');
578 int id = atoi(strId);
579
580 wxString oldSymbolName = wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetSymbolForId(resource->GetId());
581 int oldSymbolId = resource->GetId();
582
583 if (strName != "")
5de76427 584 {
f6bcfd97
BP
585 // If we change the id for an existing symbol, we need to:
586 // 1) Check if there are any other resources currently using the original id.
587 // If so, will need to change their id to the new id.
588 // 2) Remove the old symbol, add the new symbol.
589 // In this check, we don't have to do this, but we need to do it in SetProperty.
590
591 if (strName == oldSymbolName && id != oldSymbolId)
592 {
593 wxASSERT( (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName)) );
594
595 // It's OK to change just the id. But we'll need to change all matching ids in all resources,
596 // because ids are unique and changing one resource's id must change all identical ones.
597 wxResourceManager::GetCurrentResourceManager()->ChangeIds(oldSymbolId, id);
598
599 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName);
600 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName, id);
601 }
602
603 // If we change the name but not the id, we'll just need to remove and
604 // re-add the symbol/id pair.
605 if (strName != oldSymbolName && id == oldSymbolId)
5de76427 606 {
f6bcfd97
BP
607 wxASSERT( (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName)) );
608
5de76427 609 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName);
f6bcfd97
BP
610
611 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(strName))
612 {
613 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName, id);
614 }
5de76427 615 }
f6bcfd97
BP
616
617 // What if we're changing both the name and the id?
618 // - if there's no symbol of that name, just remove the old, add the new (in SetProperty)
619 // - if there is a symbol of that name, if id matches, do nothing. If not, veto.
620
621 if (strName != oldSymbolName && id != oldSymbolId)
5de76427 622 {
f6bcfd97
BP
623 // Remove old symbol if it's not being used
624 if (!wxResourceManager::GetCurrentResourceManager()->IsSymbolUsed(resource, oldSymbolId) &&
625 !wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName))
626 {
627 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName);
628 }
629
630 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(strName))
631 {
632 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName, id);
633 }
5de76427 634 }
f6bcfd97 635 resource->SetId(id);
5de76427 636 }
f6bcfd97
BP
637
638 return TRUE;
5de76427 639 }
f6bcfd97
BP
640 else
641 return FALSE;
642 }
643 else if (name == "border")
644 {
645 long borderStyle = 0;
646 wxString val = property->GetValue().StringValue();
647
648 if (val == "wxSIMPLE_BORDER")
649 borderStyle = wxSIMPLE_BORDER;
650 else if (val == "wxRAISED_BORDER")
651 borderStyle = wxRAISED_BORDER;
652 else if (val == "wxSUNKEN_BORDER")
653 borderStyle = wxSUNKEN_BORDER;
654 else if (val == "wxDOUBLE_BORDER")
655 borderStyle = wxDOUBLE_BORDER;
656 else if (val == "wxSTATIC_BORDER")
657 borderStyle = wxSTATIC_BORDER;
658 else if (val == "wxNO_BORDER")
659 borderStyle = wxNO_BORDER;
660
661 SetWindowStyle(m_propertyWindow, wxSIMPLE_BORDER, FALSE);
662 SetWindowStyle(m_propertyWindow, wxRAISED_BORDER, FALSE);
663 SetWindowStyle(m_propertyWindow, wxSUNKEN_BORDER, FALSE);
664 SetWindowStyle(m_propertyWindow, wxDOUBLE_BORDER, FALSE);
665 SetWindowStyle(m_propertyWindow, wxSTATIC_BORDER, FALSE);
666 SetWindowStyle(m_propertyWindow, wxNO_BORDER, FALSE);
667
668 SetWindowStyle(m_propertyWindow, borderStyle, TRUE);
669
670 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
671 resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
5de76427
JS
672 return TRUE;
673 }
674 else
675 return FALSE;
457814b5
JS
676}
677
678void wxWindowPropertyInfo::GetPropertyNames(wxStringList& names)
679{
f6bcfd97
BP
680 names.Add("id");
681 names.Add("name");
682 names.Add("x");
683 names.Add("y");
684 names.Add("width");
685 names.Add("height");
686 names.Add("border");
687 if (!m_propertyWindow->IsKindOf(CLASSINFO(wxControl)))
688 {
689 names.Add("fontPoints");
690 names.Add("fontFamily");
691 names.Add("fontStyle");
692 names.Add("fontWeight");
693 names.Add("fontUnderlined");
694 }
457814b5
JS
695}
696
697// Fill in the wxItemResource members to mirror the current window settings
698bool wxWindowPropertyInfo::InstantiateResource(wxItemResource *resource)
699{
f6bcfd97
BP
700 // resource->SetType(m_propertyWindow->GetClassInfo()->GetClassName());
701
702 // resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
703 wxString str(m_propertyWindow->GetName());
704 resource->SetName(str);
705
8caa4ed1 706#if 0 // Why did we comment this out? Possibly because of rounding errors
f6bcfd97
BP
707 // that will build up as the conversion is repeatedly done.
708 // so only do the conversion when a resize happens.
709 int x, y, w, h;
710
711 if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
712 m_propertyWindow->GetClientSize(&w, &h);
713 else
714 m_propertyWindow->GetSize(&w, &h);
715
716 m_propertyWindow->GetPosition(&x, &y);
717
718 // We need to convert to dialog units if this is not a dialog or panel, but
719 // the parent resource specifies dialog units.
720 if (m_propertyWindow->GetParent() && m_propertyWindow->IsKindOf(CLASSINFO(wxControl)))
721 {
722 wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
723 if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
724 {
725 wxPoint pt = m_propertyWindow->GetParent()->ConvertPixelsToDialog(wxPoint(x, y));
726 x = pt.x; y = pt.y;
727 wxSize sz = m_propertyWindow->GetParent()->ConvertPixelsToDialog(wxSize(w, h));
728 w = sz.x; h = sz.y;
729 }
730 }
731 else if (m_propertyWindow->IsKindOf(CLASSINFO(wxPanel)))
732 {
733 if (resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
734 {
735 wxPoint pt = m_propertyWindow->ConvertPixelsToDialog(wxPoint(x, y));
736 x = pt.x; y = pt.y;
737 wxSize sz = m_propertyWindow->ConvertPixelsToDialog(wxSize(w, h));
738 w = sz.x; h = sz.y;
739 }
740 }
741
742 resource->SetSize(x, y, w, h);
fd71308f 743#endif
f6bcfd97
BP
744
745 return TRUE;
457814b5
JS
746}
747
bbcdf8bc
JS
748// Set the window style
749void wxWindowPropertyInfo::SetWindowStyle(wxWindow* win, long style, bool set)
750{
751 if (style == 0)
752 return;
f6bcfd97 753
bbcdf8bc
JS
754 if ((win->GetWindowStyleFlag() & style) == style)
755 {
756 if (!set)
757 {
758 win->SetWindowStyleFlag(win->GetWindowStyleFlag() - style);
759 }
760 }
761 else
762 {
763 if (set)
764 {
765 win->SetWindowStyleFlag(win->GetWindowStyleFlag() | style);
766 }
767 }
768}
457814b5
JS
769
770/*
f6bcfd97
BP
771* Controls
772*/
457814b5
JS
773
774wxProperty *wxItemPropertyInfo::GetProperty(wxString& name)
775{
f6bcfd97
BP
776 wxControl *itemWindow = (wxControl *)m_propertyWindow;
777 wxFont *font = & itemWindow->GetFont();
778
779 if (name == "fontPoints" || name == "fontFamily" || name == "fontStyle" || name == "fontWeight" ||
780 name == "fontUnderlined")
781 return GetFontProperty(name, font);
782 else if (name == "label" && itemWindow->GetLabel())
783 return new wxProperty("label", m_propertyWindow->GetLabel(), "string");
784 else
785 return wxWindowPropertyInfo::GetProperty(name);
457814b5
JS
786}
787
788bool wxItemPropertyInfo::SetProperty(wxString& name, wxProperty *property)
789{
f6bcfd97 790 wxControl *itemWindow = (wxControl *)m_propertyWindow;
30b5fc11 791#if 0
f6bcfd97
BP
792 wxFont *font = & itemWindow->GetFont();
793
794 if (font && (name == "fontPoints" || name == "fontFamily" || name == "fontStyle" || name == "fontWeight" || name == "fontUnderlined" ))
795 {
796 wxFont *newFont = SetFontProperty(name, property, font);
797 if (newFont)
798 itemWindow->SetFont(* newFont);
799 return TRUE;
800 }
801 else
30b5fc11 802#endif
f6bcfd97
BP
803 if (name == "label")
804 {
805 itemWindow->SetLabel(property->GetValue().StringValue());
806 return TRUE;
807 }
808 else
809 return wxWindowPropertyInfo::SetProperty(name, property);
457814b5
JS
810}
811
812void wxItemPropertyInfo::GetPropertyNames(wxStringList& names)
813{
f6bcfd97
BP
814 wxWindowPropertyInfo::GetPropertyNames(names);
815
816 names.Add("fontPoints");
817 names.Add("fontFamily");
818 names.Add("fontStyle");
819 names.Add("fontWeight");
820 names.Add("fontUnderlined");
457814b5
JS
821}
822
823bool wxItemPropertyInfo::InstantiateResource(wxItemResource *resource)
824{
f6bcfd97
BP
825 wxWindowPropertyInfo::InstantiateResource(resource);
826
827 wxControl *item = (wxControl *)m_propertyWindow;
828 wxString str(item->GetLabel());
829 resource->SetTitle(str);
830
831 if (item->GetFont().Ok())
832 resource->SetFont(* wxTheFontList->FindOrCreateFont(item->GetFont().GetPointSize(),
833 item->GetFont().GetFamily(), item->GetFont().GetStyle(), item->GetFont().GetWeight(),
834 item->GetFont().GetUnderlined(), item->GetFont().GetFaceName()));
835 return TRUE;
457814b5
JS
836}
837
838/*
f6bcfd97
BP
839* Button
840*/
457814b5
JS
841
842wxProperty *wxButtonPropertyInfo::GetProperty(wxString& name)
843{
f6bcfd97 844 return wxItemPropertyInfo::GetProperty(name);
ae8351fc
JS
845}
846
847bool wxButtonPropertyInfo::SetProperty(wxString& name, wxProperty *property)
848{
f6bcfd97 849 return wxItemPropertyInfo::SetProperty(name, property);
ae8351fc
JS
850}
851
852void wxButtonPropertyInfo::GetPropertyNames(wxStringList& names)
853{
f6bcfd97
BP
854 wxItemPropertyInfo::GetPropertyNames(names);
855 names.Add("label");
ae8351fc
JS
856}
857
858bool wxButtonPropertyInfo::InstantiateResource(wxItemResource *resource)
859{
f6bcfd97 860 return wxItemPropertyInfo::InstantiateResource(resource);
ae8351fc
JS
861}
862
457814b5 863/*
f6bcfd97
BP
864* wxBitmapButton
865*/
ae8351fc
JS
866
867wxProperty *wxBitmapButtonPropertyInfo::GetProperty(wxString& name)
868{
f6bcfd97
BP
869 wxBitmapButton *button = (wxBitmapButton *)m_propertyWindow;
870 if (name == "bitmapFilename")
457814b5 871 {
f6bcfd97
BP
872 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(button);
873 wxString str("none.bmp");
874
875 if (resource)
876 {
877 str = wxResourceManager::GetCurrentResourceManager()->FindBitmapFilenameForResource(resource);
878 }
879 return new wxProperty("bitmapFilename", str.GetData(), "string", new wxFilenameListValidator("Select a bitmap file", "*.bmp"));
457814b5 880 }
f6bcfd97
BP
881 else
882 return wxButtonPropertyInfo::GetProperty(name);
457814b5
JS
883}
884
ae8351fc 885bool wxBitmapButtonPropertyInfo::SetProperty(wxString& name, wxProperty *property)
457814b5 886{
f6bcfd97
BP
887 wxBitmapButton *button = (wxBitmapButton *)m_propertyWindow;
888 if (name == "bitmapFilename")
457814b5 889 {
f6bcfd97
BP
890 char *s = property->GetValue().StringValue();
891 if (s && wxFileExists(s))
457814b5 892 {
f6bcfd97
BP
893 wxString str(s);
894 wxBitmap *bitmap = new wxBitmap(str, wxBITMAP_TYPE_BMP);
895 if (!bitmap->Ok())
896 {
897 delete bitmap;
898 return FALSE;
899 }
900 else
901 {
902 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(button);
903 if (resource)
904 {
905 wxString oldResource(resource->GetValue4());
906 wxString resName = wxResourceManager::GetCurrentResourceManager()->AddBitmapResource(str);
907 resource->SetValue4(resName);
908
909 if (!oldResource.IsNull())
910 wxResourceManager::GetCurrentResourceManager()->PossiblyDeleteBitmapResource(oldResource);
911 }
912
913 button->SetLabel(* bitmap);
914 return TRUE;
915 }
457814b5 916 }
f6bcfd97 917 return FALSE;
457814b5 918 }
f6bcfd97
BP
919 else
920 return wxButtonPropertyInfo::SetProperty(name, property);
457814b5
JS
921}
922
ae8351fc 923void wxBitmapButtonPropertyInfo::GetPropertyNames(wxStringList& names)
457814b5 924{
f6bcfd97
BP
925 wxButtonPropertyInfo::GetPropertyNames(names);
926 names.Delete("label");
927 names.Add("bitmapFilename");
457814b5
JS
928}
929
ae8351fc 930bool wxBitmapButtonPropertyInfo::InstantiateResource(wxItemResource *resource)
457814b5 931{
f6bcfd97 932 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
933}
934
935/*
f6bcfd97
BP
936* wxStaticText
937*/
457814b5
JS
938
939wxProperty *wxStaticTextPropertyInfo::GetProperty(wxString& name)
940{
f6bcfd97 941 return wxItemPropertyInfo::GetProperty(name);
ae8351fc
JS
942}
943
944bool wxStaticTextPropertyInfo::SetProperty(wxString& name, wxProperty *property)
945{
f6bcfd97
BP
946 wxStaticText* itemWindow = (wxStaticText*) m_propertyWindow;
947 if (name == "label")
8caa4ed1 948 {
f6bcfd97
BP
949 // Because setting a wxStaticText control's label may change the
950 // size, we must get the size and instantiate the resource immediately.
951 itemWindow->SetLabel(property->GetValue().StringValue());
952 int w, h;
953
954 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(itemWindow);
955
956 m_propertyWindow->GetSize(&w, &h);
957 // m_propertyWindow->GetPosition(&x, &y);
958
959 // We need to convert to dialog units if
960 // the parent resource specifies dialog units.
961 if (m_propertyWindow->GetParent())
8caa4ed1 962 {
f6bcfd97
BP
963 wxItemResource* parentResource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow->GetParent());
964 if (parentResource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS)
965 {
966 // wxPoint pt = m_propertyWindow->GetParent()->ConvertPixelsToDialog(wxPoint(x, y));
967 // x = pt.x; y = pt.y;
968 wxSize sz = m_propertyWindow->GetParent()->ConvertPixelsToDialog(wxSize(w, h));
969 w = sz.x; h = sz.y;
970 }
8caa4ed1 971 }
f6bcfd97
BP
972 resource->SetSize(resource->GetX(), resource->GetY(), w, h);
973 return TRUE;
8caa4ed1 974 }
f6bcfd97
BP
975 else
976 return wxItemPropertyInfo::SetProperty(name, property);
ae8351fc
JS
977}
978
979void wxStaticTextPropertyInfo::GetPropertyNames(wxStringList& names)
980{
f6bcfd97
BP
981 wxItemPropertyInfo::GetPropertyNames(names);
982 names.Add("label");
ae8351fc
JS
983}
984
985bool wxStaticTextPropertyInfo::InstantiateResource(wxItemResource *resource)
986{
f6bcfd97 987 return wxItemPropertyInfo::InstantiateResource(resource);
ae8351fc
JS
988}
989
457814b5 990/*
f6bcfd97
BP
991* wxStaticBitmap
992*/
ae8351fc
JS
993
994wxProperty *wxStaticBitmapPropertyInfo::GetProperty(wxString& name)
995{
f6bcfd97
BP
996 wxStaticBitmap *message = (wxStaticBitmap *)m_propertyWindow;
997 if (name == "bitmapFilename")
457814b5 998 {
f6bcfd97
BP
999 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(message);
1000 wxString str("none.bmp");
1001
1002 if (resource)
1003 {
1004 str = wxResourceManager::GetCurrentResourceManager()->FindBitmapFilenameForResource(resource);
1005 }
1006 return new wxProperty("bitmapFilename", str.GetData(), "string", new wxFilenameListValidator("Select a bitmap file", "*.bmp"));
457814b5 1007 }
f6bcfd97
BP
1008 else
1009 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1010}
1011
ae8351fc 1012bool wxStaticBitmapPropertyInfo::SetProperty(wxString& name, wxProperty *property)
457814b5 1013{
f6bcfd97
BP
1014 wxStaticBitmap *message = (wxStaticBitmap *)m_propertyWindow;
1015 if (name == "bitmapFilename")
457814b5 1016 {
f6bcfd97
BP
1017 char *s = property->GetValue().StringValue();
1018 if (s && wxFileExists(s))
457814b5 1019 {
f6bcfd97
BP
1020 wxString str(s);
1021
1022 wxBitmap *bitmap = new wxBitmap(str, wxBITMAP_TYPE_BMP);
1023 if (!bitmap->Ok())
1024 {
1025 delete bitmap;
1026 return FALSE;
1027 }
1028 else
1029 {
1030 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(message);
1031 if (resource)
1032 {
1033 wxString oldResource(resource->GetValue4());
1034 wxString resName = wxResourceManager::GetCurrentResourceManager()->AddBitmapResource(str);
1035 resource->SetValue4(resName);
1036
1037 if (!oldResource.IsNull())
1038 wxResourceManager::GetCurrentResourceManager()->PossiblyDeleteBitmapResource(oldResource);
1039 }
1040
1041 message->SetBitmap(* bitmap);
1042 return TRUE;
1043 }
457814b5 1044 }
f6bcfd97 1045 return FALSE;
457814b5 1046 }
f6bcfd97
BP
1047 else
1048 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1049}
1050
ae8351fc 1051void wxStaticBitmapPropertyInfo::GetPropertyNames(wxStringList& names)
457814b5 1052{
f6bcfd97
BP
1053 wxItemPropertyInfo::GetPropertyNames(names);
1054 names.Add("bitmapFilename");
457814b5
JS
1055}
1056
ae8351fc 1057bool wxStaticBitmapPropertyInfo::InstantiateResource(wxItemResource *resource)
457814b5 1058{
f6bcfd97 1059 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1060}
1061
1062/*
f6bcfd97
BP
1063* Text item
1064*/
457814b5
JS
1065
1066wxProperty *wxTextPropertyInfo::GetProperty(wxString& name)
1067{
f6bcfd97
BP
1068 wxTextCtrl *text = (wxTextCtrl *)m_propertyWindow;
1069 if (name == "value")
1070 return new wxProperty("value", text->GetValue(), "string");
1071 else if (name == "password")
1072 {
1073 bool isPassword = ((text->GetWindowStyleFlag() & wxTE_PASSWORD) == wxTE_PASSWORD);
1074 return new wxProperty("password", isPassword, "bool");
1075 }
1076 else if (name == "readonly")
1077 {
1078 bool isReadOnly = ((text->GetWindowStyleFlag() & wxTE_READONLY) == wxTE_READONLY);
1079 return new wxProperty("readonly", isReadOnly, "bool");
1080 }
1081 else
1082 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1083}
1084
1085bool wxTextPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1086{
f6bcfd97
BP
1087 wxTextCtrl *text = (wxTextCtrl *)m_propertyWindow;
1088 if (name == "value")
457814b5 1089 {
f6bcfd97
BP
1090 text->SetValue(property->GetValue().StringValue());
1091 return TRUE;
457814b5 1092 }
f6bcfd97 1093 else if (name == "password")
457814b5 1094 {
f6bcfd97
BP
1095 long flag = text->GetWindowStyleFlag();
1096 if (property->GetValue().BoolValue())
1097 {
1098 if ((flag & wxTE_PASSWORD) != wxTE_PASSWORD)
1099 flag |= wxTE_PASSWORD;
1100 }
1101 else
1102 {
1103 if ((flag & wxTE_PASSWORD) == wxTE_PASSWORD)
1104 flag -= wxTE_PASSWORD;
1105 }
1106 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(text);
1107 resource->SetStyle(flag);
1108
1109 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(text, this);
1110 return TRUE;
457814b5 1111 }
f6bcfd97 1112 else if (name == "readonly")
457814b5 1113 {
f6bcfd97
BP
1114 long flag = text->GetWindowStyleFlag();
1115 if (property->GetValue().BoolValue())
1116 {
1117 if ((flag & wxTE_READONLY) != wxTE_READONLY)
1118 flag |= wxTE_READONLY;
1119 }
1120 else
1121 {
1122 if ((flag & wxTE_READONLY) == wxTE_READONLY)
1123 flag -= wxTE_READONLY;
1124 }
1125 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(text);
1126 resource->SetStyle(flag);
1127
1128 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(text, this);
1129 return TRUE;
457814b5
JS
1130 }
1131 else
f6bcfd97 1132 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1133}
1134
1135void wxTextPropertyInfo::GetPropertyNames(wxStringList& names)
1136{
f6bcfd97
BP
1137 wxItemPropertyInfo::GetPropertyNames(names);
1138 names.Add("value");
1139 names.Add("readonly");
1140 names.Add("password");
457814b5
JS
1141}
1142
1143bool wxTextPropertyInfo::InstantiateResource(wxItemResource *resource)
1144{
f6bcfd97
BP
1145 wxTextCtrl *text = (wxTextCtrl *)m_propertyWindow;
1146 wxString str(text->GetValue());
1147 resource->SetValue4(str);
457814b5 1148
f6bcfd97 1149 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1150}
1151
1152/*
f6bcfd97
BP
1153* Listbox item
1154*/
457814b5
JS
1155
1156wxProperty *wxListBoxPropertyInfo::GetProperty(wxString& name)
1157{
f6bcfd97
BP
1158 wxListBox *listBox = (wxListBox *)m_propertyWindow;
1159 if (name == "values")
1160 {
1161 wxStringList *stringList = new wxStringList;
1162 int i;
2350e915 1163 for (i = 0; i < listBox->GetCount(); i++)
f6bcfd97
BP
1164 stringList->Add(listBox->GetString(i));
1165
1166 return new wxProperty(name, stringList, "stringlist");
1167 }
1168 else if (name == "multiple")
1169 {
1170 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(listBox);
1171 if (!resource)
1172 return NULL;
1173
1174 char *mult = "wxLB_SINGLE";
1175
1176 if ((listBox->GetWindowStyleFlag() & wxLB_MULTIPLE) != 0)
1177 mult = "wxLB_MULTIPLE";
1178 else if ((listBox->GetWindowStyleFlag() & wxLB_EXTENDED) != 0)
1179 mult = "wxLB_EXTENDED";
1180 else
1181 mult = "wxLB_SINGLE";
1182
1183 return new wxProperty("multiple", mult, "string",
1184 new wxStringListValidator(new wxStringList("wxLB_SINGLE", "wxLB_MULTIPLE", "wxLB_EXTENDED",
1185 NULL)));
1186 }
386af6a2 1187 else
f6bcfd97 1188 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1189}
1190
1191bool wxListBoxPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1192{
f6bcfd97
BP
1193 wxListBox *listBox = (wxListBox *)m_propertyWindow;
1194 if (name == "values")
457814b5 1195 {
f6bcfd97
BP
1196 listBox->Clear();
1197 wxPropertyValue *expr = property->GetValue().GetFirst();
1198 while (expr)
1199 {
1200 char *s = expr->StringValue();
1201 if (s)
1202 listBox->Append(s);
1203 expr = expr->GetNext();
1204 }
1205 return TRUE;
1206 }
1207 else if (name == "multiple")
1208 {
1209 SetWindowStyle(m_propertyWindow, wxLB_SINGLE, FALSE);
1210 SetWindowStyle(m_propertyWindow, wxLB_MULTIPLE, FALSE);
1211 SetWindowStyle(m_propertyWindow, wxLB_EXTENDED, FALSE);
1212
1213 wxString str(property->GetValue().StringValue());
1214 if (str == "wxLB_MULTIPLE")
1215 SetWindowStyle(m_propertyWindow, wxLB_MULTIPLE, TRUE);
1216 else if (str == "wxLB_EXTENDED")
1217 SetWindowStyle(m_propertyWindow, wxLB_EXTENDED, TRUE);
1218 else
1219 SetWindowStyle(m_propertyWindow, wxLB_SINGLE, TRUE);
1220
1221 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(listBox);
1222 if (resource)
1223 resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
1224 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(listBox, this);
1225 return TRUE;
457814b5 1226 }
457814b5 1227 else
f6bcfd97 1228 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1229}
1230
1231void wxListBoxPropertyInfo::GetPropertyNames(wxStringList& names)
1232{
f6bcfd97
BP
1233 wxItemPropertyInfo::GetPropertyNames(names);
1234 names.Add("values");
1235 names.Add("multiple");
457814b5
JS
1236}
1237
1238bool wxListBoxPropertyInfo::InstantiateResource(wxItemResource *resource)
1239{
f6bcfd97
BP
1240 wxListBox *lbox = (wxListBox *)m_propertyWindow;
1241 // This will be set for the wxItemResource on reading or in SetProperty
1242 // resource->SetValue1(lbox->GetSelectionMode());
1243 int i;
2350e915 1244 if (lbox->GetCount() == 0)
f6bcfd97
BP
1245 resource->SetStringValues(NULL);
1246 else
1247 {
1248 wxStringList slist;
1249
2350e915 1250 for (i = 0; i < lbox->GetCount(); i++)
f6bcfd97
BP
1251 slist.Add(lbox->GetString(i));
1252
1253 resource->SetStringValues(slist);
1254 }
1255 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1256}
1257
1258/*
f6bcfd97
BP
1259* Choice item
1260*/
457814b5
JS
1261
1262wxProperty *wxChoicePropertyInfo::GetProperty(wxString& name)
1263{
f6bcfd97
BP
1264 wxChoice *choice = (wxChoice *)m_propertyWindow;
1265 if (name == "values")
1266 {
1267 wxStringList* stringList = new wxStringList;
1268 int i;
2350e915 1269 for (i = 0; i < choice->GetCount(); i++)
f6bcfd97
BP
1270 stringList->Add(choice->GetString(i));
1271
1272 return new wxProperty(name, stringList, "stringlist");
1273 }
1274 else
1275 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1276}
1277
1278bool wxChoicePropertyInfo::SetProperty(wxString& name, wxProperty *property)
1279{
f6bcfd97
BP
1280 wxChoice *choice = (wxChoice *)m_propertyWindow;
1281 if (name == "values")
457814b5 1282 {
f6bcfd97
BP
1283 choice->Clear();
1284 wxPropertyValue *expr = property->GetValue().GetFirst();
1285 while (expr)
1286 {
1287 char *s = expr->StringValue();
1288 if (s)
1289 choice->Append(s);
1290 expr = expr->GetNext();
1291 }
2350e915 1292 if (choice->GetCount() > 0)
f6bcfd97
BP
1293 choice->SetSelection(0);
1294 return TRUE;
457814b5 1295 }
f6bcfd97
BP
1296 else
1297 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1298}
1299
1300void wxChoicePropertyInfo::GetPropertyNames(wxStringList& names)
1301{
f6bcfd97
BP
1302 wxItemPropertyInfo::GetPropertyNames(names);
1303 names.Add("values");
457814b5
JS
1304}
1305
1306bool wxChoicePropertyInfo::InstantiateResource(wxItemResource *resource)
1307{
f6bcfd97
BP
1308 wxChoice *choice = (wxChoice *)m_propertyWindow;
1309 int i;
2350e915 1310 if (choice->GetCount() == 0)
f6bcfd97
BP
1311 resource->SetStringValues(NULL);
1312 else
1313 {
1314 wxStringList slist;
1315
2350e915 1316 for (i = 0; i < choice->GetCount(); i++)
f6bcfd97
BP
1317 slist.Add(choice->GetString(i));
1318
1319 resource->SetStringValues(slist);
1320 }
1321 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1322}
1323
9c331ded 1324/*
f6bcfd97
BP
1325* Choice item
1326*/
9c331ded
JS
1327
1328wxProperty *wxComboBoxPropertyInfo::GetProperty(wxString& name)
1329{
f6bcfd97
BP
1330 wxComboBox *choice = (wxComboBox *)m_propertyWindow;
1331 if (name == "values")
1332 {
1333 wxStringList *stringList = new wxStringList;
1334 int i;
2350e915 1335 for (i = 0; i < choice->GetCount(); i++)
f6bcfd97
BP
1336 stringList->Add(choice->GetString(i));
1337
1338 return new wxProperty(name, stringList, "stringlist");
1339 }
1340 else if (name == "sort")
1341 {
1342 bool sort = ((m_propertyWindow->GetWindowStyleFlag() & wxCB_SORT) == wxCB_SORT);
1343 return new wxProperty(name, sort, "bool");
1344 }
1345 else if (name == "style")
1346 {
1347 wxString styleStr("dropdown");
1348 if (m_propertyWindow->GetWindowStyleFlag() & wxCB_SIMPLE)
1349 styleStr = "simple";
1350 else if (m_propertyWindow->GetWindowStyleFlag() & wxCB_READONLY)
1351 styleStr = "readonly";
1352 else
1353 styleStr = "dropdown";
1354
1355 return new wxProperty(name, styleStr, "string",
1356 new wxStringListValidator(new wxStringList("simple", "dropdown", "readonly",
1357 NULL)));
1358 }
9c331ded 1359 else
f6bcfd97 1360 return wxItemPropertyInfo::GetProperty(name);
9c331ded
JS
1361}
1362
1363bool wxComboBoxPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1364{
f6bcfd97
BP
1365 wxComboBox *choice = (wxComboBox *)m_propertyWindow;
1366 if (name == "values")
9c331ded 1367 {
f6bcfd97
BP
1368 choice->Clear();
1369 wxPropertyValue *expr = property->GetValue().GetFirst();
1370 while (expr)
1371 {
1372 char *s = expr->StringValue();
1373 if (s)
1374 choice->Append(s);
1375 expr = expr->GetNext();
1376 }
2350e915 1377 if (choice->GetCount() > 0)
f6bcfd97
BP
1378 choice->SetSelection(0);
1379 return TRUE;
9c331ded 1380 }
f6bcfd97
BP
1381 else if (name == "sort")
1382 {
1383 SetWindowStyle(m_propertyWindow, wxCB_SORT, property->GetValue().BoolValue());
1384
1385 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
1386 resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
1387
1388 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(m_propertyWindow, this);
1389 return TRUE;
1390 }
1391 else if (name == "style")
1392 {
1393 SetWindowStyle(m_propertyWindow, wxCB_SIMPLE, FALSE);
1394 SetWindowStyle(m_propertyWindow, wxCB_DROPDOWN, FALSE);
1395 SetWindowStyle(m_propertyWindow, wxCB_READONLY, FALSE);
1396
1397 wxString styleStr(property->GetValue().StringValue());
1398 if (styleStr == "simple")
1399 SetWindowStyle(m_propertyWindow, wxCB_SIMPLE, TRUE);
1400 else if (styleStr == "dropdown")
1401 SetWindowStyle(m_propertyWindow, wxCB_DROPDOWN, TRUE);
1402 else if (styleStr == "readonly")
1403 SetWindowStyle(m_propertyWindow, wxCB_READONLY, TRUE);
1404
1405 // Necesary?
1406 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
1407 resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
1408
1409 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(m_propertyWindow, this);
1410
1411 return TRUE;
1412 }
1413 else
1414 return wxItemPropertyInfo::SetProperty(name, property);
9c331ded
JS
1415}
1416
1417void wxComboBoxPropertyInfo::GetPropertyNames(wxStringList& names)
1418{
f6bcfd97
BP
1419 wxItemPropertyInfo::GetPropertyNames(names);
1420 names.Add("values");
1421 names.Add("style");
1422 names.Add("sort");
9c331ded
JS
1423}
1424
1425bool wxComboBoxPropertyInfo::InstantiateResource(wxItemResource *resource)
1426{
f6bcfd97
BP
1427 wxComboBox *choice = (wxComboBox *)m_propertyWindow;
1428 int i;
2350e915 1429 if (choice->GetCount() == 0)
f6bcfd97
BP
1430 resource->SetStringValues(NULL);
1431 else
1432 {
1433 wxStringList slist;
1434
2350e915 1435 for (i = 0; i < choice->GetCount(); i++)
f6bcfd97
BP
1436 slist.Add(choice->GetString(i));
1437
1438 resource->SetStringValues(slist);
1439 }
1440 return wxItemPropertyInfo::InstantiateResource(resource);
9c331ded
JS
1441}
1442
457814b5 1443/*
f6bcfd97
BP
1444* Radiobox item
1445*/
457814b5
JS
1446
1447wxProperty *wxRadioBoxPropertyInfo::GetProperty(wxString& name)
1448{
f6bcfd97
BP
1449 wxRadioBox *radioBox = (wxRadioBox *)m_propertyWindow;
1450 if (name == "numberRowsOrCols")
1451 {
1452 return new wxProperty("numberRowsOrCols", (long)radioBox->GetNumberOfRowsOrCols(), "integer");
1453 }
1454 if (name == "orientation")
1455 {
1456 wxString orient;
1457 if (m_propertyWindow->GetWindowStyleFlag() & wxRA_SPECIFY_COLS)
1458 orient = "wxRA_SPECIFY_COLS";
1459 else
1460 orient = "wxRA_SPECIFY_ROWS";
1461
1462 return new wxProperty("orientation", orient, "string",
1463 new wxStringListValidator(new wxStringList("wxRA_SPECIFY_COLS", "wxRA_SPECIFY_ROWS",
1464 NULL)));
1465 }
1466 else if (name == "values")
1467 {
1468 wxStringList *stringList = new wxStringList;
1469 int i;
2350e915 1470 for (i = 0; i < radioBox->GetCount(); i++)
f6bcfd97
BP
1471 stringList->Add(radioBox->GetString(i));
1472
1473 return new wxProperty(name, stringList, "stringlist");
1474 }
1475 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1476}
1477
1478bool wxRadioBoxPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1479{
f6bcfd97
BP
1480 wxRadioBox *radioBox = (wxRadioBox *)m_propertyWindow;
1481 if (name == "numberRowsOrCols")
457814b5 1482 {
f6bcfd97
BP
1483 wxResourceManager::GetCurrentResourceManager()->DeselectItemIfNecessary(radioBox);
1484
1485 radioBox->SetNumberOfRowsOrCols((int)property->GetValue().IntegerValue());
1486 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox, this);
1487 return TRUE;
457814b5 1488 }
f6bcfd97 1489 else if (name == "orientation")
457814b5 1490 {
f6bcfd97
BP
1491 long windowStyle = radioBox->GetWindowStyleFlag();
1492 wxString val(property->GetValue().StringValue());
1493 if (val == "wxRA_SPECIFY_COLS")
1494 {
1495 if (windowStyle & wxRA_SPECIFY_ROWS)
1496 windowStyle -= wxRA_SPECIFY_ROWS;
1497 windowStyle |= wxRA_SPECIFY_COLS;
1498 }
1499 else
1500 {
1501 if (windowStyle & wxRA_SPECIFY_COLS)
1502 windowStyle -= wxRA_SPECIFY_COLS;
1503 windowStyle |= wxRA_SPECIFY_ROWS;
1504 }
1505 wxResourceManager::GetCurrentResourceManager()->DeselectItemIfNecessary(radioBox);
1506
1507 radioBox->SetWindowStyleFlag(windowStyle);
1508 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(radioBox);
1509 resource->SetStyle(windowStyle);
1510 resource->SetSize(resource->GetX(), resource->GetY(), -1, -1); // Let it calculate it's own size
1511
1512 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox, this, FALSE);
1513 return TRUE;
457814b5 1514 }
f6bcfd97 1515 else if (name == "values")
30b5fc11 1516 {
f6bcfd97
BP
1517 // Set property into *resource*, not wxRadioBox, and then recreate
1518 // the wxRadioBox. This is because we can't dynamically set the strings
1519 // of a wxRadioBox.
1520 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
1521 if (!resource)
1522 return FALSE;
1523
1524 wxStringList stringList;
1525 wxPropertyValue *expr = property->GetValue().GetFirst();
1526 while (expr)
1527 {
1528 char *s = expr->StringValue();
1529 if (s)
1530 stringList.Add(s);
1531 expr = expr->GetNext();
1532 }
1533 resource->SetStringValues(stringList);
1534 resource->SetSize(resource->GetX(), resource->GetY(), -1, -1); // Let it calculate it's own size
1535 m_propertyWindow = wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox, this, FALSE);
1536 return TRUE;
30b5fc11 1537 }
f6bcfd97
BP
1538 else if (name == "fontPoints" || name == "fontFamily" || name == "fontStyle" || name == "fontWeight" || name == "fontUnderlined" )
1539 {
1540 wxFont *font = & m_propertyWindow->GetFont();
1541 if (!font)
1542 return FALSE;
1543 wxFont *newFont = SetFontProperty(name, property, font);
1544 if (newFont)
1545 {
1546 wxItemResource* resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
1547 if (resource)
1548 {
1549 resource->SetFont(* newFont);
1550 }
1551
1552 wxResourceManager::GetCurrentResourceManager()->DeselectItemIfNecessary(radioBox);
1553
1554 radioBox->SetFont(* newFont);
1555 radioBox->SetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT);
1556 return TRUE;
1557 }
1558 }
1559
1560 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1561}
1562
1563void wxRadioBoxPropertyInfo::GetPropertyNames(wxStringList& names)
1564{
f6bcfd97
BP
1565 wxItemPropertyInfo::GetPropertyNames(names);
1566 names.Add("label");
1567 names.Add("values");
1568 names.Add("orientation");
1569 names.Add("numberRowsOrCols");
457814b5
JS
1570}
1571
1572bool wxRadioBoxPropertyInfo::InstantiateResource(wxItemResource *resource)
1573{
f6bcfd97
BP
1574 wxRadioBox *rbox = (wxRadioBox *)m_propertyWindow;
1575 // Take strings from resource instead
1576 /*
1577 int i;
2350e915 1578 if (rbox->GetCount() == 0)
457814b5 1579 resource->SetStringValues(NULL);
f6bcfd97
BP
1580 else
1581 {
457814b5
JS
1582 wxStringList *slist = new wxStringList;
1583
2350e915 1584 for (i = 0; i < rbox->GetCount(); i++)
457814b5
JS
1585 slist->Add(rbox->GetString(i));
1586
f6bcfd97
BP
1587 resource->SetStringValues(slist);
1588 }
1589 */
1590 resource->SetValue1(rbox->GetNumberOfRowsOrCols());
1591 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1592}
1593
1594/*
f6bcfd97
BP
1595* Groupbox item
1596*/
457814b5
JS
1597
1598wxProperty *wxGroupBoxPropertyInfo::GetProperty(wxString& name)
1599{
f6bcfd97 1600 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1601}
1602
1603bool wxGroupBoxPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1604{
f6bcfd97 1605 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1606}
1607
1608void wxGroupBoxPropertyInfo::GetPropertyNames(wxStringList& names)
1609{
f6bcfd97
BP
1610 wxItemPropertyInfo::GetPropertyNames(names);
1611 names.Add("label");
457814b5
JS
1612}
1613
1614bool wxGroupBoxPropertyInfo::InstantiateResource(wxItemResource *resource)
1615{
f6bcfd97 1616 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1617}
1618
1619/*
f6bcfd97
BP
1620* Checkbox item
1621*/
457814b5
JS
1622
1623wxProperty *wxCheckBoxPropertyInfo::GetProperty(wxString& name)
1624{
f6bcfd97
BP
1625 wxCheckBox *checkBox = (wxCheckBox *)m_propertyWindow;
1626 if (name == "value")
1627 return new wxProperty("value", checkBox->GetValue(), "bool");
1628 else
1629 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1630}
1631
1632bool wxCheckBoxPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1633{
f6bcfd97
BP
1634 wxCheckBox *checkBox = (wxCheckBox *)m_propertyWindow;
1635 if (name == "value")
1636 {
1637 checkBox->SetValue((bool)property->GetValue().BoolValue());
1638 return TRUE;
1639 }
1640 else
1641 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1642}
1643
1644void wxCheckBoxPropertyInfo::GetPropertyNames(wxStringList& names)
1645{
f6bcfd97
BP
1646 wxItemPropertyInfo::GetPropertyNames(names);
1647 names.Add("label");
1648 names.Add("value");
457814b5
JS
1649}
1650
1651bool wxCheckBoxPropertyInfo::InstantiateResource(wxItemResource *resource)
1652{
f6bcfd97
BP
1653 wxCheckBox *cbox = (wxCheckBox *)m_propertyWindow;
1654 resource->SetValue1(cbox->GetValue());
1655 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1656}
1657
03f68f12 1658/*
f6bcfd97
BP
1659* Radiobutton item
1660*/
03f68f12
JS
1661
1662wxProperty *wxRadioButtonPropertyInfo::GetProperty(wxString& name)
1663{
f6bcfd97
BP
1664 wxRadioButton *checkBox = (wxRadioButton *)m_propertyWindow;
1665 if (name == "value")
1666 return new wxProperty("value", checkBox->GetValue(), "bool");
1667 else
1668 return wxItemPropertyInfo::GetProperty(name);
03f68f12
JS
1669}
1670
1671bool wxRadioButtonPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1672{
f6bcfd97
BP
1673 wxRadioButton *checkBox = (wxRadioButton *)m_propertyWindow;
1674 if (name == "value")
1675 {
1676 checkBox->SetValue((bool)property->GetValue().BoolValue());
1677 return TRUE;
1678 }
1679 else
1680 return wxItemPropertyInfo::SetProperty(name, property);
03f68f12
JS
1681}
1682
1683void wxRadioButtonPropertyInfo::GetPropertyNames(wxStringList& names)
1684{
f6bcfd97
BP
1685 wxItemPropertyInfo::GetPropertyNames(names);
1686 names.Add("label");
1687 names.Add("value");
03f68f12
JS
1688}
1689
1690bool wxRadioButtonPropertyInfo::InstantiateResource(wxItemResource *resource)
1691{
f6bcfd97
BP
1692 wxRadioButton *cbox = (wxRadioButton *)m_propertyWindow;
1693 resource->SetValue1(cbox->GetValue());
1694 return wxItemPropertyInfo::InstantiateResource(resource);
03f68f12
JS
1695}
1696
457814b5 1697/*
f6bcfd97
BP
1698* Slider item
1699*/
457814b5
JS
1700
1701wxProperty *wxSliderPropertyInfo::GetProperty(wxString& name)
1702{
f6bcfd97
BP
1703 wxSlider *slider = (wxSlider *)m_propertyWindow;
1704 if (name == "value")
1705 return new wxProperty("value", (long)slider->GetValue(), "integer");
1706 else if (name == "orientation")
1707 {
1708 char *pos = NULL;
1709 if (m_propertyWindow->GetWindowStyleFlag() & wxHORIZONTAL)
1710 pos = "wxHORIZONTAL";
1711 else
1712 pos = "wxVERTICAL";
1713
1714 return new wxProperty("orientation", pos, "string",
1715 new wxStringListValidator(new wxStringList("wxHORIZONTAL", "wxVERTICAL",
1716 NULL)));
1717 }
1718 else if (name == "minValue")
1719 return new wxProperty("minValue", (long)slider->GetMin(), "integer");
1720 else if (name == "maxValue")
1721 return new wxProperty("maxValue", (long)slider->GetMax(), "integer");
457814b5 1722 else
f6bcfd97 1723 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1724}
1725
1726bool wxSliderPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1727{
f6bcfd97
BP
1728 wxSlider *slider = (wxSlider *)m_propertyWindow;
1729 if (name == "value")
457814b5 1730 {
f6bcfd97
BP
1731 slider->SetValue((int)property->GetValue().IntegerValue());
1732 return TRUE;
457814b5 1733 }
f6bcfd97 1734 else if (name == "orientation")
457814b5 1735 {
f6bcfd97
BP
1736 long windowStyle = slider->GetWindowStyleFlag();
1737 long oldWindowStyle = windowStyle;
1738 wxString val(property->GetValue().StringValue());
1739 if (val == "wxHORIZONTAL")
1740 {
1741 if (windowStyle & wxVERTICAL)
1742 windowStyle -= wxVERTICAL;
1743 windowStyle |= wxHORIZONTAL;
1744 }
1745 else
1746 {
1747 if (windowStyle & wxHORIZONTAL)
1748 windowStyle -= wxHORIZONTAL;
1749 windowStyle |= wxVERTICAL;
1750 }
1751
1752 if (oldWindowStyle == windowStyle)
1753 return TRUE;
1754
1755 slider->SetWindowStyleFlag(windowStyle);
1756
1757 // If the window style has changed, we swap the width and height parameters.
1758 int w, h;
1759 slider->GetSize(&w, &h);
1760
1761 slider = (wxSlider *)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(slider, this);
1762 slider->SetSize(-1, -1, h, w);
1763 m_propertyWindow = slider;
1764
1765 return TRUE;
457814b5 1766 }
f6bcfd97
BP
1767 else if (name == "minValue")
1768 {
1769 slider->SetRange((int)property->GetValue().IntegerValue(), slider->GetMax());
1770 return TRUE;
1771 }
1772 else if (name == "maxValue")
1773 {
1774 slider->SetRange(slider->GetMin(), (int)property->GetValue().IntegerValue());
1775 return TRUE;
1776 }
1777 else
1778 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1779}
1780
1781void wxSliderPropertyInfo::GetPropertyNames(wxStringList& names)
1782{
f6bcfd97
BP
1783 wxItemPropertyInfo::GetPropertyNames(names);
1784 names.Add("value");
1785 names.Add("orientation");
1786 names.Add("minValue");
1787 names.Add("maxValue");
457814b5
JS
1788}
1789
1790bool wxSliderPropertyInfo::InstantiateResource(wxItemResource *resource)
1791{
f6bcfd97
BP
1792 wxSlider *slider = (wxSlider *)m_propertyWindow;
1793 resource->SetValue1(slider->GetValue());
1794 resource->SetValue2(slider->GetMin());
1795 resource->SetValue3(slider->GetMax());
1796 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1797}
1798
1799/*
f6bcfd97
BP
1800* Gauge item
1801*/
457814b5
JS
1802
1803wxProperty *wxGaugePropertyInfo::GetProperty(wxString& name)
1804{
f6bcfd97
BP
1805 wxGauge *gauge = (wxGauge *)m_propertyWindow;
1806 if (name == "value")
1807 return new wxProperty("value", (long)gauge->GetValue(), "integer");
1808 else if (name == "maxValue")
1809 return new wxProperty("maxValue", (long)gauge->GetRange(), "integer");
1810 else
1811 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1812}
1813
1814bool wxGaugePropertyInfo::SetProperty(wxString& name, wxProperty *property)
1815{
f6bcfd97
BP
1816 wxGauge *gauge = (wxGauge *)m_propertyWindow;
1817 if (name == "value")
1818 {
1819 gauge->SetValue((int)property->GetValue().IntegerValue());
1820 return TRUE;
1821 }
1822 else if (name == "maxValue")
1823 {
1824 gauge->SetRange((int)property->GetValue().IntegerValue());
1825 return TRUE;
1826 }
1827 else
1828 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1829}
1830
1831void wxGaugePropertyInfo::GetPropertyNames(wxStringList& names)
1832{
f6bcfd97
BP
1833 wxItemPropertyInfo::GetPropertyNames(names);
1834 names.Add("value");
1835 names.Add("maxValue");
457814b5
JS
1836}
1837
1838bool wxGaugePropertyInfo::InstantiateResource(wxItemResource *resource)
1839{
f6bcfd97
BP
1840 wxGauge *gauge = (wxGauge *)m_propertyWindow;
1841 resource->SetValue1(gauge->GetValue());
1842 resource->SetValue2(gauge->GetRange());
1843 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1844}
1845
1846/*
f6bcfd97
BP
1847* Scrollbar item
1848*/
457814b5
JS
1849
1850wxProperty *wxScrollBarPropertyInfo::GetProperty(wxString& name)
1851{
f6bcfd97
BP
1852 wxScrollBar *scrollBar = (wxScrollBar *)m_propertyWindow;
1853 if (name == "thumbPosition")
1854 return new wxProperty("value", (long)scrollBar->GetThumbPosition(), "integer");
1855 else if (name == "orientation")
1856 {
1857 char *pos = NULL;
1858 if (m_propertyWindow->GetWindowStyleFlag() & wxHORIZONTAL)
1859 pos = "wxHORIZONTAL";
1860 else
1861 pos = "wxVERTICAL";
1862
1863 return new wxProperty("orientation", pos, "string",
1864 new wxStringListValidator(new wxStringList("wxHORIZONTAL", "wxVERTICAL",
1865 NULL)));
1866 }
1867 else if (name == "pageSize")
1868 {
1869 int pageLength = scrollBar->GetPageSize();
1870
1871 return new wxProperty("pageSize", (long)pageLength, "integer");
1872 }
1873 else if (name == "thumbSize")
1874 {
1875 int thumbSize = scrollBar->GetThumbSize();
1876
1877 return new wxProperty("thumbSize", (long)thumbSize, "integer");
1878 }
1879 else if (name == "range")
1880 {
1881 int range = scrollBar->GetRange();
1882 return new wxProperty("range", (long)range, "integer");
1883 }
457814b5 1884 else
f6bcfd97 1885 return wxItemPropertyInfo::GetProperty(name);
457814b5
JS
1886}
1887
1888bool wxScrollBarPropertyInfo::SetProperty(wxString& name, wxProperty *property)
1889{
f6bcfd97
BP
1890 wxScrollBar *scrollBar = (wxScrollBar *)m_propertyWindow;
1891 if (name == "thumbPosition")
1892 {
1893 scrollBar->SetThumbPosition((int)property->GetValue().IntegerValue());
1894 return TRUE;
1895 }
1896 else if (name == "orientation")
457814b5 1897 {
f6bcfd97
BP
1898 long windowStyle = scrollBar->GetWindowStyleFlag();
1899 long oldWindowStyle = windowStyle;
1900 wxString val(property->GetValue().StringValue());
1901 if (val == "wxHORIZONTAL")
1902 {
1903 if (windowStyle & wxVERTICAL)
1904 windowStyle -= wxVERTICAL;
1905 windowStyle |= wxHORIZONTAL;
1906 }
1907 else
1908 {
1909 if (windowStyle & wxHORIZONTAL)
1910 windowStyle -= wxHORIZONTAL;
1911 windowStyle |= wxVERTICAL;
1912 }
1913
1914 if (oldWindowStyle == windowStyle)
1915 return TRUE;
1916
1917 scrollBar->SetWindowStyleFlag(windowStyle);
1918
1919 // If the window style has changed, we swap the width and height parameters.
1920 // int w, h;
1921 // scrollBar->GetSize(&w, &h);
1922 wxItemResource *item = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(scrollBar);
1923 if ( item ) {
1924 item->SetSize(item->GetX(), item->GetY(), item->GetHeight(), item->GetWidth());
1925 item->SetStyle(windowStyle);
1926 } /* IF */
1927
1928 scrollBar = (wxScrollBar *)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(scrollBar, this);
1929 m_propertyWindow = scrollBar;
1930
1931 return TRUE;
457814b5 1932 }
f6bcfd97 1933 else if (name == "pageSize")
457814b5 1934 {
f6bcfd97
BP
1935 int pos = scrollBar->GetThumbPosition();
1936 int range = scrollBar->GetRange();
1937 int thumbSize = scrollBar->GetThumbSize();
1938 scrollBar->SetScrollbar(pos, thumbSize, range, (int)property->GetValue().IntegerValue());
1939 return TRUE;
457814b5 1940 }
f6bcfd97
BP
1941 else if (name == "thumbSize")
1942 {
1943 int pos = scrollBar->GetThumbPosition();
1944 int range = scrollBar->GetRange();
1945 int pageSize = scrollBar->GetPageSize();
1946 scrollBar->SetScrollbar(pos, (int)property->GetValue().IntegerValue(), range, pageSize);
1947 return TRUE;
1948 }
1949 else if (name == "range")
1950 {
1951 int pos = scrollBar->GetThumbPosition();
1952 int thumbSize = scrollBar->GetThumbSize();
1953 int pageSize = scrollBar->GetPageSize();
1954 scrollBar->SetScrollbar(pos, thumbSize, (int)property->GetValue().IntegerValue(), pageSize);
1955 return TRUE;
1956 }
1957 else
1958 return wxItemPropertyInfo::SetProperty(name, property);
457814b5
JS
1959}
1960
1961void wxScrollBarPropertyInfo::GetPropertyNames(wxStringList& names)
1962{
f6bcfd97
BP
1963 wxItemPropertyInfo::GetPropertyNames(names);
1964 names.Add("orientation");
1965 names.Add("thumbPosition");
1966 names.Add("thumbSize");
1967 names.Add("pageSize");
1968 names.Add("range");
1969
1970 // Remove some properties we don't inherit
1971 names.Delete("fontPoints");
1972 names.Delete("fontFamily");
1973 names.Delete("fontStyle");
1974 names.Delete("fontWeight");
1975 names.Delete("fontUnderlined");
457814b5
JS
1976}
1977
1978bool wxScrollBarPropertyInfo::InstantiateResource(wxItemResource *resource)
1979{
f6bcfd97
BP
1980 wxScrollBar *sbar = (wxScrollBar *)m_propertyWindow;
1981
1982 int thumbPosition = sbar->GetThumbPosition();
1983 int thumbSize = sbar->GetThumbSize();
1984 int pageSize = sbar->GetPageSize();
1985 int range = sbar->GetRange();
1986
1987 resource->SetValue1(thumbPosition);
1988 resource->SetValue2(thumbSize);
1989 resource->SetValue3(range);
1990 resource->SetValue5(pageSize);
1991
1992 return wxItemPropertyInfo::InstantiateResource(resource);
457814b5
JS
1993}
1994
1995/*
f6bcfd97
BP
1996* Panels
1997*/
457814b5
JS
1998
1999wxProperty *wxPanelPropertyInfo::GetProperty(wxString& name)
2000{
f6bcfd97
BP
2001 wxPanel *panelWindow = (wxPanel *)m_propertyWindow;
2002
2003 /*
2004 wxFont *labelFont = panelWindow->GetLabelFont();
2005 wxFont *buttonFont = panelWindow->GetButtonFont();
2006
2007 if (name == "labelFontPoints" || name == "labelFontFamily" || name == "labelFontStyle" || name == "labelFontWeight" ||
457814b5 2008 name == "labelFontUnderlined")
f6bcfd97
BP
2009 return GetFontProperty(name, labelFont);
2010 else if (name == "buttonFontPoints" || name == "buttonFontFamily" || name == "buttonFontStyle" || name == "buttonFontWeight" ||
457814b5 2011 name == "buttonFontUnderlined")
f6bcfd97
BP
2012 return GetFontProperty(name, buttonFont);
2013 */
2014
2015 if (name == "no3D")
2016 {
2017 bool userColours;
2018 if (panelWindow->GetWindowStyleFlag() & wxNO_3D)
2019 userColours = TRUE;
2020 else
2021 userColours = FALSE;
2022
2023 return new wxProperty(name, (bool)userColours, "bool");
2024 }
2025 else if (name == "backgroundColour")
2026 {
2027 wxColour col(panelWindow->GetBackgroundColour());
2028 char buf[7];
2029 wxDecToHex(col.Red(), buf);
2030 wxDecToHex(col.Green(), buf+2);
2031 wxDecToHex(col.Blue(), buf+4);
2032
2033 return new wxProperty(name, buf, "string", new wxColourListValidator);
2034 }
2035 else if (name == "title")
2036 {
2037 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2038 if (resource)
2039 return new wxProperty(name, resource->GetTitle(), "string");
2040 else
2041 return new wxProperty(name, "Could not get title", "string");
2042 }
2043 else if (name == "caption")
2044 {
2045 return new wxProperty(name, ((panelWindow->GetWindowStyleFlag() & wxCAPTION) == wxCAPTION),
2046 "bool");
2047 }
2048 else if (name == "systemMenu")
2049 {
2050 return new wxProperty(name, ((panelWindow->GetWindowStyleFlag() & wxSYSTEM_MENU) == wxSYSTEM_MENU),
2051 "bool");
2052 }
2053 else if (name == "thickFrame")
2054 {
2055 return new wxProperty(name, ((panelWindow->GetWindowStyleFlag() & wxTHICK_FRAME) == wxTHICK_FRAME),
2056 "bool");
2057 }
2058 else if (name == "modal")
2059 {
2060 return new wxProperty(name, ((panelWindow->GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL),
2061 "bool");
2062 }
2063 else if (name == "useSystemDefaults")
2064 {
2065 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2066 return new wxProperty(name, ((resource->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS) == wxRESOURCE_USE_DEFAULTS),
2067 "bool");
2068 }
2069 else if (name == "useDialogUnits")
2070 {
2071 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2072 return new wxProperty(name, ((resource->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS) == wxRESOURCE_DIALOG_UNITS),
2073 "bool");
2074 }
ae8351fc 2075 else
f6bcfd97 2076 return wxWindowPropertyInfo::GetProperty(name);
457814b5
JS
2077}
2078
2079bool wxPanelPropertyInfo::SetProperty(wxString& name, wxProperty *property)
2080{
f6bcfd97
BP
2081 wxPanel *panelWindow = (wxPanel *)m_propertyWindow;
2082 /*
2083 wxFont *labelFont = panelWindow->GetLabelFont();
2084 wxFont *buttonFont = panelWindow->GetButtonFont();
2085
2086 if (labelFont && (name == "labelFontPoints" || name == "labelFontFamily" || name == "labelFontStyle" || name == "labelFontWeight" || name == "labelFontUnderlined" ))
2087 {
2088 wxFont *newFont = SetFontProperty(name, property, labelFont);
2089 if (newFont)
c030b70f 2090 panelWindow->SetLabelFont(* newFont);
f6bcfd97
BP
2091 return TRUE;
2092 }
2093 else if (buttonFont && (name == "buttonFontPoints" || name == "buttonFontFamily" || name == "buttonFontStyle" || name == "buttonFontWeight" || name == "buttonFontUnderlined" ))
2094 {
2095 wxFont *newFont = SetFontProperty(name, property, buttonFont);
2096 if (newFont)
c030b70f 2097 panelWindow->SetButtonFont(* newFont);
f6bcfd97
BP
2098 return TRUE;
2099 }
2100 */
457814b5 2101
f6bcfd97
BP
2102 if (name == "no3D")
2103 {
2104 bool userColours = property->GetValue().BoolValue();
2105
2106 if (userColours)
2107 {
2108 if ((panelWindow->GetWindowStyleFlag() & wxNO_3D) != wxNO_3D)
2109 panelWindow->SetWindowStyleFlag(panelWindow->GetWindowStyleFlag() | wxNO_3D);
2110 }
2111 else
2112 {
2113 if ((panelWindow->GetWindowStyleFlag() & wxNO_3D) == wxNO_3D)
2114 panelWindow->SetWindowStyleFlag(panelWindow->GetWindowStyleFlag() - wxNO_3D);
2115 }
2116 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2117 resource->SetStyle(panelWindow->GetWindowStyleFlag());
2118
2119 panelWindow = (wxPanel *)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow, this);
2120 return TRUE;
2121 }
2122 else if (name == "backgroundColour")
457814b5 2123 {
f6bcfd97
BP
2124 char *hex = property->GetValue().StringValue();
2125 int r = wxHexToDec(hex);
2126 int g = wxHexToDec(hex+2);
2127 int b = wxHexToDec(hex+4);
2128
2129 wxColour col(r,g,b);
2130 panelWindow->SetBackgroundColour(col);
2131 panelWindow = (wxPanel *)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow, this);
2132 m_propertyWindow = panelWindow;
2133 return TRUE;
457814b5 2134 }
f6bcfd97 2135 else if (name == "title")
457814b5 2136 {
f6bcfd97
BP
2137 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2138 if (resource)
2139 {
2140 resource->SetTitle(property->GetValue().StringValue());
2141 return TRUE;
2142 }
2143 else
2144 return FALSE;
457814b5 2145 }
f6bcfd97 2146 else if (name == "caption")
ae8351fc 2147 {
f6bcfd97
BP
2148 SetWindowStyle(panelWindow, wxCAPTION, property->GetValue().BoolValue());
2149
2150 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2151 resource->SetStyle(panelWindow->GetWindowStyleFlag());
ae8351fc
JS
2152 return TRUE;
2153 }
f6bcfd97 2154 else if (name == "thickFrame")
fd71308f 2155 {
f6bcfd97
BP
2156 SetWindowStyle(panelWindow, wxTHICK_FRAME, property->GetValue().BoolValue());
2157
2158 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2159 resource->SetStyle(panelWindow->GetWindowStyleFlag());
2160 return TRUE;
fd71308f 2161 }
f6bcfd97
BP
2162 else if (name == "systemMenu")
2163 {
2164 SetWindowStyle(panelWindow, wxSYSTEM_MENU, property->GetValue().BoolValue());
2165
2166 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2167 resource->SetStyle(panelWindow->GetWindowStyleFlag());
2168 return TRUE;
2169 }
2170 else if (name == "modal")
fd71308f 2171 {
f6bcfd97
BP
2172 SetWindowStyle(panelWindow, wxDIALOG_MODAL, property->GetValue().BoolValue());
2173
2174 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2175 resource->SetStyle(panelWindow->GetWindowStyleFlag());
2176 return TRUE;
fd71308f 2177 }
f6bcfd97 2178 else if (name == "useSystemDefaults")
fd71308f 2179 {
f6bcfd97
BP
2180 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2181 bool useDefaults = property->GetValue().BoolValue();
2182 long style = resource->GetResourceStyle();
2183 if (useDefaults)
2184 {
2185 if ((style & wxRESOURCE_USE_DEFAULTS) == 0)
2186 style |= wxRESOURCE_USE_DEFAULTS;
2187 }
2188 else
fd71308f 2189 {
f6bcfd97
BP
2190 if ((style & wxRESOURCE_USE_DEFAULTS) != 0)
2191 style -= wxRESOURCE_USE_DEFAULTS;
fd71308f 2192 }
f6bcfd97
BP
2193 resource->SetResourceStyle(style);
2194 panelWindow = (wxPanel *)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow, this);
2195 return TRUE;
fd71308f 2196 }
f6bcfd97 2197 else if (name == "useDialogUnits")
fd71308f 2198 {
f6bcfd97
BP
2199 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow);
2200 bool useDialogUnits = property->GetValue().BoolValue();
2201 long style = resource->GetResourceStyle();
2202 if (useDialogUnits)
2203 {
2204 if ((style & wxRESOURCE_DIALOG_UNITS) == 0)
2205 {
2206 style |= wxRESOURCE_DIALOG_UNITS;
2207 ConvertDialogUnits(TRUE); // Convert all resources
2208 }
2209 }
2210 else
fd71308f 2211 {
f6bcfd97
BP
2212 if ((style & wxRESOURCE_DIALOG_UNITS) != 0)
2213 {
2214 style -= wxRESOURCE_DIALOG_UNITS;
2215 ConvertDialogUnits(FALSE); // Convert all resources
2216 }
fd71308f 2217 }
f6bcfd97
BP
2218 resource->SetResourceStyle(style);
2219 panelWindow = (wxPanel *)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow, this);
2220 m_propertyWindow = panelWindow;
2221 // TODO: need to regenerate the width and height properties else they'll be inconsistent.
2222 return TRUE;
fd71308f 2223 }
f6bcfd97
BP
2224 else
2225 return wxWindowPropertyInfo::SetProperty(name, property);
457814b5
JS
2226}
2227
2228void wxPanelPropertyInfo::GetPropertyNames(wxStringList& names)
2229{
f6bcfd97
BP
2230 wxWindowPropertyInfo::GetPropertyNames(names);
2231
2232 names.Add("title");
2233 names.Add("no3D");
2234 names.Add("backgroundColour");
2235 names.Add("caption");
2236 names.Add("systemMenu");
2237 names.Add("thickFrame");
2238 names.Add("useSystemDefaults");
2239 names.Add("useDialogUnits");
2240 names.Add("modal");
457814b5
JS
2241}
2242
2243bool wxPanelPropertyInfo::InstantiateResource(wxItemResource *resource)
2244{
f6bcfd97
BP
2245 wxPanel *panel = (wxPanel *)m_propertyWindow;
2246 if (panel->GetFont().Ok())
2247 resource->SetFont(* wxTheFontList->FindOrCreateFont(panel->GetFont().GetPointSize(),
2248 panel->GetFont().GetFamily(), panel->GetFont().GetStyle(), panel->GetFont().GetWeight(),
2249 panel->GetFont().GetUnderlined(), panel->GetFont().GetFaceName()));
2250
2251 resource->SetBackgroundColour(wxColour(panel->GetBackgroundColour()));
2252
2253 return wxWindowPropertyInfo::InstantiateResource(resource);
457814b5
JS
2254}
2255
fd71308f
JS
2256// Convert this dialog, and its children, to or from dialog units
2257void wxPanelPropertyInfo::ConvertDialogUnits(bool toDialogUnits)
2258{
2259 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow);
f6bcfd97 2260
fd71308f
JS
2261 wxPoint pt;
2262 wxSize sz;
2263 if (toDialogUnits)
2264 {
2265 sz = m_propertyWindow->ConvertPixelsToDialog(wxSize(resource->GetWidth(), resource->GetHeight()));
2266 pt = m_propertyWindow->ConvertPixelsToDialog(wxPoint(resource->GetX(), resource->GetY()));
2267 }
2268 else
2269 {
2270 sz = m_propertyWindow->ConvertDialogToPixels(wxSize(resource->GetWidth(), resource->GetHeight()));
2271 pt = m_propertyWindow->ConvertDialogToPixels(wxPoint(resource->GetX(), resource->GetY()));
2272 }
2273 resource->SetSize(pt.x, pt.y, sz.x, sz.y);
f6bcfd97 2274
c030b70f 2275 wxNode* node = m_propertyWindow->GetChildren().First();
fd71308f
JS
2276 while (node)
2277 {
2278 wxWindow* child = (wxWindow*) node->Data();
2279 if (child->IsKindOf(CLASSINFO(wxControl)))
2280 {
2281 resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(child);
2282 if (toDialogUnits)
2283 {
2284 sz = m_propertyWindow->ConvertPixelsToDialog(wxSize(resource->GetWidth(), resource->GetHeight()));
2285 pt = m_propertyWindow->ConvertPixelsToDialog(wxPoint(resource->GetX(), resource->GetY()));
2286 }
2287 else
2288 {
2289 sz = m_propertyWindow->ConvertDialogToPixels(wxSize(resource->GetWidth(), resource->GetHeight()));
2290 pt = m_propertyWindow->ConvertDialogToPixels(wxPoint(resource->GetX(), resource->GetY()));
2291 }
2292 resource->SetSize(pt.x, pt.y, sz.x, sz.y);
2293 }
2294 node = node->Next();
2295 }
2296}
2297
ae8351fc 2298#if 0
457814b5 2299/*
f6bcfd97
BP
2300* Dialog boxes
2301*/
457814b5
JS
2302
2303wxProperty *wxDialogPropertyInfo::GetProperty(wxString& name)
2304{
f6bcfd97
BP
2305 wxDialog *dialogWindow = (wxDialog *)m_propertyWindow;
2306 if (name == "modal")
2307 {
2308 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(dialogWindow);
2309 if (!resource)
2310 return NULL;
2311
2312 bool modal = (resource->GetValue1() != 0);
2313 return new wxProperty(name, modal, "bool");
2314 }
2315 else
2316 return wxPanelPropertyInfo::GetProperty(name);
457814b5
JS
2317}
2318
2319bool wxDialogPropertyInfo::SetProperty(wxString& name, wxProperty *property)
2320{
f6bcfd97
BP
2321 wxDialog *dialogWindow = (wxDialog *)m_propertyWindow;
2322
2323 if (name == "modal")
2324 {
2325 wxItemResource *resource = wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(dialogWindow);
2326 if (!resource)
2327 return FALSE;
2328
2329 resource->SetValue1(property->GetValue().BoolValue());
2330 return TRUE;
2331 }
2332 else
2333 return wxPanelPropertyInfo::SetProperty(name, property);
457814b5
JS
2334}
2335
2336void wxDialogPropertyInfo::GetPropertyNames(wxStringList& names)
2337{
f6bcfd97
BP
2338 wxPanelPropertyInfo::GetPropertyNames(names);
2339 names.Add("title");
2340 names.Add("modal");
457814b5
JS
2341}
2342
2343bool wxDialogPropertyInfo::InstantiateResource(wxItemResource *resource)
2344{
f6bcfd97
BP
2345 wxDialog *dialog = (wxDialog *)m_propertyWindow;
2346 wxString str(dialog->GetTitle());
2347 resource->SetTitle(str);
457814b5 2348
f6bcfd97 2349 return wxPanelPropertyInfo::InstantiateResource(resource);
457814b5 2350}
ae8351fc 2351#endif
457814b5
JS
2352
2353/*
f6bcfd97
BP
2354* Utilities
2355*/
2356
457814b5
JS
2357int wxStringToFontWeight(wxString& val)
2358{
f6bcfd97
BP
2359 if (val == "wxBOLD") return wxBOLD;
2360 else if (val == "wxLIGHT") return wxLIGHT;
2361 else return wxNORMAL;
457814b5
JS
2362}
2363
2364int wxStringToFontStyle(wxString& val)
2365{
f6bcfd97
BP
2366 if (val == "wxITALIC") return wxITALIC;
2367 else if (val == "wxSLANT") return wxSLANT;
2368 else return wxNORMAL;
457814b5
JS
2369}
2370
2371int wxStringToFontFamily(wxString& val)
2372{
f6bcfd97
BP
2373 if (val == "wxDECORATIVE") return wxDECORATIVE;
2374 else if (val == "wxROMAN") return wxROMAN;
2375 else if (val == "wxSCRIPT") return wxSCRIPT;
2376 else if (val == "wxMODERN") return wxMODERN;
2377 else if (val == "wxTELETYPE") return wxTELETYPE;
2378 else return wxSWISS;
457814b5 2379}
03f68f12
JS
2380
2381///
2382/// Resource symbol validator
2383///
2384IMPLEMENT_DYNAMIC_CLASS(wxResourceSymbolValidator, wxPropertyListValidator)
2385
2386wxResourceSymbolValidator::wxResourceSymbolValidator(long flags):
f6bcfd97 2387wxPropertyListValidator(flags)
03f68f12
JS
2388{
2389}
2390
2391wxResourceSymbolValidator::~wxResourceSymbolValidator(void)
2392{
2393}
2394
fd71308f 2395bool wxResourceSymbolValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *WXUNUSED(view), wxWindow *WXUNUSED(parentWindow))
03f68f12 2396{
f6bcfd97 2397 return TRUE;
03f68f12
JS
2398}
2399
2400// Called when TICK is pressed or focus is lost or view wants to update
2401// the property list.
2402// Does the transferance from the property editing area to the property itself
fd71308f 2403bool wxResourceSymbolValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
03f68f12 2404{
f6bcfd97
BP
2405 if (!view->GetValueText())
2406 return FALSE;
2407 wxString value(view->GetValueText()->GetValue());
2408 property->GetValue() = value ;
2409 return TRUE;
03f68f12
JS
2410}
2411
2412// Called when TICK is pressed or focus is lost or view wants to update
2413// the property list.
2414// Does the transferance from the property editing area to the property itself
fd71308f 2415bool wxResourceSymbolValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
03f68f12 2416{
f6bcfd97
BP
2417 if (!view->GetValueText())
2418 return FALSE;
2419 wxString str(property->GetValue().GetStringRepresentation());
2420 view->GetValueText()->SetValue(str);
2421 return TRUE;
03f68f12
JS
2422}
2423
2424// Called when the property is double clicked. Extra functionality can be provided,
2425// cycling through possible values.
2426bool wxResourceSymbolValidator::OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
2427{
f6bcfd97
BP
2428 if (!view->GetValueText())
2429 return FALSE;
2430 OnEdit(property, view, parentWindow);
2431 return TRUE;
03f68f12
JS
2432}
2433
fd71308f 2434bool wxResourceSymbolValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
03f68f12 2435{
f6bcfd97
BP
2436 if (view->GetConfirmButton())
2437 view->GetConfirmButton()->Enable(TRUE);
2438 if (view->GetCancelButton())
2439 view->GetCancelButton()->Enable(TRUE);
2440 if (view->GetEditButton())
2441 view->GetEditButton()->Enable(TRUE);
2442 if (view->GetValueText())
2443 view->GetValueText()->Enable((GetFlags() & wxPROP_ALLOW_TEXT_EDITING) == wxPROP_ALLOW_TEXT_EDITING);
2444 return TRUE;
03f68f12
JS
2445}
2446
2447void wxResourceSymbolValidator::OnEdit(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
2448{
f6bcfd97
BP
2449 if (!view->GetValueText())
2450 return;
2451
2452 wxResourceSymbolDialog* dialog = new wxResourceSymbolDialog(parentWindow, -1, "Edit Symbol");
2453
2454 // Split name/id pair e.g. "IDC_TEXT=123"
2455 wxString value(property->GetValue().StringValue());
2456
2457 wxString strName = value.Before('=');
2458 wxString strId = value.After('=');
2459
2460 dialog->SetSymbol(strName);
2461 dialog->SetId(atoi(strId));
2462
2463 dialog->Init();
2464
2465 if (dialog->ShowModal() == wxID_OK)
2466 {
2467 wxString symbolName(dialog->GetSymbol());
2468 long id = dialog->GetId();
2469
2470 wxString str;
2471 str.Printf("%d", id);
2472 property->GetValue() = symbolName + wxString("=") + str;
2473
2474 view->DisplayProperty(property);
2475 view->UpdatePropertyDisplayInList(property);
2476 view->OnPropertyChanged(property);
2477 }
2478 // Moved from the 'if' branch on suggestion of Roman Pavlov
2479 dialog->Destroy();
03f68f12
JS
2480}
2481
2482BEGIN_EVENT_TABLE(wxResourceSymbolDialog, wxDialog)
f6bcfd97
BP
2483EVT_BUTTON(wxID_OK, wxResourceSymbolDialog::OnOK)
2484EVT_COMBOBOX(ID_SYMBOLNAME_COMBOBOX, wxResourceSymbolDialog::OnComboBoxSelect)
2485EVT_TEXT(ID_SYMBOLNAME_COMBOBOX, wxResourceSymbolDialog::OnSymbolNameUpdate)
03f68f12
JS
2486END_EVENT_TABLE()
2487
2488wxResourceSymbolDialog::wxResourceSymbolDialog(wxWindow* parent, const wxWindowID id, const wxString& title, const wxPoint& pos,
f6bcfd97
BP
2489 const wxSize& size, long style):
2490wxDialog(parent, id, title, pos, size, style)
03f68f12
JS
2491{
2492 int x = 5;
2493 int y = 5;
f6bcfd97 2494
03f68f12 2495 (void) new wxStaticText(this, -1, "Name: ", wxPoint(x, y));
f6bcfd97 2496
03f68f12 2497 x += 80;
f6bcfd97 2498
03f68f12 2499 m_nameCtrl = new wxComboBox(this, ID_SYMBOLNAME_COMBOBOX, "",
bbcdf8bc 2500 wxPoint(x, y), wxSize(200, -1), 0, NULL, wxCB_DROPDOWN|wxCB_SORT);
f6bcfd97 2501
03f68f12
JS
2502 y += 30;
2503 x = 5;
f6bcfd97 2504
03f68f12 2505 (void) new wxStaticText(this, -1, "Id: ", wxPoint(x, y));
f6bcfd97 2506
03f68f12 2507 x += 80;
f6bcfd97 2508
03f68f12
JS
2509 m_idCtrl = new wxTextCtrl(this, ID_SYMBOLID_TEXTCTRL, "",
2510 wxPoint(x, y), wxSize(200, -1));
f6bcfd97 2511
03f68f12
JS
2512 y += 30;
2513 x = 5;
5de76427 2514 (void) new wxButton(this, wxID_OK, "OK", wxPoint(x, y), wxSize(80, -1));
f6bcfd97 2515
5de76427
JS
2516 x += 100;
2517 (void) new wxButton(this, wxID_CANCEL, "Cancel", wxPoint(x, y), wxSize(80, -1));
f6bcfd97 2518
03f68f12
JS
2519 Fit();
2520 Centre();
2521}
2522
2523void wxResourceSymbolDialog::Init()
2524{
2525 wxString defaultId;
2526 defaultId.Printf("%ld", m_symbolId);
f6bcfd97 2527
03f68f12
JS
2528 m_nameCtrl->SetValue(m_symbolName);
2529 m_idCtrl->SetValue(defaultId);
f6bcfd97 2530
5de76427 2531 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().FillComboBox(m_nameCtrl);
03f68f12
JS
2532}
2533
2534void wxResourceSymbolDialog::OnOK(wxCommandEvent& event)
2535{
2536 if (CheckValues())
2537 {
2538 wxDialog::OnOK(event);
2539 }
2540}
2541
2542bool wxResourceSymbolDialog::CheckValues()
2543{
5de76427
JS
2544 wxString nameStr(m_nameCtrl->GetValue());
2545 wxString idStr(m_idCtrl->GetValue());
2546 int id = atoi(idStr);
f6bcfd97 2547
5de76427
JS
2548 if (id <= 0 )
2549 {
2550 wxMessageBox("Identifier cannot be missing or zero", "Dialog Editor", wxOK|wxICON_EXCLAMATION, this);
2551 return FALSE;
2552 }
2553 if (nameStr == "")
2554 {
2555 wxMessageBox("Please enter a symbol name", "Dialog Editor", wxOK|wxICON_EXCLAMATION, this);
2556 return FALSE;
2557 }
2558 if (nameStr.Contains(" "))
2559 {
2560 wxMessageBox("Symbol name cannot contain spaces.", "Dialog Editor", wxOK|wxICON_EXCLAMATION, this);
2561 return FALSE;
2562 }
2563 if (nameStr.Contains("="))
2564 {
2565 wxMessageBox("Symbol name cannot contain =.", "Dialog Editor", wxOK|wxICON_EXCLAMATION, this);
2566 return FALSE;
2567 }
2568 if (nameStr.IsNumber())
2569 {
2570 wxMessageBox("Symbol name cannot be a number.", "Dialog Editor", wxOK|wxICON_EXCLAMATION, this);
2571 return FALSE;
2572 }
2573 // TODO: other checks on the name syntax.
f6bcfd97 2574
5de76427
JS
2575 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(nameStr))
2576 {
2577 // If we change the id for an existing symbol, we need to:
2578 // 1) Check if there are any other resources currently using the original id.
2579 // If so, will need to change their id to the new id, in SetProperty.
2580 // 2) Remove the old symbol, add the new symbol.
2581 // In this check, we don't have to do this, but we need to do it in SetProperty.
f6bcfd97 2582
5de76427
JS
2583 if (nameStr == GetSymbol() && id != GetId())
2584 {
2585 // It's OK to change the id. But we'll need to change all matching ids in all resources,
2586 // in SetProperty.
2587 }
f6bcfd97 2588
5de76427
JS
2589 // If we change the name but not the id... we'll just need to remove and
2590 // re-add the symbol/id pair, in SetProperty.
2591 if (nameStr != GetSymbol() && id == GetId())
2592 {
2593 }
f6bcfd97 2594
5de76427
JS
2595 // What if we're changing both the name and the id?
2596 // - if there's no symbol of that name, just remove the old, add the new (in SetProperty)
2597 // - if there is a symbol of that name, if id matches, do nothing. If not, veto.
f6bcfd97 2598
5de76427
JS
2599 if (nameStr != GetSymbol() && id != GetId())
2600 {
2601 if (!wxResourceManager::GetCurrentResourceManager()->IsIdentifierOK(nameStr, id))
2602 {
2603 wxMessageBox("This integer id is already being used under a different name.\nPlease choose another.",
2604 "Dialog Editor", wxOK|wxICON_EXCLAMATION, this);
2605 return FALSE;
2606 }
2607 }
f6bcfd97 2608
5de76427 2609 }
f6bcfd97 2610
5de76427
JS
2611 SetSymbol(nameStr);
2612 SetId(id);
f6bcfd97 2613
03f68f12
JS
2614 return TRUE;
2615}
2616
fd71308f 2617void wxResourceSymbolDialog::OnComboBoxSelect(wxCommandEvent& WXUNUSED(event))
5de76427 2618{
bbcdf8bc 2619 wxString str(m_nameCtrl->GetStringSelection());
5de76427
JS
2620 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(str))
2621 {
2622 int id = wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str);
2623 wxString str2;
2624 str2.Printf("%d", id);
2625 m_idCtrl->SetValue(str2);
2626 m_idCtrl->Enable(FALSE);
2627 }
2628 else
2629 {
2630 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(str))
2631 {
2632 int id = wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str);
2633 wxString str2;
2634 str2.Printf("%d", id);
2635 m_idCtrl->SetValue(str2);
2636 }
2637 m_idCtrl->Enable(TRUE);
2638 }
2639}
2640
fd71308f 2641void wxResourceSymbolDialog::OnSymbolNameUpdate(wxCommandEvent& WXUNUSED(event))
5de76427
JS
2642{
2643 wxString str(m_nameCtrl->GetValue());
2644 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(str))
2645 {
2646 int id = wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str);
2647 wxString str2;
2648 str2.Printf("%d", id);
2649 m_idCtrl->SetValue(str2);
2650 m_idCtrl->Enable(FALSE);
2651 }
2652 else
2653 {
2654 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(str))
2655 {
2656 int id = wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str);
2657 wxString str2;
2658 str2.Printf("%d", id);
2659 m_idCtrl->SetValue(str2);
2660 }
2661 m_idCtrl->Enable(TRUE);
2662 }
2663}
2664