1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Window properties
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "winprop.h"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
39 // Causes immediate feedback.
40 void wxResourcePropertyListView::OnPropertyChanged(wxProperty
*property
)
42 // Sets the value of the property back into the actual object,
43 // IF the property value was modified.
44 if (property
->GetValue().GetModified())
46 m_propertyInfo
->SetProperty(property
->GetName(), property
);
47 property
->GetValue().SetModified(FALSE
);
48 wxResourceManager::GetCurrentResourceManager()->Modify(TRUE
);
52 bool wxResourcePropertyListView::OnClose(void)
55 GetManagedWindow()->GetSize(& w
, & h
);
56 GetManagedWindow()->GetPosition(& x
, & y
);
58 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width
= w
;
59 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height
= h
;
60 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x
= x
;
61 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y
= y
;
63 return wxPropertyListView::OnClose();
66 wxWindow
*wxPropertyInfo::sm_propertyWindow
;
69 * wxDialogEditorPropertyListDialog
73 wxDialogEditorPropertyListDialog::wxDialogEditorPropertyListDialog(wxPropertyListView *v, wxWindow *parent, const wxString& title,
74 const wxPoint& pos, const wxSize& size,
75 long style, const wxString& name):
76 wxPropertyListDialog(v, parent, title, pos, size, style, name)
82 wxDialogEditorPropertyListDialog::~wxDialogEditorPropertyListDialog()
86 wxPropertyInfo::sm_propertyWindow = NULL;
90 wxDialogEditorPropertyListFrame::wxDialogEditorPropertyListFrame(wxPropertyListView
*v
, wxFrame
*parent
, const wxString
& title
,
91 const wxPoint
& pos
, const wxSize
& size
,
92 long style
, const wxString
& name
):
93 wxPropertyListFrame(v
, parent
, title
, pos
, size
, style
, name
)
99 wxDialogEditorPropertyListFrame::~wxDialogEditorPropertyListFrame()
103 if (wxPropertyInfo::sm_propertyWindow
== this)
104 wxPropertyInfo::sm_propertyWindow
= NULL
;
111 // Edit the information represented by this object, whatever that
113 bool wxPropertyInfo::Edit(wxWindow
*WXUNUSED(parent
), const wxString
& title
)
115 if (sm_propertyWindow
)
117 wxWindowPropertyInfo
* thisProp
= (wxWindowPropertyInfo
*) this;
118 wxWindowPropertyInfo
* oldProp
= (wxWindowPropertyInfo
*) (((wxDialogEditorPropertyListFrame
*) sm_propertyWindow
)->GetInfo());
119 if (oldProp
->GetWindow() == thisProp
->GetWindow())
121 sm_propertyWindow
->Raise();
126 CloseWindow(); // Close the window so we can open a new one
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
;
135 wxPropertySheet
*propSheet
= new wxPropertySheet
;
137 wxStringList propNames
;
138 GetPropertyNames(propNames
);
140 wxNode
*node
= propNames
.First();
143 wxString
name((char *)node
->Data());
144 wxProperty
*prop
= GetProperty(name
);
147 propSheet
->AddProperty(prop
);
152 // Reset 'modified' flags for all property values
153 propSheet
->SetAllModified(FALSE
);
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
);
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
;
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
);
172 propWin
->m_propInfo
= this;
173 propWin
->m_propSheet
= propSheet
;
175 // view->m_propertyWindow = propWin;
176 view
->AddRegistry(&(propWin
->m_registry
));
178 propWin
->Initialize();
179 view
->ShowView(propSheet
, propWin
->GetPropertyPanel());
183 // Otherwise doesn't show itself
185 wxNoOptimize noOptimize
;
186 propWin
->SetSize(-1, -1, width
, height
);
192 void wxPropertyInfo::CloseWindow()
194 if (sm_propertyWindow
)
197 sm_propertyWindow
->GetSize(& w
, & h
);
198 sm_propertyWindow
->GetPosition(& x
, & y
);
200 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width
= w
;
201 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height
= h
;
202 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x
= x
;
203 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y
= y
;
205 sm_propertyWindow
->Destroy();
206 sm_propertyWindow
= (wxDialogEditorPropertyListFrame
*) NULL
;
211 * wxWindowPropertyInfo
214 wxWindowPropertyInfo::wxWindowPropertyInfo(wxWindow
*win
, wxItemResource
*res
)
216 m_propertyWindow
= win
;
217 m_propertyResource
= res
;
220 wxWindowPropertyInfo::~wxWindowPropertyInfo(void)
224 wxProperty
*wxWindowPropertyInfo::GetFontProperty(wxString
& name
, wxFont
*font
)
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",
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");
247 wxFont
*wxWindowPropertyInfo::SetFontProperty(wxString
& name
, wxProperty
*property
, wxFont
*font
)
250 int fontFamily
= wxMODERN
;
251 int fontStyle
= wxNORMAL
;
252 int fontWeight
= wxNORMAL
;
253 bool fontUnderlined
= FALSE
;
255 if (name
.Contains("Points"))
257 pointSize
= (int)property
->GetValue().IntegerValue();
258 if (font
&& (pointSize
== font
->GetPointSize()))
259 return NULL
; // No change
261 else if (font
) pointSize
= font
->GetPointSize();
263 if (name
.Contains("Family"))
265 wxString val
= property
->GetValue().StringValue();
266 fontFamily
= wxStringToFontFamily(val
);
268 if (font
&& (fontFamily
== font
->GetFamily()))
269 return NULL
; // No change
271 else if (font
) fontFamily
= font
->GetFamily();
273 if (name
.Contains("Style"))
275 wxString val
= property
->GetValue().StringValue();
276 fontStyle
= wxStringToFontStyle(val
);
278 if (font
&& (fontStyle
== font
->GetStyle()))
279 return NULL
; // No change
281 else if (font
) fontStyle
= font
->GetStyle();
282 if (name
.Contains("Weight"))
284 wxString val
= property
->GetValue().StringValue();
285 fontWeight
= wxStringToFontWeight(val
);
287 if (font
&& (fontWeight
== font
->GetWeight()))
288 return NULL
; // No change
290 else if (font
) fontWeight
= font
->GetWeight();
292 if (name
.Contains("Underlined"))
294 fontUnderlined
= property
->GetValue().BoolValue();
296 if (font
&& (fontUnderlined
== font
->GetUnderlined()))
297 return NULL
; // No change
299 else if (font
) fontUnderlined
= font
->GetUnderlined();
301 wxFont
*newFont
= wxTheFontList
->FindOrCreateFont(pointSize
, fontFamily
, fontStyle
, fontWeight
, fontUnderlined
);
310 wxProperty
*wxWindowPropertyInfo::GetProperty(wxString
& name
)
312 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
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")
324 return new wxProperty("x", (long)resource
->GetX(), "integer");
326 else if (name
== "y")
328 return new wxProperty("y", (long)resource
->GetY(), "integer");
330 else if (name
== "width")
332 return new wxProperty("width", (long)resource
->GetWidth(), "integer");
334 else if (name
== "height")
336 return new wxProperty("height", (long)resource
->GetHeight(), "integer");
338 else if (name
== "id")
340 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
343 int id
= resource
->GetId();
345 idStr
.Printf("%d", id
);
346 wxString symbolName
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetSymbolForId(id
);
349 // symbolName is now e.g. "ID_PANEL21=105"
350 return new wxProperty("id", symbolName
, "window_id");
355 else if (name
== "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";
371 border
= "default border";
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
)));
381 bool wxWindowPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
383 wxFont
*font
= & m_propertyWindow
->GetFont();
384 if (font
&& (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" || name
== "fontUnderlined" ))
386 wxFont
*newFont
= SetFontProperty(name
, property
, font
);
389 m_propertyWindow
->SetFont(* newFont
);
390 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
393 resource
->SetFont(* newFont
);
399 else if (name
== "name")
401 // Remove old name from resource table, if it's there.
402 wxItemResource
*oldResource
= (wxItemResource
*)wxResourceManager::GetCurrentResourceManager()->GetResourceTable().Delete(m_propertyWindow
->GetName());
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
);
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());
416 // Refresh the resource manager list, because the name changed.
417 wxResourceManager::GetCurrentResourceManager()->UpdateResourceList();
420 else if (name
== "title")
422 m_propertyWindow
->SetTitle(property
->GetValue().StringValue());
425 else if (name
== "x")
427 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
429 m_propertyWindow
->GetPosition(&x
, &y
);
430 int newX
= (int)property
->GetValue().IntegerValue();
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
)))
437 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
438 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
440 wxPoint pt
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxPoint(newX
, y
));
444 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
446 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
447 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
449 wxPoint pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(newX
, y
));
456 m_propertyWindow
->Move(pixelX
, y
);
457 resource
->SetSize(newX
, resource
->GetY(), resource
->GetWidth(), resource
->GetHeight());
461 else if (name
== "y")
463 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
465 m_propertyWindow
->GetPosition(&x
, &y
);
466 int newY
= (int)property
->GetValue().IntegerValue();
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
)))
473 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
474 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
476 wxPoint pt
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxPoint(x
, newY
));
480 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
482 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
483 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
485 wxPoint pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(x
, newY
));
492 m_propertyWindow
->Move(x
, pixelY
);
493 resource
->SetSize(resource
->GetX(), newY
, resource
->GetWidth(), resource
->GetHeight());
497 else if (name
== "width")
499 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
501 m_propertyWindow
->GetSize(&width
, &height
);
502 int newWidth
= (int)property
->GetValue().IntegerValue();
503 int pixelWidth
= newWidth
;
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
)))
509 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
510 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
512 wxSize sz
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxSize(newWidth
, height
));
516 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
518 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
519 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
521 wxSize sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(newWidth
, height
));
526 if (width
!= pixelWidth
)
528 m_propertyWindow
->SetSize(pixelWidth
, height
);
529 resource
->SetSize(resource
->GetX(), resource
->GetY(), newWidth
, resource
->GetHeight());
533 else if (name
== "height")
535 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
537 m_propertyWindow
->GetSize(&width
, &height
);
538 int newHeight
= (int)property
->GetValue().IntegerValue();
539 int pixelHeight
= newHeight
;
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
)))
545 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
546 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
548 wxSize sz
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxSize(width
, newHeight
));
552 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
554 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
555 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
557 wxSize sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(width
, newHeight
));
562 if (height
!= pixelHeight
)
564 m_propertyWindow
->SetSize(width
, pixelHeight
);
565 resource
->SetSize(resource
->GetX(), resource
->GetY(), resource
->GetWidth(), newHeight
);
569 else if (name
== "id")
571 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
574 wxString value
= property
->GetValue().StringValue();
576 wxString strName
= value
.Before('=');
577 wxString strId
= value
.After('=');
578 int id
= atoi(strId
);
580 wxString oldSymbolName
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetSymbolForId(resource
->GetId());
581 int oldSymbolId
= resource
->GetId();
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.
591 if (strName
== oldSymbolName
&& id
!= oldSymbolId
)
593 wxASSERT( (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName
)) );
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
);
599 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName
);
600 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName
, id
);
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
)
607 wxASSERT( (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName
)) );
609 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName
);
611 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(strName
))
613 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName
, id
);
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.
621 if (strName
!= oldSymbolName
&& id
!= oldSymbolId
)
623 // Remove old symbol if it's not being used
624 if (!wxResourceManager::GetCurrentResourceManager()->IsSymbolUsed(resource
, oldSymbolId
) &&
625 !wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName
))
627 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName
);
630 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(strName
))
632 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName
, id
);
643 else if (name
== "border")
645 long borderStyle
= 0;
646 wxString val
= property
->GetValue().StringValue();
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
;
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
);
668 SetWindowStyle(m_propertyWindow
, borderStyle
, TRUE
);
670 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
671 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
678 void wxWindowPropertyInfo::GetPropertyNames(wxStringList
& names
)
687 if (!m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
689 names
.Add("fontPoints");
690 names
.Add("fontFamily");
691 names
.Add("fontStyle");
692 names
.Add("fontWeight");
693 names
.Add("fontUnderlined");
697 // Fill in the wxItemResource members to mirror the current window settings
698 bool wxWindowPropertyInfo::InstantiateResource(wxItemResource
*resource
)
700 // resource->SetType(m_propertyWindow->GetClassInfo()->GetClassName());
702 // resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
703 wxString
str(m_propertyWindow
->GetName());
704 resource
->SetName(str
);
706 #if 0 // Why did we comment this out? Possibly because of rounding errors
707 // that will build up as the conversion is repeatedly done.
708 // so only do the conversion when a resize happens.
711 if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
712 m_propertyWindow
->GetClientSize(&w
, &h
);
714 m_propertyWindow
->GetSize(&w
, &h
);
716 m_propertyWindow
->GetPosition(&x
, &y
);
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
)))
722 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
723 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
725 wxPoint pt
= m_propertyWindow
->GetParent()->ConvertPixelsToDialog(wxPoint(x
, y
));
727 wxSize sz
= m_propertyWindow
->GetParent()->ConvertPixelsToDialog(wxSize(w
, h
));
731 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
733 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
735 wxPoint pt
= m_propertyWindow
->ConvertPixelsToDialog(wxPoint(x
, y
));
737 wxSize sz
= m_propertyWindow
->ConvertPixelsToDialog(wxSize(w
, h
));
742 resource
->SetSize(x
, y
, w
, h
);
748 // Set the window style
749 void wxWindowPropertyInfo::SetWindowStyle(wxWindow
* win
, long style
, bool set
)
754 if ((win
->GetWindowStyleFlag() & style
) == style
)
758 win
->SetWindowStyleFlag(win
->GetWindowStyleFlag() - style
);
765 win
->SetWindowStyleFlag(win
->GetWindowStyleFlag() | style
);
774 wxProperty
*wxItemPropertyInfo::GetProperty(wxString
& name
)
776 wxControl
*itemWindow
= (wxControl
*)m_propertyWindow
;
777 wxFont
*font
= & itemWindow
->GetFont();
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");
785 return wxWindowPropertyInfo::GetProperty(name
);
788 bool wxItemPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
790 wxControl
*itemWindow
= (wxControl
*)m_propertyWindow
;
792 wxFont
*font
= & itemWindow
->GetFont();
794 if (font
&& (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" || name
== "fontUnderlined" ))
796 wxFont
*newFont
= SetFontProperty(name
, property
, font
);
798 itemWindow
->SetFont(* newFont
);
805 itemWindow
->SetLabel(property
->GetValue().StringValue());
809 return wxWindowPropertyInfo::SetProperty(name
, property
);
812 void wxItemPropertyInfo::GetPropertyNames(wxStringList
& names
)
814 wxWindowPropertyInfo::GetPropertyNames(names
);
816 names
.Add("fontPoints");
817 names
.Add("fontFamily");
818 names
.Add("fontStyle");
819 names
.Add("fontWeight");
820 names
.Add("fontUnderlined");
823 bool wxItemPropertyInfo::InstantiateResource(wxItemResource
*resource
)
825 wxWindowPropertyInfo::InstantiateResource(resource
);
827 wxControl
*item
= (wxControl
*)m_propertyWindow
;
828 wxString
str(item
->GetLabel());
829 resource
->SetTitle(str
);
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()));
842 wxProperty
*wxButtonPropertyInfo::GetProperty(wxString
& name
)
844 return wxItemPropertyInfo::GetProperty(name
);
847 bool wxButtonPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
849 return wxItemPropertyInfo::SetProperty(name
, property
);
852 void wxButtonPropertyInfo::GetPropertyNames(wxStringList
& names
)
854 wxItemPropertyInfo::GetPropertyNames(names
);
858 bool wxButtonPropertyInfo::InstantiateResource(wxItemResource
*resource
)
860 return wxItemPropertyInfo::InstantiateResource(resource
);
867 wxProperty
*wxBitmapButtonPropertyInfo::GetProperty(wxString
& name
)
869 wxBitmapButton
*button
= (wxBitmapButton
*)m_propertyWindow
;
870 if (name
== "bitmapFilename")
872 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(button
);
873 wxString
str("none.bmp");
877 str
= wxResourceManager::GetCurrentResourceManager()->FindBitmapFilenameForResource(resource
);
879 return new wxProperty("bitmapFilename", str
.GetData(), "string", new wxFilenameListValidator("Select a bitmap file", "*.bmp"));
882 return wxButtonPropertyInfo::GetProperty(name
);
885 bool wxBitmapButtonPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
887 wxBitmapButton
*button
= (wxBitmapButton
*)m_propertyWindow
;
888 if (name
== "bitmapFilename")
890 char *s
= property
->GetValue().StringValue();
891 if (s
&& wxFileExists(s
))
894 wxBitmap
*bitmap
= new wxBitmap(str
, wxBITMAP_TYPE_BMP
);
902 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(button
);
905 wxString
oldResource(resource
->GetValue4());
906 wxString resName
= wxResourceManager::GetCurrentResourceManager()->AddBitmapResource(str
);
907 resource
->SetValue4(resName
);
909 if (!oldResource
.IsNull())
910 wxResourceManager::GetCurrentResourceManager()->PossiblyDeleteBitmapResource(oldResource
);
913 button
->SetLabel(* bitmap
);
920 return wxButtonPropertyInfo::SetProperty(name
, property
);
923 void wxBitmapButtonPropertyInfo::GetPropertyNames(wxStringList
& names
)
925 wxButtonPropertyInfo::GetPropertyNames(names
);
926 names
.Delete("label");
927 names
.Add("bitmapFilename");
930 bool wxBitmapButtonPropertyInfo::InstantiateResource(wxItemResource
*resource
)
932 return wxItemPropertyInfo::InstantiateResource(resource
);
939 wxProperty
*wxStaticTextPropertyInfo::GetProperty(wxString
& name
)
941 return wxItemPropertyInfo::GetProperty(name
);
944 bool wxStaticTextPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
946 wxStaticText
* itemWindow
= (wxStaticText
*) m_propertyWindow
;
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());
954 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(itemWindow
);
956 m_propertyWindow
->GetSize(&w
, &h
);
957 // m_propertyWindow->GetPosition(&x, &y);
959 // We need to convert to dialog units if
960 // the parent resource specifies dialog units.
961 if (m_propertyWindow
->GetParent())
963 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
964 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
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
));
972 resource
->SetSize(resource
->GetX(), resource
->GetY(), w
, h
);
976 return wxItemPropertyInfo::SetProperty(name
, property
);
979 void wxStaticTextPropertyInfo::GetPropertyNames(wxStringList
& names
)
981 wxItemPropertyInfo::GetPropertyNames(names
);
985 bool wxStaticTextPropertyInfo::InstantiateResource(wxItemResource
*resource
)
987 return wxItemPropertyInfo::InstantiateResource(resource
);
994 wxProperty
*wxStaticBitmapPropertyInfo::GetProperty(wxString
& name
)
996 wxStaticBitmap
*message
= (wxStaticBitmap
*)m_propertyWindow
;
997 if (name
== "bitmapFilename")
999 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(message
);
1000 wxString
str("none.bmp");
1004 str
= wxResourceManager::GetCurrentResourceManager()->FindBitmapFilenameForResource(resource
);
1006 return new wxProperty("bitmapFilename", str
.GetData(), "string", new wxFilenameListValidator("Select a bitmap file", "*.bmp"));
1009 return wxItemPropertyInfo::GetProperty(name
);
1012 bool wxStaticBitmapPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1014 wxStaticBitmap
*message
= (wxStaticBitmap
*)m_propertyWindow
;
1015 if (name
== "bitmapFilename")
1017 char *s
= property
->GetValue().StringValue();
1018 if (s
&& wxFileExists(s
))
1022 wxBitmap
*bitmap
= new wxBitmap(str
, wxBITMAP_TYPE_BMP
);
1030 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(message
);
1033 wxString
oldResource(resource
->GetValue4());
1034 wxString resName
= wxResourceManager::GetCurrentResourceManager()->AddBitmapResource(str
);
1035 resource
->SetValue4(resName
);
1037 if (!oldResource
.IsNull())
1038 wxResourceManager::GetCurrentResourceManager()->PossiblyDeleteBitmapResource(oldResource
);
1041 message
->SetBitmap(* bitmap
);
1048 return wxItemPropertyInfo::SetProperty(name
, property
);
1051 void wxStaticBitmapPropertyInfo::GetPropertyNames(wxStringList
& names
)
1053 wxItemPropertyInfo::GetPropertyNames(names
);
1054 names
.Add("bitmapFilename");
1057 bool wxStaticBitmapPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1059 return wxItemPropertyInfo::InstantiateResource(resource
);
1066 wxProperty
*wxTextPropertyInfo::GetProperty(wxString
& name
)
1068 wxTextCtrl
*text
= (wxTextCtrl
*)m_propertyWindow
;
1069 if (name
== "value")
1070 return new wxProperty("value", text
->GetValue(), "string");
1071 else if (name
== "password")
1073 bool isPassword
= ((text
->GetWindowStyleFlag() & wxTE_PASSWORD
) == wxTE_PASSWORD
);
1074 return new wxProperty("password", isPassword
, "bool");
1076 else if (name
== "readonly")
1078 bool isReadOnly
= ((text
->GetWindowStyleFlag() & wxTE_READONLY
) == wxTE_READONLY
);
1079 return new wxProperty("readonly", isReadOnly
, "bool");
1082 return wxItemPropertyInfo::GetProperty(name
);
1085 bool wxTextPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1087 wxTextCtrl
*text
= (wxTextCtrl
*)m_propertyWindow
;
1088 if (name
== "value")
1090 text
->SetValue(property
->GetValue().StringValue());
1093 else if (name
== "password")
1095 long flag
= text
->GetWindowStyleFlag();
1096 if (property
->GetValue().BoolValue())
1098 if ((flag
& wxTE_PASSWORD
) != wxTE_PASSWORD
)
1099 flag
|= wxTE_PASSWORD
;
1103 if ((flag
& wxTE_PASSWORD
) == wxTE_PASSWORD
)
1104 flag
-= wxTE_PASSWORD
;
1106 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(text
);
1107 resource
->SetStyle(flag
);
1109 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(text
, this);
1112 else if (name
== "readonly")
1114 long flag
= text
->GetWindowStyleFlag();
1115 if (property
->GetValue().BoolValue())
1117 if ((flag
& wxTE_READONLY
) != wxTE_READONLY
)
1118 flag
|= wxTE_READONLY
;
1122 if ((flag
& wxTE_READONLY
) == wxTE_READONLY
)
1123 flag
-= wxTE_READONLY
;
1125 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(text
);
1126 resource
->SetStyle(flag
);
1128 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(text
, this);
1132 return wxItemPropertyInfo::SetProperty(name
, property
);
1135 void wxTextPropertyInfo::GetPropertyNames(wxStringList
& names
)
1137 wxItemPropertyInfo::GetPropertyNames(names
);
1139 names
.Add("readonly");
1140 names
.Add("password");
1143 bool wxTextPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1145 wxTextCtrl
*text
= (wxTextCtrl
*)m_propertyWindow
;
1146 wxString
str(text
->GetValue());
1147 resource
->SetValue4(str
);
1149 return wxItemPropertyInfo::InstantiateResource(resource
);
1156 wxProperty
*wxListBoxPropertyInfo::GetProperty(wxString
& name
)
1158 wxListBox
*listBox
= (wxListBox
*)m_propertyWindow
;
1159 if (name
== "values")
1161 wxStringList
*stringList
= new wxStringList
;
1163 for (i
= 0; i
< listBox
->Number(); i
++)
1164 stringList
->Add(listBox
->GetString(i
));
1166 return new wxProperty(name
, stringList
, "stringlist");
1168 else if (name
== "multiple")
1170 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(listBox
);
1174 char *mult
= "wxLB_SINGLE";
1176 if ((listBox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0)
1177 mult
= "wxLB_MULTIPLE";
1178 else if ((listBox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)
1179 mult
= "wxLB_EXTENDED";
1181 mult
= "wxLB_SINGLE";
1183 return new wxProperty("multiple", mult
, "string",
1184 new wxStringListValidator(new wxStringList("wxLB_SINGLE", "wxLB_MULTIPLE", "wxLB_EXTENDED",
1188 return wxItemPropertyInfo::GetProperty(name
);
1191 bool wxListBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1193 wxListBox
*listBox
= (wxListBox
*)m_propertyWindow
;
1194 if (name
== "values")
1197 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1200 char *s
= expr
->StringValue();
1203 expr
= expr
->GetNext();
1207 else if (name
== "multiple")
1209 SetWindowStyle(m_propertyWindow
, wxLB_SINGLE
, FALSE
);
1210 SetWindowStyle(m_propertyWindow
, wxLB_MULTIPLE
, FALSE
);
1211 SetWindowStyle(m_propertyWindow
, wxLB_EXTENDED
, FALSE
);
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
);
1219 SetWindowStyle(m_propertyWindow
, wxLB_SINGLE
, TRUE
);
1221 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(listBox
);
1223 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
1224 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(listBox
, this);
1228 return wxItemPropertyInfo::SetProperty(name
, property
);
1231 void wxListBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1233 wxItemPropertyInfo::GetPropertyNames(names
);
1234 names
.Add("values");
1235 names
.Add("multiple");
1238 bool wxListBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1240 wxListBox
*lbox
= (wxListBox
*)m_propertyWindow
;
1241 // This will be set for the wxItemResource on reading or in SetProperty
1242 // resource->SetValue1(lbox->GetSelectionMode());
1244 if (lbox
->Number() == 0)
1245 resource
->SetStringValues(NULL
);
1250 for (i
= 0; i
< lbox
->Number(); i
++)
1251 slist
.Add(lbox
->GetString(i
));
1253 resource
->SetStringValues(slist
);
1255 return wxItemPropertyInfo::InstantiateResource(resource
);
1262 wxProperty
*wxChoicePropertyInfo::GetProperty(wxString
& name
)
1264 wxChoice
*choice
= (wxChoice
*)m_propertyWindow
;
1265 if (name
== "values")
1267 wxStringList
* stringList
= new wxStringList
;
1269 for (i
= 0; i
< choice
->Number(); i
++)
1270 stringList
->Add(choice
->GetString(i
));
1272 return new wxProperty(name
, stringList
, "stringlist");
1275 return wxItemPropertyInfo::GetProperty(name
);
1278 bool wxChoicePropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1280 wxChoice
*choice
= (wxChoice
*)m_propertyWindow
;
1281 if (name
== "values")
1284 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1287 char *s
= expr
->StringValue();
1290 expr
= expr
->GetNext();
1292 if (choice
->Number() > 0)
1293 choice
->SetSelection(0);
1297 return wxItemPropertyInfo::SetProperty(name
, property
);
1300 void wxChoicePropertyInfo::GetPropertyNames(wxStringList
& names
)
1302 wxItemPropertyInfo::GetPropertyNames(names
);
1303 names
.Add("values");
1306 bool wxChoicePropertyInfo::InstantiateResource(wxItemResource
*resource
)
1308 wxChoice
*choice
= (wxChoice
*)m_propertyWindow
;
1310 if (choice
->Number() == 0)
1311 resource
->SetStringValues(NULL
);
1316 for (i
= 0; i
< choice
->Number(); i
++)
1317 slist
.Add(choice
->GetString(i
));
1319 resource
->SetStringValues(slist
);
1321 return wxItemPropertyInfo::InstantiateResource(resource
);
1328 wxProperty
*wxComboBoxPropertyInfo::GetProperty(wxString
& name
)
1330 wxComboBox
*choice
= (wxComboBox
*)m_propertyWindow
;
1331 if (name
== "values")
1333 wxStringList
*stringList
= new wxStringList
;
1335 for (i
= 0; i
< choice
->Number(); i
++)
1336 stringList
->Add(choice
->GetString(i
));
1338 return new wxProperty(name
, stringList
, "stringlist");
1340 else if (name
== "sort")
1342 bool sort
= ((m_propertyWindow
->GetWindowStyleFlag() & wxCB_SORT
) == wxCB_SORT
);
1343 return new wxProperty(name
, sort
, "bool");
1345 else if (name
== "style")
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";
1353 styleStr
= "dropdown";
1355 return new wxProperty(name
, styleStr
, "string",
1356 new wxStringListValidator(new wxStringList("simple", "dropdown", "readonly",
1360 return wxItemPropertyInfo::GetProperty(name
);
1363 bool wxComboBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1365 wxComboBox
*choice
= (wxComboBox
*)m_propertyWindow
;
1366 if (name
== "values")
1369 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1372 char *s
= expr
->StringValue();
1375 expr
= expr
->GetNext();
1377 if (choice
->Number() > 0)
1378 choice
->SetSelection(0);
1381 else if (name
== "sort")
1383 SetWindowStyle(m_propertyWindow
, wxCB_SORT
, property
->GetValue().BoolValue());
1385 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1386 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
1388 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(m_propertyWindow
, this);
1391 else if (name
== "style")
1393 SetWindowStyle(m_propertyWindow
, wxCB_SIMPLE
, FALSE
);
1394 SetWindowStyle(m_propertyWindow
, wxCB_DROPDOWN
, FALSE
);
1395 SetWindowStyle(m_propertyWindow
, wxCB_READONLY
, FALSE
);
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
);
1406 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1407 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
1409 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(m_propertyWindow
, this);
1414 return wxItemPropertyInfo::SetProperty(name
, property
);
1417 void wxComboBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1419 wxItemPropertyInfo::GetPropertyNames(names
);
1420 names
.Add("values");
1425 bool wxComboBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1427 wxComboBox
*choice
= (wxComboBox
*)m_propertyWindow
;
1429 if (choice
->Number() == 0)
1430 resource
->SetStringValues(NULL
);
1435 for (i
= 0; i
< choice
->Number(); i
++)
1436 slist
.Add(choice
->GetString(i
));
1438 resource
->SetStringValues(slist
);
1440 return wxItemPropertyInfo::InstantiateResource(resource
);
1447 wxProperty
*wxRadioBoxPropertyInfo::GetProperty(wxString
& name
)
1449 wxRadioBox
*radioBox
= (wxRadioBox
*)m_propertyWindow
;
1450 if (name
== "numberRowsOrCols")
1452 return new wxProperty("numberRowsOrCols", (long)radioBox
->GetNumberOfRowsOrCols(), "integer");
1454 if (name
== "orientation")
1457 if (m_propertyWindow
->GetWindowStyleFlag() & wxRA_SPECIFY_COLS
)
1458 orient
= "wxRA_SPECIFY_COLS";
1460 orient
= "wxRA_SPECIFY_ROWS";
1462 return new wxProperty("orientation", orient
, "string",
1463 new wxStringListValidator(new wxStringList("wxRA_SPECIFY_COLS", "wxRA_SPECIFY_ROWS",
1466 else if (name
== "values")
1468 wxStringList
*stringList
= new wxStringList
;
1470 for (i
= 0; i
< radioBox
->Number(); i
++)
1471 stringList
->Add(radioBox
->GetString(i
));
1473 return new wxProperty(name
, stringList
, "stringlist");
1475 return wxItemPropertyInfo::GetProperty(name
);
1478 bool wxRadioBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1480 wxRadioBox
*radioBox
= (wxRadioBox
*)m_propertyWindow
;
1481 if (name
== "numberRowsOrCols")
1483 wxResourceManager::GetCurrentResourceManager()->DeselectItemIfNecessary(radioBox
);
1485 radioBox
->SetNumberOfRowsOrCols((int)property
->GetValue().IntegerValue());
1486 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox
, this);
1489 else if (name
== "orientation")
1491 long windowStyle
= radioBox
->GetWindowStyleFlag();
1492 wxString
val(property
->GetValue().StringValue());
1493 if (val
== "wxRA_SPECIFY_COLS")
1495 if (windowStyle
& wxRA_SPECIFY_ROWS
)
1496 windowStyle
-= wxRA_SPECIFY_ROWS
;
1497 windowStyle
|= wxRA_SPECIFY_COLS
;
1501 if (windowStyle
& wxRA_SPECIFY_COLS
)
1502 windowStyle
-= wxRA_SPECIFY_COLS
;
1503 windowStyle
|= wxRA_SPECIFY_ROWS
;
1505 wxResourceManager::GetCurrentResourceManager()->DeselectItemIfNecessary(radioBox
);
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
1512 m_propertyWindow
= wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox
, this, FALSE
);
1515 else if (name
== "values")
1517 // Set property into *resource*, not wxRadioBox, and then recreate
1518 // the wxRadioBox. This is because we can't dynamically set the strings
1520 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1524 wxStringList stringList
;
1525 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1528 char *s
= expr
->StringValue();
1531 expr
= expr
->GetNext();
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
);
1538 else if (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" || name
== "fontUnderlined" )
1540 wxFont
*font
= & m_propertyWindow
->GetFont();
1543 wxFont
*newFont
= SetFontProperty(name
, property
, font
);
1546 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1549 resource
->SetFont(* newFont
);
1552 wxResourceManager::GetCurrentResourceManager()->DeselectItemIfNecessary(radioBox
);
1554 radioBox
->SetFont(* newFont
);
1555 radioBox
->SetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
1560 return wxItemPropertyInfo::SetProperty(name
, property
);
1563 void wxRadioBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1565 wxItemPropertyInfo::GetPropertyNames(names
);
1567 names
.Add("values");
1568 names
.Add("orientation");
1569 names
.Add("numberRowsOrCols");
1572 bool wxRadioBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1574 wxRadioBox
*rbox
= (wxRadioBox
*)m_propertyWindow
;
1575 // Take strings from resource instead
1578 if (rbox->Number() == 0)
1579 resource->SetStringValues(NULL);
1582 wxStringList *slist = new wxStringList;
1584 for (i = 0; i < rbox->Number(); i++)
1585 slist->Add(rbox->GetString(i));
1587 resource->SetStringValues(slist);
1590 resource
->SetValue1(rbox
->GetNumberOfRowsOrCols());
1591 return wxItemPropertyInfo::InstantiateResource(resource
);
1598 wxProperty
*wxGroupBoxPropertyInfo::GetProperty(wxString
& name
)
1600 return wxItemPropertyInfo::GetProperty(name
);
1603 bool wxGroupBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1605 return wxItemPropertyInfo::SetProperty(name
, property
);
1608 void wxGroupBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1610 wxItemPropertyInfo::GetPropertyNames(names
);
1614 bool wxGroupBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1616 return wxItemPropertyInfo::InstantiateResource(resource
);
1623 wxProperty
*wxCheckBoxPropertyInfo::GetProperty(wxString
& name
)
1625 wxCheckBox
*checkBox
= (wxCheckBox
*)m_propertyWindow
;
1626 if (name
== "value")
1627 return new wxProperty("value", checkBox
->GetValue(), "bool");
1629 return wxItemPropertyInfo::GetProperty(name
);
1632 bool wxCheckBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1634 wxCheckBox
*checkBox
= (wxCheckBox
*)m_propertyWindow
;
1635 if (name
== "value")
1637 checkBox
->SetValue((bool)property
->GetValue().BoolValue());
1641 return wxItemPropertyInfo::SetProperty(name
, property
);
1644 void wxCheckBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1646 wxItemPropertyInfo::GetPropertyNames(names
);
1651 bool wxCheckBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1653 wxCheckBox
*cbox
= (wxCheckBox
*)m_propertyWindow
;
1654 resource
->SetValue1(cbox
->GetValue());
1655 return wxItemPropertyInfo::InstantiateResource(resource
);
1662 wxProperty
*wxRadioButtonPropertyInfo::GetProperty(wxString
& name
)
1664 wxRadioButton
*checkBox
= (wxRadioButton
*)m_propertyWindow
;
1665 if (name
== "value")
1666 return new wxProperty("value", checkBox
->GetValue(), "bool");
1668 return wxItemPropertyInfo::GetProperty(name
);
1671 bool wxRadioButtonPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1673 wxRadioButton
*checkBox
= (wxRadioButton
*)m_propertyWindow
;
1674 if (name
== "value")
1676 checkBox
->SetValue((bool)property
->GetValue().BoolValue());
1680 return wxItemPropertyInfo::SetProperty(name
, property
);
1683 void wxRadioButtonPropertyInfo::GetPropertyNames(wxStringList
& names
)
1685 wxItemPropertyInfo::GetPropertyNames(names
);
1690 bool wxRadioButtonPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1692 wxRadioButton
*cbox
= (wxRadioButton
*)m_propertyWindow
;
1693 resource
->SetValue1(cbox
->GetValue());
1694 return wxItemPropertyInfo::InstantiateResource(resource
);
1701 wxProperty
*wxSliderPropertyInfo::GetProperty(wxString
& name
)
1703 wxSlider
*slider
= (wxSlider
*)m_propertyWindow
;
1704 if (name
== "value")
1705 return new wxProperty("value", (long)slider
->GetValue(), "integer");
1706 else if (name
== "orientation")
1709 if (m_propertyWindow
->GetWindowStyleFlag() & wxHORIZONTAL
)
1710 pos
= "wxHORIZONTAL";
1714 return new wxProperty("orientation", pos
, "string",
1715 new wxStringListValidator(new wxStringList("wxHORIZONTAL", "wxVERTICAL",
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");
1723 return wxItemPropertyInfo::GetProperty(name
);
1726 bool wxSliderPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1728 wxSlider
*slider
= (wxSlider
*)m_propertyWindow
;
1729 if (name
== "value")
1731 slider
->SetValue((int)property
->GetValue().IntegerValue());
1734 else if (name
== "orientation")
1736 long windowStyle
= slider
->GetWindowStyleFlag();
1737 long oldWindowStyle
= windowStyle
;
1738 wxString
val(property
->GetValue().StringValue());
1739 if (val
== "wxHORIZONTAL")
1741 if (windowStyle
& wxVERTICAL
)
1742 windowStyle
-= wxVERTICAL
;
1743 windowStyle
|= wxHORIZONTAL
;
1747 if (windowStyle
& wxHORIZONTAL
)
1748 windowStyle
-= wxHORIZONTAL
;
1749 windowStyle
|= wxVERTICAL
;
1752 if (oldWindowStyle
== windowStyle
)
1755 slider
->SetWindowStyleFlag(windowStyle
);
1757 // If the window style has changed, we swap the width and height parameters.
1759 slider
->GetSize(&w
, &h
);
1761 slider
= (wxSlider
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(slider
, this);
1762 slider
->SetSize(-1, -1, h
, w
);
1763 m_propertyWindow
= slider
;
1767 else if (name
== "minValue")
1769 slider
->SetRange((int)property
->GetValue().IntegerValue(), slider
->GetMax());
1772 else if (name
== "maxValue")
1774 slider
->SetRange(slider
->GetMin(), (int)property
->GetValue().IntegerValue());
1778 return wxItemPropertyInfo::SetProperty(name
, property
);
1781 void wxSliderPropertyInfo::GetPropertyNames(wxStringList
& names
)
1783 wxItemPropertyInfo::GetPropertyNames(names
);
1785 names
.Add("orientation");
1786 names
.Add("minValue");
1787 names
.Add("maxValue");
1790 bool wxSliderPropertyInfo::InstantiateResource(wxItemResource
*resource
)
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
);
1803 wxProperty
*wxGaugePropertyInfo::GetProperty(wxString
& name
)
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");
1811 return wxItemPropertyInfo::GetProperty(name
);
1814 bool wxGaugePropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1816 wxGauge
*gauge
= (wxGauge
*)m_propertyWindow
;
1817 if (name
== "value")
1819 gauge
->SetValue((int)property
->GetValue().IntegerValue());
1822 else if (name
== "maxValue")
1824 gauge
->SetRange((int)property
->GetValue().IntegerValue());
1828 return wxItemPropertyInfo::SetProperty(name
, property
);
1831 void wxGaugePropertyInfo::GetPropertyNames(wxStringList
& names
)
1833 wxItemPropertyInfo::GetPropertyNames(names
);
1835 names
.Add("maxValue");
1838 bool wxGaugePropertyInfo::InstantiateResource(wxItemResource
*resource
)
1840 wxGauge
*gauge
= (wxGauge
*)m_propertyWindow
;
1841 resource
->SetValue1(gauge
->GetValue());
1842 resource
->SetValue2(gauge
->GetRange());
1843 return wxItemPropertyInfo::InstantiateResource(resource
);
1850 wxProperty
*wxScrollBarPropertyInfo::GetProperty(wxString
& name
)
1852 wxScrollBar
*scrollBar
= (wxScrollBar
*)m_propertyWindow
;
1853 if (name
== "thumbPosition")
1854 return new wxProperty("value", (long)scrollBar
->GetThumbPosition(), "integer");
1855 else if (name
== "orientation")
1858 if (m_propertyWindow
->GetWindowStyleFlag() & wxHORIZONTAL
)
1859 pos
= "wxHORIZONTAL";
1863 return new wxProperty("orientation", pos
, "string",
1864 new wxStringListValidator(new wxStringList("wxHORIZONTAL", "wxVERTICAL",
1867 else if (name
== "pageSize")
1869 int pageLength
= scrollBar
->GetPageSize();
1871 return new wxProperty("pageSize", (long)pageLength
, "integer");
1873 else if (name
== "thumbSize")
1875 int thumbSize
= scrollBar
->GetThumbSize();
1877 return new wxProperty("thumbSize", (long)thumbSize
, "integer");
1879 else if (name
== "range")
1881 int range
= scrollBar
->GetRange();
1882 return new wxProperty("range", (long)range
, "integer");
1885 return wxItemPropertyInfo::GetProperty(name
);
1888 bool wxScrollBarPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1890 wxScrollBar
*scrollBar
= (wxScrollBar
*)m_propertyWindow
;
1891 if (name
== "thumbPosition")
1893 scrollBar
->SetThumbPosition((int)property
->GetValue().IntegerValue());
1896 else if (name
== "orientation")
1898 long windowStyle
= scrollBar
->GetWindowStyleFlag();
1899 long oldWindowStyle
= windowStyle
;
1900 wxString
val(property
->GetValue().StringValue());
1901 if (val
== "wxHORIZONTAL")
1903 if (windowStyle
& wxVERTICAL
)
1904 windowStyle
-= wxVERTICAL
;
1905 windowStyle
|= wxHORIZONTAL
;
1909 if (windowStyle
& wxHORIZONTAL
)
1910 windowStyle
-= wxHORIZONTAL
;
1911 windowStyle
|= wxVERTICAL
;
1914 if (oldWindowStyle
== windowStyle
)
1917 scrollBar
->SetWindowStyleFlag(windowStyle
);
1919 // If the window style has changed, we swap the width and height parameters.
1921 // scrollBar->GetSize(&w, &h);
1922 wxItemResource
*item
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(scrollBar
);
1924 item
->SetSize(item
->GetX(), item
->GetY(), item
->GetHeight(), item
->GetWidth());
1925 item
->SetStyle(windowStyle
);
1928 scrollBar
= (wxScrollBar
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(scrollBar
, this);
1929 m_propertyWindow
= scrollBar
;
1933 else if (name
== "pageSize")
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());
1941 else if (name
== "thumbSize")
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
);
1949 else if (name
== "range")
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
);
1958 return wxItemPropertyInfo::SetProperty(name
, property
);
1961 void wxScrollBarPropertyInfo::GetPropertyNames(wxStringList
& names
)
1963 wxItemPropertyInfo::GetPropertyNames(names
);
1964 names
.Add("orientation");
1965 names
.Add("thumbPosition");
1966 names
.Add("thumbSize");
1967 names
.Add("pageSize");
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");
1978 bool wxScrollBarPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1980 wxScrollBar
*sbar
= (wxScrollBar
*)m_propertyWindow
;
1982 int thumbPosition
= sbar
->GetThumbPosition();
1983 int thumbSize
= sbar
->GetThumbSize();
1984 int pageSize
= sbar
->GetPageSize();
1985 int range
= sbar
->GetRange();
1987 resource
->SetValue1(thumbPosition
);
1988 resource
->SetValue2(thumbSize
);
1989 resource
->SetValue3(range
);
1990 resource
->SetValue5(pageSize
);
1992 return wxItemPropertyInfo::InstantiateResource(resource
);
1999 wxProperty
*wxPanelPropertyInfo::GetProperty(wxString
& name
)
2001 wxPanel
*panelWindow
= (wxPanel
*)m_propertyWindow
;
2004 wxFont *labelFont = panelWindow->GetLabelFont();
2005 wxFont *buttonFont = panelWindow->GetButtonFont();
2007 if (name == "labelFontPoints" || name == "labelFontFamily" || name == "labelFontStyle" || name == "labelFontWeight" ||
2008 name == "labelFontUnderlined")
2009 return GetFontProperty(name, labelFont);
2010 else if (name == "buttonFontPoints" || name == "buttonFontFamily" || name == "buttonFontStyle" || name == "buttonFontWeight" ||
2011 name == "buttonFontUnderlined")
2012 return GetFontProperty(name, buttonFont);
2018 if (panelWindow
->GetWindowStyleFlag() & wxNO_3D
)
2021 userColours
= FALSE
;
2023 return new wxProperty(name
, (bool)userColours
, "bool");
2025 else if (name
== "backgroundColour")
2027 wxColour
col(panelWindow
->GetBackgroundColour());
2029 wxDecToHex(col
.Red(), buf
);
2030 wxDecToHex(col
.Green(), buf
+2);
2031 wxDecToHex(col
.Blue(), buf
+4);
2033 return new wxProperty(name
, buf
, "string", new wxColourListValidator
);
2035 else if (name
== "title")
2037 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2039 return new wxProperty(name
, resource
->GetTitle(), "string");
2041 return new wxProperty(name
, "Could not get title", "string");
2043 else if (name
== "caption")
2045 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxCAPTION
) == wxCAPTION
),
2048 else if (name
== "systemMenu")
2050 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxSYSTEM_MENU
) == wxSYSTEM_MENU
),
2053 else if (name
== "thickFrame")
2055 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxTHICK_FRAME
) == wxTHICK_FRAME
),
2058 else if (name
== "modal")
2060 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxDIALOG_MODAL
) == wxDIALOG_MODAL
),
2063 else if (name
== "useSystemDefaults")
2065 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2066 return new wxProperty(name
, ((resource
->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS
) == wxRESOURCE_USE_DEFAULTS
),
2069 else if (name
== "useDialogUnits")
2071 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2072 return new wxProperty(name
, ((resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) == wxRESOURCE_DIALOG_UNITS
),
2076 return wxWindowPropertyInfo::GetProperty(name
);
2079 bool wxPanelPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
2081 wxPanel
*panelWindow
= (wxPanel
*)m_propertyWindow
;
2083 wxFont *labelFont = panelWindow->GetLabelFont();
2084 wxFont *buttonFont = panelWindow->GetButtonFont();
2086 if (labelFont && (name == "labelFontPoints" || name == "labelFontFamily" || name == "labelFontStyle" || name == "labelFontWeight" || name == "labelFontUnderlined" ))
2088 wxFont *newFont = SetFontProperty(name, property, labelFont);
2090 panelWindow->SetLabelFont(* newFont);
2093 else if (buttonFont && (name == "buttonFontPoints" || name == "buttonFontFamily" || name == "buttonFontStyle" || name == "buttonFontWeight" || name == "buttonFontUnderlined" ))
2095 wxFont *newFont = SetFontProperty(name, property, buttonFont);
2097 panelWindow->SetButtonFont(* newFont);
2104 bool userColours
= property
->GetValue().BoolValue();
2108 if ((panelWindow
->GetWindowStyleFlag() & wxNO_3D
) != wxNO_3D
)
2109 panelWindow
->SetWindowStyleFlag(panelWindow
->GetWindowStyleFlag() | wxNO_3D
);
2113 if ((panelWindow
->GetWindowStyleFlag() & wxNO_3D
) == wxNO_3D
)
2114 panelWindow
->SetWindowStyleFlag(panelWindow
->GetWindowStyleFlag() - wxNO_3D
);
2116 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2117 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2119 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2122 else if (name
== "backgroundColour")
2124 char *hex
= property
->GetValue().StringValue();
2125 int r
= wxHexToDec(hex
);
2126 int g
= wxHexToDec(hex
+2);
2127 int b
= wxHexToDec(hex
+4);
2129 wxColour
col(r
,g
,b
);
2130 panelWindow
->SetBackgroundColour(col
);
2131 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2132 m_propertyWindow
= panelWindow
;
2135 else if (name
== "title")
2137 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2140 resource
->SetTitle(property
->GetValue().StringValue());
2146 else if (name
== "caption")
2148 SetWindowStyle(panelWindow
, wxCAPTION
, property
->GetValue().BoolValue());
2150 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2151 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2154 else if (name
== "thickFrame")
2156 SetWindowStyle(panelWindow
, wxTHICK_FRAME
, property
->GetValue().BoolValue());
2158 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2159 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2162 else if (name
== "systemMenu")
2164 SetWindowStyle(panelWindow
, wxSYSTEM_MENU
, property
->GetValue().BoolValue());
2166 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2167 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2170 else if (name
== "modal")
2172 SetWindowStyle(panelWindow
, wxDIALOG_MODAL
, property
->GetValue().BoolValue());
2174 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2175 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2178 else if (name
== "useSystemDefaults")
2180 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2181 bool useDefaults
= property
->GetValue().BoolValue();
2182 long style
= resource
->GetResourceStyle();
2185 if ((style
& wxRESOURCE_USE_DEFAULTS
) == 0)
2186 style
|= wxRESOURCE_USE_DEFAULTS
;
2190 if ((style
& wxRESOURCE_USE_DEFAULTS
) != 0)
2191 style
-= wxRESOURCE_USE_DEFAULTS
;
2193 resource
->SetResourceStyle(style
);
2194 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2197 else if (name
== "useDialogUnits")
2199 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2200 bool useDialogUnits
= property
->GetValue().BoolValue();
2201 long style
= resource
->GetResourceStyle();
2204 if ((style
& wxRESOURCE_DIALOG_UNITS
) == 0)
2206 style
|= wxRESOURCE_DIALOG_UNITS
;
2207 ConvertDialogUnits(TRUE
); // Convert all resources
2212 if ((style
& wxRESOURCE_DIALOG_UNITS
) != 0)
2214 style
-= wxRESOURCE_DIALOG_UNITS
;
2215 ConvertDialogUnits(FALSE
); // Convert all resources
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.
2225 return wxWindowPropertyInfo::SetProperty(name
, property
);
2228 void wxPanelPropertyInfo::GetPropertyNames(wxStringList
& names
)
2230 wxWindowPropertyInfo::GetPropertyNames(names
);
2234 names
.Add("backgroundColour");
2235 names
.Add("caption");
2236 names
.Add("systemMenu");
2237 names
.Add("thickFrame");
2238 names
.Add("useSystemDefaults");
2239 names
.Add("useDialogUnits");
2243 bool wxPanelPropertyInfo::InstantiateResource(wxItemResource
*resource
)
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()));
2251 resource
->SetBackgroundColour(wxColour(panel
->GetBackgroundColour()));
2253 return wxWindowPropertyInfo::InstantiateResource(resource
);
2256 // Convert this dialog, and its children, to or from dialog units
2257 void wxPanelPropertyInfo::ConvertDialogUnits(bool toDialogUnits
)
2259 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
2265 sz
= m_propertyWindow
->ConvertPixelsToDialog(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2266 pt
= m_propertyWindow
->ConvertPixelsToDialog(wxPoint(resource
->GetX(), resource
->GetY()));
2270 sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2271 pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(resource
->GetX(), resource
->GetY()));
2273 resource
->SetSize(pt
.x
, pt
.y
, sz
.x
, sz
.y
);
2275 wxNode
* node
= m_propertyWindow
->GetChildren().First();
2278 wxWindow
* child
= (wxWindow
*) node
->Data();
2279 if (child
->IsKindOf(CLASSINFO(wxControl
)))
2281 resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(child
);
2284 sz
= m_propertyWindow
->ConvertPixelsToDialog(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2285 pt
= m_propertyWindow
->ConvertPixelsToDialog(wxPoint(resource
->GetX(), resource
->GetY()));
2289 sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2290 pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(resource
->GetX(), resource
->GetY()));
2292 resource
->SetSize(pt
.x
, pt
.y
, sz
.x
, sz
.y
);
2294 node
= node
->Next();
2303 wxProperty
*wxDialogPropertyInfo::GetProperty(wxString
& name
)
2305 wxDialog
*dialogWindow
= (wxDialog
*)m_propertyWindow
;
2306 if (name
== "modal")
2308 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(dialogWindow
);
2312 bool modal
= (resource
->GetValue1() != 0);
2313 return new wxProperty(name
, modal
, "bool");
2316 return wxPanelPropertyInfo::GetProperty(name
);
2319 bool wxDialogPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
2321 wxDialog
*dialogWindow
= (wxDialog
*)m_propertyWindow
;
2323 if (name
== "modal")
2325 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(dialogWindow
);
2329 resource
->SetValue1(property
->GetValue().BoolValue());
2333 return wxPanelPropertyInfo::SetProperty(name
, property
);
2336 void wxDialogPropertyInfo::GetPropertyNames(wxStringList
& names
)
2338 wxPanelPropertyInfo::GetPropertyNames(names
);
2343 bool wxDialogPropertyInfo::InstantiateResource(wxItemResource
*resource
)
2345 wxDialog
*dialog
= (wxDialog
*)m_propertyWindow
;
2346 wxString
str(dialog
->GetTitle());
2347 resource
->SetTitle(str
);
2349 return wxPanelPropertyInfo::InstantiateResource(resource
);
2357 int wxStringToFontWeight(wxString
& val
)
2359 if (val
== "wxBOLD") return wxBOLD
;
2360 else if (val
== "wxLIGHT") return wxLIGHT
;
2361 else return wxNORMAL
;
2364 int wxStringToFontStyle(wxString
& val
)
2366 if (val
== "wxITALIC") return wxITALIC
;
2367 else if (val
== "wxSLANT") return wxSLANT
;
2368 else return wxNORMAL
;
2371 int wxStringToFontFamily(wxString
& val
)
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
;
2382 /// Resource symbol validator
2384 IMPLEMENT_DYNAMIC_CLASS(wxResourceSymbolValidator
, wxPropertyListValidator
)
2386 wxResourceSymbolValidator::wxResourceSymbolValidator(long flags
):
2387 wxPropertyListValidator(flags
)
2391 wxResourceSymbolValidator::~wxResourceSymbolValidator(void)
2395 bool wxResourceSymbolValidator::OnCheckValue(wxProperty
*WXUNUSED(property
), wxPropertyListView
*WXUNUSED(view
), wxWindow
*WXUNUSED(parentWindow
))
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
2403 bool wxResourceSymbolValidator::OnRetrieveValue(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*WXUNUSED(parentWindow
))
2405 if (!view
->GetValueText())
2407 wxString
value(view
->GetValueText()->GetValue());
2408 property
->GetValue() = value
;
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
2415 bool wxResourceSymbolValidator::OnDisplayValue(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*WXUNUSED(parentWindow
))
2417 if (!view
->GetValueText())
2419 wxString
str(property
->GetValue().GetStringRepresentation());
2420 view
->GetValueText()->SetValue(str
);
2424 // Called when the property is double clicked. Extra functionality can be provided,
2425 // cycling through possible values.
2426 bool wxResourceSymbolValidator::OnDoubleClick(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*parentWindow
)
2428 if (!view
->GetValueText())
2430 OnEdit(property
, view
, parentWindow
);
2434 bool wxResourceSymbolValidator::OnPrepareControls(wxProperty
*WXUNUSED(property
), wxPropertyListView
*view
, wxWindow
*WXUNUSED(parentWindow
))
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
);
2447 void wxResourceSymbolValidator::OnEdit(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*parentWindow
)
2449 if (!view
->GetValueText())
2452 wxResourceSymbolDialog
* dialog
= new wxResourceSymbolDialog(parentWindow
, -1, "Edit Symbol");
2454 // Split name/id pair e.g. "IDC_TEXT=123"
2455 wxString
value(property
->GetValue().StringValue());
2457 wxString strName
= value
.Before('=');
2458 wxString strId
= value
.After('=');
2460 dialog
->SetSymbol(strName
);
2461 dialog
->SetId(atoi(strId
));
2465 if (dialog
->ShowModal() == wxID_OK
)
2467 wxString
symbolName(dialog
->GetSymbol());
2468 long id
= dialog
->GetId();
2471 str
.Printf("%d", id
);
2472 property
->GetValue() = symbolName
+ wxString("=") + str
;
2474 view
->DisplayProperty(property
);
2475 view
->UpdatePropertyDisplayInList(property
);
2476 view
->OnPropertyChanged(property
);
2478 // Moved from the 'if' branch on suggestion of Roman Pavlov
2482 BEGIN_EVENT_TABLE(wxResourceSymbolDialog
, wxDialog
)
2483 EVT_BUTTON(wxID_OK
, wxResourceSymbolDialog::OnOK
)
2484 EVT_COMBOBOX(ID_SYMBOLNAME_COMBOBOX
, wxResourceSymbolDialog::OnComboBoxSelect
)
2485 EVT_TEXT(ID_SYMBOLNAME_COMBOBOX
, wxResourceSymbolDialog::OnSymbolNameUpdate
)
2488 wxResourceSymbolDialog::wxResourceSymbolDialog(wxWindow
* parent
, const wxWindowID id
, const wxString
& title
, const wxPoint
& pos
,
2489 const wxSize
& size
, long style
):
2490 wxDialog(parent
, id
, title
, pos
, size
, style
)
2495 (void) new wxStaticText(this, -1, "Name: ", wxPoint(x
, y
));
2499 m_nameCtrl
= new wxComboBox(this, ID_SYMBOLNAME_COMBOBOX
, "",
2500 wxPoint(x
, y
), wxSize(200, -1), 0, NULL
, wxCB_DROPDOWN
|wxCB_SORT
);
2505 (void) new wxStaticText(this, -1, "Id: ", wxPoint(x
, y
));
2509 m_idCtrl
= new wxTextCtrl(this, ID_SYMBOLID_TEXTCTRL
, "",
2510 wxPoint(x
, y
), wxSize(200, -1));
2514 (void) new wxButton(this, wxID_OK
, "OK", wxPoint(x
, y
), wxSize(80, -1));
2517 (void) new wxButton(this, wxID_CANCEL
, "Cancel", wxPoint(x
, y
), wxSize(80, -1));
2523 void wxResourceSymbolDialog::Init()
2526 defaultId
.Printf("%ld", m_symbolId
);
2528 m_nameCtrl
->SetValue(m_symbolName
);
2529 m_idCtrl
->SetValue(defaultId
);
2531 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().FillComboBox(m_nameCtrl
);
2534 void wxResourceSymbolDialog::OnOK(wxCommandEvent
& event
)
2538 wxDialog::OnOK(event
);
2542 bool wxResourceSymbolDialog::CheckValues()
2544 wxString
nameStr(m_nameCtrl
->GetValue());
2545 wxString
idStr(m_idCtrl
->GetValue());
2546 int id
= atoi(idStr
);
2550 wxMessageBox("Identifier cannot be missing or zero", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2555 wxMessageBox("Please enter a symbol name", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2558 if (nameStr
.Contains(" "))
2560 wxMessageBox("Symbol name cannot contain spaces.", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2563 if (nameStr
.Contains("="))
2565 wxMessageBox("Symbol name cannot contain =.", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2568 if (nameStr
.IsNumber())
2570 wxMessageBox("Symbol name cannot be a number.", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2573 // TODO: other checks on the name syntax.
2575 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(nameStr
))
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.
2583 if (nameStr
== GetSymbol() && id
!= GetId())
2585 // It's OK to change the id. But we'll need to change all matching ids in all resources,
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())
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.
2599 if (nameStr
!= GetSymbol() && id
!= GetId())
2601 if (!wxResourceManager::GetCurrentResourceManager()->IsIdentifierOK(nameStr
, id
))
2603 wxMessageBox("This integer id is already being used under a different name.\nPlease choose another.",
2604 "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2617 void wxResourceSymbolDialog::OnComboBoxSelect(wxCommandEvent
& WXUNUSED(event
))
2619 wxString
str(m_nameCtrl
->GetStringSelection());
2620 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(str
))
2622 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2624 str2
.Printf("%d", id
);
2625 m_idCtrl
->SetValue(str2
);
2626 m_idCtrl
->Enable(FALSE
);
2630 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(str
))
2632 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2634 str2
.Printf("%d", id
);
2635 m_idCtrl
->SetValue(str2
);
2637 m_idCtrl
->Enable(TRUE
);
2641 void wxResourceSymbolDialog::OnSymbolNameUpdate(wxCommandEvent
& WXUNUSED(event
))
2643 wxString
str(m_nameCtrl
->GetValue());
2644 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(str
))
2646 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2648 str2
.Printf("%d", id
);
2649 m_idCtrl
->SetValue(str2
);
2650 m_idCtrl
->Enable(FALSE
);
2654 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(str
))
2656 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2658 str2
.Printf("%d", id
);
2659 m_idCtrl
->SetValue(str2
);
2661 m_idCtrl
->Enable(TRUE
);