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"
33 #if defined(__WXMSW__) && !defined(__GNUWIN32__)
36 #include <strstream.h>
49 // Causes immediate feedback.
50 void wxResourcePropertyListView::OnPropertyChanged(wxProperty
*property
)
52 // Sets the value of the property back into the actual object,
53 // IF the property value was modified.
54 if (property
->GetValue().GetModified())
56 m_propertyInfo
->SetProperty(property
->GetName(), property
);
57 property
->GetValue().SetModified(FALSE
);
58 wxResourceManager::GetCurrentResourceManager()->Modify(TRUE
);
62 bool wxResourcePropertyListView::OnClose(void)
65 GetManagedWindow()->GetSize(& w
, & h
);
66 GetManagedWindow()->GetPosition(& x
, & y
);
68 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().width
= w
;
69 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().height
= h
;
70 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().x
= x
;
71 wxResourceManager::GetCurrentResourceManager()->GetPropertyWindowSize().y
= y
;
73 return wxPropertyListView::OnClose();
76 wxWindow
*wxPropertyInfo::sm_propertyWindow
;
79 * wxDialogEditorPropertyListDialog
83 wxDialogEditorPropertyListDialog::wxDialogEditorPropertyListDialog(wxPropertyListView *v, wxWindow *parent, const wxString& title,
84 const wxPoint& pos, const wxSize& size,
85 long style, const wxString& name):
86 wxPropertyListDialog(v, parent, title, pos, size, style, name)
92 wxDialogEditorPropertyListDialog::~wxDialogEditorPropertyListDialog()
96 wxPropertyInfo::sm_propertyWindow = NULL;
100 wxDialogEditorPropertyListFrame::wxDialogEditorPropertyListFrame(wxPropertyListView
*v
, wxFrame
*parent
, const wxString
& title
,
101 const wxPoint
& pos
, const wxSize
& size
,
102 long style
, const wxString
& name
):
103 wxPropertyListFrame(v
, parent
, title
, pos
, size
, style
, name
)
109 wxDialogEditorPropertyListFrame::~wxDialogEditorPropertyListFrame()
113 wxPropertyInfo::sm_propertyWindow
= NULL
;
120 // Edit the information represented by this object, whatever that
122 bool wxPropertyInfo::Edit(wxWindow
*WXUNUSED(parent
), const wxString
& title
)
124 if (sm_propertyWindow
)
126 sm_propertyWindow
->Raise();
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());
186 * wxWindowPropertyInfo
189 wxWindowPropertyInfo::wxWindowPropertyInfo(wxWindow
*win
, wxItemResource
*res
)
191 m_propertyWindow
= win
;
192 m_propertyResource
= res
;
195 wxWindowPropertyInfo::~wxWindowPropertyInfo(void)
199 wxProperty
*wxWindowPropertyInfo::GetFontProperty(wxString
& name
, wxFont
*font
)
204 if (name
.Contains("Points"))
205 return new wxProperty(name
, (long)font
->GetPointSize(), "integer", new wxIntegerListValidator(1, 100));
206 else if (name
.Contains("Family"))
207 return new wxProperty(name
, font
->GetFamilyString(), "string",
208 new wxStringListValidator(new wxStringList("wxDECORATIVE", "wxROMAN", "wxSCRIPT", "wxSWISS", "wxMODERN",
210 else if (name
.Contains("Style"))
211 return new wxProperty(name
, font
->GetStyleString(), "string",
212 new wxStringListValidator(new wxStringList("wxNORMAL", "wxITALIC", "wxSLANT", NULL
)));
213 else if (name
.Contains("Weight"))
214 return new wxProperty(name
, font
->GetWeightString(), "string",
215 new wxStringListValidator(new wxStringList("wxNORMAL", "wxBOLD", "wxLIGHT", NULL
)));
216 else if (name
.Contains("Underlined"))
217 return new wxProperty(name
, (bool)font
->GetUnderlined(), "bool");
222 wxFont
*wxWindowPropertyInfo::SetFontProperty(wxString
& name
, wxProperty
*property
, wxFont
*font
)
225 int fontFamily
= wxMODERN
;
226 int fontStyle
= wxNORMAL
;
227 int fontWeight
= wxNORMAL
;
228 bool fontUnderlined
= FALSE
;
230 if (name
.Contains("Points"))
232 pointSize
= (int)property
->GetValue().IntegerValue();
233 if (font
&& (pointSize
== font
->GetPointSize()))
234 return NULL
; // No change
236 else if (font
) pointSize
= font
->GetPointSize();
238 if (name
.Contains("Family"))
240 wxString val
= property
->GetValue().StringValue();
241 fontFamily
= wxStringToFontFamily(val
);
243 if (font
&& (fontFamily
== font
->GetFamily()))
244 return NULL
; // No change
246 else if (font
) fontFamily
= font
->GetFamily();
248 if (name
.Contains("Style"))
250 wxString val
= property
->GetValue().StringValue();
251 fontStyle
= wxStringToFontStyle(val
);
253 if (font
&& (fontStyle
== font
->GetStyle()))
254 return NULL
; // No change
256 else if (font
) fontStyle
= font
->GetStyle();
257 if (name
.Contains("Weight"))
259 wxString val
= property
->GetValue().StringValue();
260 fontWeight
= wxStringToFontWeight(val
);
262 if (font
&& (fontWeight
== font
->GetWeight()))
263 return NULL
; // No change
265 else if (font
) fontWeight
= font
->GetWeight();
267 if (name
.Contains("Underlined"))
269 fontUnderlined
= property
->GetValue().BoolValue();
271 if (font
&& (fontUnderlined
== font
->GetUnderlined()))
272 return NULL
; // No change
274 else if (font
) fontUnderlined
= font
->GetUnderlined();
276 wxFont
*newFont
= wxTheFontList
->FindOrCreateFont(pointSize
, fontFamily
, fontStyle
, fontWeight
, fontUnderlined
);
285 wxProperty
*wxWindowPropertyInfo::GetProperty(wxString
& name
)
287 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
289 wxFont
*font
= & m_propertyWindow
->GetFont();
290 if (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" ||
291 name
== "fontUnderlined")
292 return GetFontProperty(name
, font
);
293 else if (name
== "name")
294 return new wxProperty("name", m_propertyWindow
->GetName(), "string");
295 else if (name
== "title")
296 return new wxProperty("title", m_propertyWindow
->GetTitle(), "string");
297 else if (name
== "x")
299 return new wxProperty("x", (long)resource
->GetX(), "integer");
301 else if (name
== "y")
303 return new wxProperty("y", (long)resource
->GetY(), "integer");
305 else if (name
== "width")
307 return new wxProperty("width", (long)resource
->GetWidth(), "integer");
309 else if (name
== "height")
311 return new wxProperty("height", (long)resource
->GetHeight(), "integer");
313 else if (name
== "id")
315 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
318 int id
= resource
->GetId();
320 idStr
.Printf("%d", id
);
321 wxString symbolName
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetSymbolForId(id
);
324 // symbolName is now e.g. "ID_PANEL21=105"
325 return new wxProperty("id", symbolName
, "window_id");
330 else if (name
== "border")
333 if (m_propertyWindow
->GetWindowStyleFlag() & wxSIMPLE_BORDER
)
334 border
= "wxSIMPLE_BORDER";
335 else if (m_propertyWindow
->GetWindowStyleFlag() & wxRAISED_BORDER
)
336 border
= "wxRAISED_BORDER";
337 else if (m_propertyWindow
->GetWindowStyleFlag() & wxSUNKEN_BORDER
)
338 border
= "wxSUNKEN_BORDER";
339 else if (m_propertyWindow
->GetWindowStyleFlag() & wxDOUBLE_BORDER
)
340 border
= "wxDOUBLE_BORDER";
341 else if (m_propertyWindow
->GetWindowStyleFlag() & wxSTATIC_BORDER
)
342 border
= "wxSTATIC_BORDER";
344 border
= "wxNO_BORDER";
346 return new wxProperty("border", border
, "string",
347 new wxStringListValidator(new wxStringList("wxSIMPLE_BORDER", "wxRAISED_BORDER",
348 "wxSUNKEN_BORDER", "wxDOUBLE_BORDER", "wxSTATIC_BORDER", "wxNO_BORDER", NULL
)));
354 bool wxWindowPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
356 wxFont
*font
= & m_propertyWindow
->GetFont();
357 if (font
&& (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" || name
== "fontUnderlined" ))
359 wxFont
*newFont
= SetFontProperty(name
, property
, font
);
361 m_propertyWindow
->SetFont(* newFont
);
364 else if (name
== "name")
366 // Remove old name from resource table, if it's there.
367 wxItemResource
*oldResource
= (wxItemResource
*)wxResourceManager::GetCurrentResourceManager()->GetResourceTable().Delete(m_propertyWindow
->GetName());
370 // It's a top-level resource
371 m_propertyWindow
->SetName(property
->GetValue().StringValue());
372 oldResource
->SetName(property
->GetValue().StringValue());
373 wxResourceManager::GetCurrentResourceManager()->GetResourceTable().Put(m_propertyWindow
->GetName(), oldResource
);
377 // It's a child of something; just set the name of the resource and the window.
378 m_propertyWindow
->SetName(property
->GetValue().StringValue());
379 m_propertyResource
->SetName(property
->GetValue().StringValue());
381 // Refresh the resource manager list, because the name changed.
382 wxResourceManager::GetCurrentResourceManager()->UpdateResourceList();
385 else if (name
== "title")
387 m_propertyWindow
->SetTitle(property
->GetValue().StringValue());
390 else if (name
== "x")
392 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
394 m_propertyWindow
->GetPosition(&x
, &y
);
395 int newX
= (int)property
->GetValue().IntegerValue();
398 // We need to convert to pixels if this is not a dialog or panel, but
399 // the parent resource specifies dialog units.
400 if (m_propertyWindow
->GetParent() && m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
402 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
403 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
405 wxPoint pt
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxPoint(newX
, y
));
409 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
411 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
412 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
414 wxPoint pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(newX
, y
));
421 m_propertyWindow
->Move(pixelX
, y
);
422 resource
->SetSize(newX
, resource
->GetY(), resource
->GetWidth(), resource
->GetHeight());
426 else if (name
== "y")
428 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
430 m_propertyWindow
->GetPosition(&x
, &y
);
431 int newY
= (int)property
->GetValue().IntegerValue();
434 // We need to convert to pixels if this is not a dialog or panel, but
435 // the parent resource specifies dialog units.
436 if (m_propertyWindow
->GetParent() && m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
438 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
439 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
441 wxPoint pt
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxPoint(x
, newY
));
445 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
447 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
448 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
450 wxPoint pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(x
, newY
));
457 m_propertyWindow
->Move(x
, pixelY
);
458 resource
->SetSize(resource
->GetX(), newY
, resource
->GetWidth(), resource
->GetHeight());
462 else if (name
== "width")
464 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
466 m_propertyWindow
->GetSize(&width
, &height
);
467 int newWidth
= (int)property
->GetValue().IntegerValue();
468 int pixelWidth
= newWidth
;
470 // We need to convert to pixels if this is not a dialog or panel, but
471 // the parent resource specifies dialog units.
472 if (m_propertyWindow
->GetParent() && m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
474 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
475 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
477 wxSize sz
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxSize(newWidth
, height
));
481 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
483 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
484 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
486 wxSize sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(newWidth
, height
));
491 if (width
!= newWidth
)
493 m_propertyWindow
->SetSize(pixelWidth
, height
);
494 resource
->SetSize(resource
->GetX(), resource
->GetY(), newWidth
, resource
->GetHeight());
498 else if (name
== "height")
500 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
502 m_propertyWindow
->GetSize(&width
, &height
);
503 int newHeight
= (int)property
->GetValue().IntegerValue();
504 int pixelHeight
= newHeight
;
506 // We need to convert to pixels if this is not a dialog or panel, but
507 // the parent resource specifies dialog units.
508 if (m_propertyWindow
->GetParent() && m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
510 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
511 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
513 wxSize sz
= m_propertyWindow
->GetParent()->ConvertDialogToPixels(wxSize(width
, newHeight
));
517 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
519 wxItemResource
* resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
520 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
522 wxSize sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(width
, newHeight
));
527 if (height
!= newHeight
)
529 m_propertyWindow
->SetSize(width
, newHeight
);
530 resource
->SetSize(resource
->GetX(), resource
->GetY(), resource
->GetWidth(), newHeight
);
534 else if (name
== "id")
536 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
539 wxString value
= property
->GetValue().StringValue();
541 wxString strName
= value
.Before('=');
542 wxString strId
= value
.After('=');
543 int id
= atoi(strId
);
545 wxString oldSymbolName
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetSymbolForId(resource
->GetId());
546 int oldSymbolId
= resource
->GetId();
550 // If we change the id for an existing symbol, we need to:
551 // 1) Check if there are any other resources currently using the original id.
552 // If so, will need to change their id to the new id.
553 // 2) Remove the old symbol, add the new symbol.
554 // In this check, we don't have to do this, but we need to do it in SetProperty.
556 if (strName
== oldSymbolName
&& id
!= oldSymbolId
)
558 wxASSERT( (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName
)) );
560 // It's OK to change just the id. But we'll need to change all matching ids in all resources,
561 // because ids are unique and changing one resource's id must change all identical ones.
562 wxResourceManager::GetCurrentResourceManager()->ChangeIds(oldSymbolId
, id
);
564 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName
);
565 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName
, id
);
568 // If we change the name but not the id, we'll just need to remove and
569 // re-add the symbol/id pair.
570 if (strName
!= oldSymbolName
&& id
== oldSymbolId
)
572 wxASSERT( (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName
)) );
574 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName
);
576 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(strName
))
578 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName
, id
);
582 // What if we're changing both the name and the id?
583 // - if there's no symbol of that name, just remove the old, add the new (in SetProperty)
584 // - if there is a symbol of that name, if id matches, do nothing. If not, veto.
586 if (strName
!= oldSymbolName
&& id
!= oldSymbolId
)
588 // Remove old symbol if it's not being used
589 if (!wxResourceManager::GetCurrentResourceManager()->IsSymbolUsed(resource
, oldSymbolId
) &&
590 !wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(oldSymbolName
))
592 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().RemoveSymbol(oldSymbolName
);
595 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(strName
))
597 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().AddSymbol(strName
, id
);
608 else if (name
== "border")
610 long borderStyle
= wxNO_BORDER
;
611 wxString val
= property
->GetValue().StringValue();
613 if (val
== "wxSIMPLE_BORDER")
614 borderStyle
= wxSIMPLE_BORDER
;
615 else if (val
== "wxRAISED_BORDER")
616 borderStyle
= wxRAISED_BORDER
;
617 else if (val
== "wxSUNKEN_BORDER")
618 borderStyle
= wxSUNKEN_BORDER
;
619 else if (val
== "wxDOUBLE_BORDER")
620 borderStyle
= wxDOUBLE_BORDER
;
621 else if (val
== "wxSTATIC_BORDER")
622 borderStyle
= wxSTATIC_BORDER
;
624 borderStyle
= wxNO_BORDER
;
626 SetWindowStyle(m_propertyWindow
, wxSIMPLE_BORDER
, FALSE
);
627 SetWindowStyle(m_propertyWindow
, wxRAISED_BORDER
, FALSE
);
628 SetWindowStyle(m_propertyWindow
, wxSUNKEN_BORDER
, FALSE
);
629 SetWindowStyle(m_propertyWindow
, wxDOUBLE_BORDER
, FALSE
);
630 SetWindowStyle(m_propertyWindow
, wxSTATIC_BORDER
, FALSE
);
631 SetWindowStyle(m_propertyWindow
, wxNO_BORDER
, FALSE
);
633 SetWindowStyle(m_propertyWindow
, borderStyle
, TRUE
);
635 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
636 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
643 void wxWindowPropertyInfo::GetPropertyNames(wxStringList
& names
)
652 if (!m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
654 names
.Add("fontPoints");
655 names
.Add("fontFamily");
656 names
.Add("fontStyle");
657 names
.Add("fontWeight");
658 names
.Add("fontUnderlined");
662 // Fill in the wxItemResource members to mirror the current window settings
663 bool wxWindowPropertyInfo::InstantiateResource(wxItemResource
*resource
)
665 // resource->SetType(m_propertyWindow->GetClassInfo()->GetClassName());
667 // resource->SetStyle(m_propertyWindow->GetWindowStyleFlag());
668 wxString
str(m_propertyWindow
->GetName());
669 resource
->SetName(str
);
674 if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
675 m_propertyWindow
->GetClientSize(&w
, &h
);
677 m_propertyWindow
->GetSize(&w
, &h
);
679 m_propertyWindow
->GetPosition(&x
, &y
);
681 // We need to convert to dialog units if this is not a dialog or panel, but
682 // the parent resource specifies dialog units.
683 if (m_propertyWindow
->GetParent() && m_propertyWindow
->IsKindOf(CLASSINFO(wxControl
)))
685 wxItemResource
* parentResource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
->GetParent());
686 if (parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
688 wxPoint pt
= m_propertyWindow
->GetParent()->ConvertPixelsToDialog(wxPoint(x
, y
));
690 wxSize sz
= m_propertyWindow
->GetParent()->ConvertPixelsToDialog(wxSize(w
, h
));
694 else if (m_propertyWindow
->IsKindOf(CLASSINFO(wxPanel
)))
696 if (resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
)
698 wxPoint pt
= m_propertyWindow
->ConvertPixelsToDialog(wxPoint(x
, y
));
700 wxSize sz
= m_propertyWindow
->ConvertPixelsToDialog(wxSize(w
, h
));
705 resource
->SetSize(x
, y
, w
, h
);
711 // Set the window style
712 void wxWindowPropertyInfo::SetWindowStyle(wxWindow
* win
, long style
, bool set
)
717 if ((win
->GetWindowStyleFlag() & style
) == style
)
721 win
->SetWindowStyleFlag(win
->GetWindowStyleFlag() - style
);
728 win
->SetWindowStyleFlag(win
->GetWindowStyleFlag() | style
);
737 wxProperty
*wxItemPropertyInfo::GetProperty(wxString
& name
)
739 wxControl
*itemWindow
= (wxControl
*)m_propertyWindow
;
740 wxFont
*font
= & itemWindow
->GetFont();
742 if (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" ||
743 name
== "fontUnderlined")
744 return GetFontProperty(name
, font
);
745 else if (name
== "label" && itemWindow
->GetLabel())
746 return new wxProperty("label", m_propertyWindow
->GetLabel(), "string");
748 return wxWindowPropertyInfo::GetProperty(name
);
751 bool wxItemPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
753 wxControl
*itemWindow
= (wxControl
*)m_propertyWindow
;
754 wxFont
*font
= & itemWindow
->GetFont();
756 if (font
&& (name
== "fontPoints" || name
== "fontFamily" || name
== "fontStyle" || name
== "fontWeight" || name
== "fontUnderlined" ))
758 wxFont
*newFont
= SetFontProperty(name
, property
, font
);
760 itemWindow
->SetLabelFont(* newFont
);
763 else if (name
== "label")
765 itemWindow
->SetLabel(property
->GetValue().StringValue());
769 return wxWindowPropertyInfo::SetProperty(name
, property
);
772 void wxItemPropertyInfo::GetPropertyNames(wxStringList
& names
)
774 wxWindowPropertyInfo::GetPropertyNames(names
);
776 names
.Add("fontPoints");
777 names
.Add("fontFamily");
778 names
.Add("fontStyle");
779 names
.Add("fontWeight");
780 names
.Add("fontUnderlined");
783 bool wxItemPropertyInfo::InstantiateResource(wxItemResource
*resource
)
785 wxWindowPropertyInfo::InstantiateResource(resource
);
787 wxControl
*item
= (wxControl
*)m_propertyWindow
;
788 wxString
str(item
->GetLabel());
789 resource
->SetTitle(str
);
790 if (item
->GetFont().Ok())
791 resource
->SetFont(* wxTheFontList
->FindOrCreateFont(item
->GetFont().GetPointSize(),
792 item
->GetFont().GetFamily(), item
->GetFont().GetStyle(), item
->GetFont().GetWeight(),
793 item
->GetFont().GetUnderlined(), item
->GetFont().GetFaceName()));
801 wxProperty
*wxButtonPropertyInfo::GetProperty(wxString
& name
)
803 return wxItemPropertyInfo::GetProperty(name
);
806 bool wxButtonPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
808 return wxItemPropertyInfo::SetProperty(name
, property
);
811 void wxButtonPropertyInfo::GetPropertyNames(wxStringList
& names
)
813 wxItemPropertyInfo::GetPropertyNames(names
);
817 bool wxButtonPropertyInfo::InstantiateResource(wxItemResource
*resource
)
819 return wxItemPropertyInfo::InstantiateResource(resource
);
826 wxProperty
*wxBitmapButtonPropertyInfo::GetProperty(wxString
& name
)
828 wxBitmapButton
*button
= (wxBitmapButton
*)m_propertyWindow
;
829 if (name
== "bitmapFilename")
831 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(button
);
832 wxString
str("none.bmp");
836 str
= wxResourceManager::GetCurrentResourceManager()->FindBitmapFilenameForResource(resource
);
838 return new wxProperty("bitmapFilename", str
.GetData(), "string", new wxFilenameListValidator("Select a bitmap file", "*.bmp"));
841 return wxButtonPropertyInfo::GetProperty(name
);
844 bool wxBitmapButtonPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
846 wxBitmapButton
*button
= (wxBitmapButton
*)m_propertyWindow
;
847 if (name
== "bitmapFilename")
849 char *s
= property
->GetValue().StringValue();
850 if (s
&& wxFileExists(s
))
853 wxBitmap
*bitmap
= new wxBitmap(s
, wxBITMAP_TYPE_BMP
);
862 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(button
);
865 wxString
oldResource(resource
->GetValue4());
866 wxString resName
= wxResourceManager::GetCurrentResourceManager()->AddBitmapResource(s
);
867 resource
->SetValue4(resName
);
869 if (!oldResource
.IsNull())
870 wxResourceManager::GetCurrentResourceManager()->PossiblyDeleteBitmapResource(oldResource
);
873 button
->SetLabel(* bitmap
);
881 return wxButtonPropertyInfo::SetProperty(name
, property
);
884 void wxBitmapButtonPropertyInfo::GetPropertyNames(wxStringList
& names
)
886 wxButtonPropertyInfo::GetPropertyNames(names
);
887 names
.Delete("label");
888 names
.Add("bitmapFilename");
891 bool wxBitmapButtonPropertyInfo::InstantiateResource(wxItemResource
*resource
)
893 return wxItemPropertyInfo::InstantiateResource(resource
);
900 wxProperty
*wxStaticTextPropertyInfo::GetProperty(wxString
& name
)
902 return wxItemPropertyInfo::GetProperty(name
);
905 bool wxStaticTextPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
907 return wxItemPropertyInfo::SetProperty(name
, property
);
910 void wxStaticTextPropertyInfo::GetPropertyNames(wxStringList
& names
)
912 wxItemPropertyInfo::GetPropertyNames(names
);
916 bool wxStaticTextPropertyInfo::InstantiateResource(wxItemResource
*resource
)
918 return wxItemPropertyInfo::InstantiateResource(resource
);
925 wxProperty
*wxStaticBitmapPropertyInfo::GetProperty(wxString
& name
)
927 wxStaticBitmap
*message
= (wxStaticBitmap
*)m_propertyWindow
;
928 if (name
== "bitmapFilename")
930 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(message
);
931 wxString
str("none.bmp");
935 str
= wxResourceManager::GetCurrentResourceManager()->FindBitmapFilenameForResource(resource
);
937 return new wxProperty("bitmapFilename", str
.GetData(), "string", new wxFilenameListValidator("Select a bitmap file", "*.bmp"));
940 return wxItemPropertyInfo::GetProperty(name
);
943 bool wxStaticBitmapPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
945 wxStaticBitmap
*message
= (wxStaticBitmap
*)m_propertyWindow
;
946 if (name
== "bitmapFilename")
948 char *s
= property
->GetValue().StringValue();
949 if (s
&& wxFileExists(s
))
953 wxBitmap
*bitmap
= new wxBitmap(s
, wxBITMAP_TYPE_BMP
);
962 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(message
);
965 wxString
oldResource(resource
->GetValue4());
966 wxString resName
= wxResourceManager::GetCurrentResourceManager()->AddBitmapResource(s
);
967 resource
->SetValue4(resName
);
969 if (!oldResource
.IsNull())
970 wxResourceManager::GetCurrentResourceManager()->PossiblyDeleteBitmapResource(oldResource
);
973 message
->SetBitmap(* bitmap
);
981 return wxItemPropertyInfo::SetProperty(name
, property
);
984 void wxStaticBitmapPropertyInfo::GetPropertyNames(wxStringList
& names
)
986 wxItemPropertyInfo::GetPropertyNames(names
);
987 names
.Add("bitmapFilename");
990 bool wxStaticBitmapPropertyInfo::InstantiateResource(wxItemResource
*resource
)
992 return wxItemPropertyInfo::InstantiateResource(resource
);
999 wxProperty
*wxTextPropertyInfo::GetProperty(wxString
& name
)
1001 wxTextCtrl
*text
= (wxTextCtrl
*)m_propertyWindow
;
1002 if (name
== "value")
1003 return new wxProperty("value", text
->GetValue(), "string");
1004 else if (name
== "password")
1006 bool isPassword
= ((text
->GetWindowStyleFlag() & wxTE_PASSWORD
) == wxTE_PASSWORD
);
1007 return new wxProperty("password", isPassword
, "bool");
1009 else if (name
== "readonly")
1011 bool isReadOnly
= ((text
->GetWindowStyleFlag() & wxTE_READONLY
) == wxTE_READONLY
);
1012 return new wxProperty("readonly", isReadOnly
, "bool");
1015 return wxItemPropertyInfo::GetProperty(name
);
1018 bool wxTextPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1020 wxTextCtrl
*text
= (wxTextCtrl
*)m_propertyWindow
;
1021 if (name
== "value")
1023 text
->SetValue(property
->GetValue().StringValue());
1026 else if (name
== "password")
1028 long flag
= text
->GetWindowStyleFlag();
1029 if (property
->GetValue().BoolValue())
1031 if ((flag
& wxTE_PASSWORD
) != wxTE_PASSWORD
)
1032 flag
|= wxTE_PASSWORD
;
1036 if ((flag
& wxTE_PASSWORD
) == wxTE_PASSWORD
)
1037 flag
-= wxTE_PASSWORD
;
1039 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(text
);
1040 resource
->SetStyle(flag
);
1042 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(text
, this);
1045 else if (name
== "readonly")
1047 long flag
= text
->GetWindowStyleFlag();
1048 if (property
->GetValue().BoolValue())
1050 if ((flag
& wxTE_READONLY
) != wxTE_READONLY
)
1051 flag
|= wxTE_READONLY
;
1055 if ((flag
& wxTE_READONLY
) == wxTE_READONLY
)
1056 flag
-= wxTE_READONLY
;
1058 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(text
);
1059 resource
->SetStyle(flag
);
1061 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(text
, this);
1065 return wxItemPropertyInfo::SetProperty(name
, property
);
1068 void wxTextPropertyInfo::GetPropertyNames(wxStringList
& names
)
1070 wxItemPropertyInfo::GetPropertyNames(names
);
1072 names
.Add("readonly");
1073 names
.Add("password");
1076 bool wxTextPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1078 wxTextCtrl
*text
= (wxTextCtrl
*)m_propertyWindow
;
1079 wxString
str(text
->GetValue());
1080 resource
->SetValue4(str
);
1082 return wxItemPropertyInfo::InstantiateResource(resource
);
1089 wxProperty
*wxListBoxPropertyInfo::GetProperty(wxString
& name
)
1091 wxListBox
*listBox
= (wxListBox
*)m_propertyWindow
;
1092 if (name
== "values")
1094 wxStringList
*stringList
= new wxStringList
;
1096 for (i
= 0; i
< listBox
->Number(); i
++)
1097 stringList
->Add(listBox
->GetString(i
));
1099 return new wxProperty(name
, stringList
, "stringlist");
1101 else if (name
== "multiple")
1103 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(listBox
);
1107 char *mult
= "wxLB_SINGLE";
1109 if ((listBox
->GetWindowStyleFlag() & wxLB_MULTIPLE
) != 0)
1110 mult
= "wxLB_MULTIPLE";
1111 else if ((listBox
->GetWindowStyleFlag() & wxLB_EXTENDED
) != 0)
1112 mult
= "wxLB_EXTENDED";
1114 mult
= "wxLB_SINGLE";
1116 return new wxProperty("multiple", mult
, "string",
1117 new wxStringListValidator(new wxStringList("wxLB_SINGLE", "wxLB_MULTIPLE", "wxLB_EXTENDED",
1121 return wxItemPropertyInfo::GetProperty(name
);
1124 bool wxListBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1126 wxListBox
*listBox
= (wxListBox
*)m_propertyWindow
;
1127 if (name
== "values")
1130 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1133 char *s
= expr
->StringValue();
1136 expr
= expr
->GetNext();
1140 else if (name
== "multiple")
1142 SetWindowStyle(m_propertyWindow
, wxLB_SINGLE
, FALSE
);
1143 SetWindowStyle(m_propertyWindow
, wxLB_MULTIPLE
, FALSE
);
1144 SetWindowStyle(m_propertyWindow
, wxLB_EXTENDED
, FALSE
);
1146 wxString
str(property
->GetValue().StringValue());
1147 if (str
== "wxLB_MULTIPLE")
1148 SetWindowStyle(m_propertyWindow
, wxLB_MULTIPLE
, TRUE
);
1149 else if (str
== "wxLB_EXTENDED")
1150 SetWindowStyle(m_propertyWindow
, wxLB_EXTENDED
, TRUE
);
1152 SetWindowStyle(m_propertyWindow
, wxLB_SINGLE
, TRUE
);
1154 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(listBox
);
1156 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
1157 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(listBox
, this);
1161 return wxItemPropertyInfo::SetProperty(name
, property
);
1164 void wxListBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1166 wxItemPropertyInfo::GetPropertyNames(names
);
1167 names
.Add("values");
1168 names
.Add("multiple");
1171 bool wxListBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1173 wxListBox
*lbox
= (wxListBox
*)m_propertyWindow
;
1174 // This will be set for the wxItemResource on reading or in SetProperty
1175 // resource->SetValue1(lbox->GetSelectionMode());
1177 if (lbox
->Number() == 0)
1178 resource
->SetStringValues(NULL
);
1183 for (i
= 0; i
< lbox
->Number(); i
++)
1184 slist
.Add(lbox
->GetString(i
));
1186 resource
->SetStringValues(slist
);
1188 return wxItemPropertyInfo::InstantiateResource(resource
);
1195 wxProperty
*wxChoicePropertyInfo::GetProperty(wxString
& name
)
1197 wxChoice
*choice
= (wxChoice
*)m_propertyWindow
;
1198 if (name
== "values")
1200 wxStringList
* stringList
= new wxStringList
;
1202 for (i
= 0; i
< choice
->Number(); i
++)
1203 stringList
->Add(choice
->GetString(i
));
1205 return new wxProperty(name
, stringList
, "stringlist");
1208 return wxItemPropertyInfo::GetProperty(name
);
1211 bool wxChoicePropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1213 wxChoice
*choice
= (wxChoice
*)m_propertyWindow
;
1214 if (name
== "values")
1217 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1220 char *s
= expr
->StringValue();
1223 expr
= expr
->GetNext();
1225 if (choice
->Number() > 0)
1226 choice
->SetSelection(0);
1230 return wxItemPropertyInfo::SetProperty(name
, property
);
1233 void wxChoicePropertyInfo::GetPropertyNames(wxStringList
& names
)
1235 wxItemPropertyInfo::GetPropertyNames(names
);
1236 names
.Add("values");
1239 bool wxChoicePropertyInfo::InstantiateResource(wxItemResource
*resource
)
1241 wxChoice
*choice
= (wxChoice
*)m_propertyWindow
;
1243 if (choice
->Number() == 0)
1244 resource
->SetStringValues(NULL
);
1249 for (i
= 0; i
< choice
->Number(); i
++)
1250 slist
.Add(choice
->GetString(i
));
1252 resource
->SetStringValues(slist
);
1254 return wxItemPropertyInfo::InstantiateResource(resource
);
1261 wxProperty
*wxComboBoxPropertyInfo::GetProperty(wxString
& name
)
1263 wxComboBox
*choice
= (wxComboBox
*)m_propertyWindow
;
1264 if (name
== "values")
1266 wxStringList
*stringList
= new wxStringList
;
1268 for (i
= 0; i
< choice
->Number(); i
++)
1269 stringList
->Add(choice
->GetString(i
));
1271 return new wxProperty(name
, stringList
, "stringlist");
1273 else if (name
== "sort")
1275 bool sort
= ((m_propertyWindow
->GetWindowStyleFlag() & wxCB_SORT
) == wxCB_SORT
);
1276 return new wxProperty(name
, sort
, "bool");
1278 else if (name
== "style")
1280 wxString
styleStr("dropdown");
1281 if (m_propertyWindow
->GetWindowStyleFlag() & wxCB_SIMPLE
)
1282 styleStr
= "simple";
1283 else if (m_propertyWindow
->GetWindowStyleFlag() & wxCB_READONLY
)
1284 styleStr
= "readonly";
1286 styleStr
= "dropdown";
1288 return new wxProperty(name
, styleStr
, "string",
1289 new wxStringListValidator(new wxStringList("simple", "dropdown", "readonly",
1293 return wxItemPropertyInfo::GetProperty(name
);
1296 bool wxComboBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1298 wxComboBox
*choice
= (wxComboBox
*)m_propertyWindow
;
1299 if (name
== "values")
1302 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1305 char *s
= expr
->StringValue();
1308 expr
= expr
->GetNext();
1310 if (choice
->Number() > 0)
1311 choice
->SetSelection(0);
1314 else if (name
== "sort")
1316 SetWindowStyle(m_propertyWindow
, wxCB_SORT
, property
->GetValue().BoolValue());
1318 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1319 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
1321 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(m_propertyWindow
, this);
1324 else if (name
== "style")
1326 SetWindowStyle(m_propertyWindow
, wxCB_SIMPLE
, FALSE
);
1327 SetWindowStyle(m_propertyWindow
, wxCB_DROPDOWN
, FALSE
);
1328 SetWindowStyle(m_propertyWindow
, wxCB_READONLY
, FALSE
);
1330 wxString
styleStr(property
->GetValue().StringValue());
1331 if (styleStr
== "simple")
1332 SetWindowStyle(m_propertyWindow
, wxCB_SIMPLE
, TRUE
);
1333 else if (styleStr
== "dropdown")
1334 SetWindowStyle(m_propertyWindow
, wxCB_DROPDOWN
, TRUE
);
1335 else if (styleStr
== "readonly")
1336 SetWindowStyle(m_propertyWindow
, wxCB_READONLY
, TRUE
);
1339 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1340 resource
->SetStyle(m_propertyWindow
->GetWindowStyleFlag());
1342 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(m_propertyWindow
, this);
1347 return wxItemPropertyInfo::SetProperty(name
, property
);
1350 void wxComboBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1352 wxItemPropertyInfo::GetPropertyNames(names
);
1353 names
.Add("values");
1358 bool wxComboBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1360 wxComboBox
*choice
= (wxComboBox
*)m_propertyWindow
;
1362 if (choice
->Number() == 0)
1363 resource
->SetStringValues(NULL
);
1368 for (i
= 0; i
< choice
->Number(); i
++)
1369 slist
.Add(choice
->GetString(i
));
1371 resource
->SetStringValues(slist
);
1373 return wxItemPropertyInfo::InstantiateResource(resource
);
1380 wxProperty
*wxRadioBoxPropertyInfo::GetProperty(wxString
& name
)
1382 wxRadioBox
*radioBox
= (wxRadioBox
*)m_propertyWindow
;
1383 if (name
== "numberRowsOrCols")
1385 return new wxProperty("numberRowsOrCols", (long)radioBox
->GetNumberOfRowsOrCols(), "integer");
1387 if (name
== "orientation")
1390 if (m_propertyWindow
->GetWindowStyleFlag() & wxRA_SPECIFY_COLS
)
1391 orient
= "wxRA_SPECIFY_COLS";
1393 orient
= "wxRA_SPECIFY_ROWS";
1395 return new wxProperty("orientation", orient
, "string",
1396 new wxStringListValidator(new wxStringList("wxRA_SPECIFY_COLS", "wxRA_SPECIFY_ROWS",
1399 else if (name
== "values")
1401 wxStringList
*stringList
= new wxStringList
;
1403 for (i
= 0; i
< radioBox
->Number(); i
++)
1404 stringList
->Add(radioBox
->GetString(i
));
1406 return new wxProperty(name
, stringList
, "stringlist");
1408 return wxItemPropertyInfo::GetProperty(name
);
1411 bool wxRadioBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1413 wxRadioBox
*radioBox
= (wxRadioBox
*)m_propertyWindow
;
1414 if (name
== "numberRowsOrCols")
1416 radioBox
->SetNumberOfRowsOrCols((int)property
->GetValue().IntegerValue());
1417 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox
, this);
1420 else if (name
== "orientation")
1422 long windowStyle
= radioBox
->GetWindowStyleFlag();
1423 wxString
val(property
->GetValue().StringValue());
1424 if (val
== "wxRA_SPECIFY_COLS")
1426 if (windowStyle
& wxRA_SPECIFY_ROWS
)
1427 windowStyle
-= wxRA_SPECIFY_ROWS
;
1428 windowStyle
|= wxRA_SPECIFY_COLS
;
1432 if (windowStyle
& wxRA_SPECIFY_COLS
)
1433 windowStyle
-= wxRA_SPECIFY_COLS
;
1434 windowStyle
|= wxRA_SPECIFY_ROWS
;
1436 radioBox
->SetWindowStyleFlag(windowStyle
);
1437 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(radioBox
);
1438 resource
->SetStyle(windowStyle
);
1440 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox
, this);
1443 else if (name
== "values")
1445 // Set property into *resource*, not wxRadioBox, and then recreate
1446 // the wxRadioBox. This is because we can't dynamically set the strings
1448 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
1452 wxStringList stringList
;
1453 wxPropertyValue
*expr
= property
->GetValue().GetFirst();
1456 char *s
= expr
->StringValue();
1459 expr
= expr
->GetNext();
1461 resource
->SetStringValues(stringList
);
1462 wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(radioBox
, this);
1465 return wxItemPropertyInfo::SetProperty(name
, property
);
1468 void wxRadioBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1470 wxItemPropertyInfo::GetPropertyNames(names
);
1472 names
.Add("values");
1473 names
.Add("orientation");
1474 names
.Add("numberRowsOrCols");
1477 bool wxRadioBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1479 wxRadioBox
*rbox
= (wxRadioBox
*)m_propertyWindow
;
1480 // Take strings from resource instead
1483 if (rbox->Number() == 0)
1484 resource->SetStringValues(NULL);
1487 wxStringList *slist = new wxStringList;
1489 for (i = 0; i < rbox->Number(); i++)
1490 slist->Add(rbox->GetString(i));
1492 resource->SetStringValues(slist);
1495 resource
->SetValue1(rbox
->GetNumberOfRowsOrCols());
1496 return wxItemPropertyInfo::InstantiateResource(resource
);
1503 wxProperty
*wxGroupBoxPropertyInfo::GetProperty(wxString
& name
)
1505 return wxItemPropertyInfo::GetProperty(name
);
1508 bool wxGroupBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1510 return wxItemPropertyInfo::SetProperty(name
, property
);
1513 void wxGroupBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1515 wxItemPropertyInfo::GetPropertyNames(names
);
1519 bool wxGroupBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1521 return wxItemPropertyInfo::InstantiateResource(resource
);
1528 wxProperty
*wxCheckBoxPropertyInfo::GetProperty(wxString
& name
)
1530 wxCheckBox
*checkBox
= (wxCheckBox
*)m_propertyWindow
;
1531 if (name
== "value")
1532 return new wxProperty("value", checkBox
->GetValue(), "bool");
1534 return wxItemPropertyInfo::GetProperty(name
);
1537 bool wxCheckBoxPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1539 wxCheckBox
*checkBox
= (wxCheckBox
*)m_propertyWindow
;
1540 if (name
== "value")
1542 checkBox
->SetValue((bool)property
->GetValue().BoolValue());
1546 return wxItemPropertyInfo::SetProperty(name
, property
);
1549 void wxCheckBoxPropertyInfo::GetPropertyNames(wxStringList
& names
)
1551 wxItemPropertyInfo::GetPropertyNames(names
);
1556 bool wxCheckBoxPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1558 wxCheckBox
*cbox
= (wxCheckBox
*)m_propertyWindow
;
1559 resource
->SetValue1(cbox
->GetValue());
1560 return wxItemPropertyInfo::InstantiateResource(resource
);
1567 wxProperty
*wxRadioButtonPropertyInfo::GetProperty(wxString
& name
)
1569 wxRadioButton
*checkBox
= (wxRadioButton
*)m_propertyWindow
;
1570 if (name
== "value")
1571 return new wxProperty("value", checkBox
->GetValue(), "bool");
1573 return wxItemPropertyInfo::GetProperty(name
);
1576 bool wxRadioButtonPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1578 wxRadioButton
*checkBox
= (wxRadioButton
*)m_propertyWindow
;
1579 if (name
== "value")
1581 checkBox
->SetValue((bool)property
->GetValue().BoolValue());
1585 return wxItemPropertyInfo::SetProperty(name
, property
);
1588 void wxRadioButtonPropertyInfo::GetPropertyNames(wxStringList
& names
)
1590 wxItemPropertyInfo::GetPropertyNames(names
);
1595 bool wxRadioButtonPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1597 wxRadioButton
*cbox
= (wxRadioButton
*)m_propertyWindow
;
1598 resource
->SetValue1(cbox
->GetValue());
1599 return wxItemPropertyInfo::InstantiateResource(resource
);
1606 wxProperty
*wxSliderPropertyInfo::GetProperty(wxString
& name
)
1608 wxSlider
*slider
= (wxSlider
*)m_propertyWindow
;
1609 if (name
== "value")
1610 return new wxProperty("value", (long)slider
->GetValue(), "integer");
1611 else if (name
== "orientation")
1614 if (m_propertyWindow
->GetWindowStyleFlag() & wxHORIZONTAL
)
1615 pos
= "wxHORIZONTAL";
1619 return new wxProperty("orientation", pos
, "string",
1620 new wxStringListValidator(new wxStringList("wxHORIZONTAL", "wxVERTICAL",
1623 else if (name
== "minValue")
1624 return new wxProperty("minValue", (long)slider
->GetMin(), "integer");
1625 else if (name
== "maxValue")
1626 return new wxProperty("maxValue", (long)slider
->GetMax(), "integer");
1628 return wxItemPropertyInfo::GetProperty(name
);
1631 bool wxSliderPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1633 wxSlider
*slider
= (wxSlider
*)m_propertyWindow
;
1634 if (name
== "value")
1636 slider
->SetValue((int)property
->GetValue().IntegerValue());
1639 else if (name
== "orientation")
1641 long windowStyle
= slider
->GetWindowStyleFlag();
1642 long oldWindowStyle
= windowStyle
;
1643 wxString
val(property
->GetValue().StringValue());
1644 if (val
== "wxHORIZONTAL")
1646 if (windowStyle
& wxVERTICAL
)
1647 windowStyle
-= wxVERTICAL
;
1648 windowStyle
|= wxHORIZONTAL
;
1652 if (windowStyle
& wxHORIZONTAL
)
1653 windowStyle
-= wxHORIZONTAL
;
1654 windowStyle
|= wxVERTICAL
;
1657 if (oldWindowStyle
== windowStyle
)
1660 slider
->SetWindowStyleFlag(windowStyle
);
1662 // If the window style has changed, we swap the width and height parameters.
1664 slider
->GetSize(&w
, &h
);
1666 slider
= (wxSlider
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(slider
, this);
1667 slider
->SetSize(-1, -1, h
, w
);
1671 else if (name
== "minValue")
1673 slider
->SetRange((int)property
->GetValue().IntegerValue(), slider
->GetMax());
1676 else if (name
== "maxValue")
1678 slider
->SetRange(slider
->GetMin(), (int)property
->GetValue().IntegerValue());
1682 return wxItemPropertyInfo::SetProperty(name
, property
);
1685 void wxSliderPropertyInfo::GetPropertyNames(wxStringList
& names
)
1687 wxItemPropertyInfo::GetPropertyNames(names
);
1689 names
.Add("orientation");
1690 names
.Add("minValue");
1691 names
.Add("maxValue");
1694 bool wxSliderPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1696 wxSlider
*slider
= (wxSlider
*)m_propertyWindow
;
1697 resource
->SetValue1(slider
->GetValue());
1698 resource
->SetValue2(slider
->GetMin());
1699 resource
->SetValue3(slider
->GetMax());
1700 return wxItemPropertyInfo::InstantiateResource(resource
);
1707 wxProperty
*wxGaugePropertyInfo::GetProperty(wxString
& name
)
1709 wxGauge
*gauge
= (wxGauge
*)m_propertyWindow
;
1710 if (name
== "value")
1711 return new wxProperty("value", (long)gauge
->GetValue(), "integer");
1712 else if (name
== "maxValue")
1713 return new wxProperty("maxValue", (long)gauge
->GetRange(), "integer");
1715 return wxItemPropertyInfo::GetProperty(name
);
1718 bool wxGaugePropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1720 wxGauge
*gauge
= (wxGauge
*)m_propertyWindow
;
1721 if (name
== "value")
1723 gauge
->SetValue((int)property
->GetValue().IntegerValue());
1726 else if (name
== "maxValue")
1728 gauge
->SetRange((int)property
->GetValue().IntegerValue());
1732 return wxItemPropertyInfo::SetProperty(name
, property
);
1735 void wxGaugePropertyInfo::GetPropertyNames(wxStringList
& names
)
1737 wxItemPropertyInfo::GetPropertyNames(names
);
1739 names
.Add("maxValue");
1742 bool wxGaugePropertyInfo::InstantiateResource(wxItemResource
*resource
)
1744 wxGauge
*gauge
= (wxGauge
*)m_propertyWindow
;
1745 resource
->SetValue1(gauge
->GetValue());
1746 resource
->SetValue2(gauge
->GetRange());
1747 return wxItemPropertyInfo::InstantiateResource(resource
);
1754 wxProperty
*wxScrollBarPropertyInfo::GetProperty(wxString
& name
)
1756 wxScrollBar
*scrollBar
= (wxScrollBar
*)m_propertyWindow
;
1757 if (name
== "value")
1758 return new wxProperty("value", (long)scrollBar
->GetValue(), "integer");
1759 else if (name
== "orientation")
1762 if (m_propertyWindow
->GetWindowStyleFlag() & wxHORIZONTAL
)
1763 pos
= "wxHORIZONTAL";
1767 return new wxProperty("orientation", pos
, "string",
1768 new wxStringListValidator(new wxStringList("wxHORIZONTAL", "wxVERTICAL",
1771 else if (name
== "pageSize")
1773 int viewStart
, pageLength
, objectLength
, viewLength
;
1774 scrollBar
->GetValues(&viewStart
, &viewLength
, &objectLength
, &pageLength
);
1776 return new wxProperty("pageSize", (long)pageLength
, "integer");
1778 else if (name
== "viewLength")
1780 int viewStart
, pageLength
, objectLength
, viewLength
;
1781 scrollBar
->GetValues(&viewStart
, &viewLength
, &objectLength
, &pageLength
);
1783 return new wxProperty("viewLength", (long)viewLength
, "integer");
1785 else if (name
== "objectLength")
1787 int viewStart
, pageLength
, objectLength
, viewLength
;
1788 scrollBar
->GetValues(&viewStart
, &viewLength
, &objectLength
, &pageLength
);
1790 return new wxProperty("objectLength", (long)objectLength
, "integer");
1793 return wxItemPropertyInfo::GetProperty(name
);
1796 bool wxScrollBarPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1798 wxScrollBar
*scrollBar
= (wxScrollBar
*)m_propertyWindow
;
1799 if (name
== "value")
1801 scrollBar
->SetValue((int)property
->GetValue().IntegerValue());
1804 else if (name
== "orientation")
1806 long windowStyle
= scrollBar
->GetWindowStyleFlag();
1807 long oldWindowStyle
= windowStyle
;
1808 wxString
val(property
->GetValue().StringValue());
1809 if (val
== "wxHORIZONTAL")
1811 if (windowStyle
& wxVERTICAL
)
1812 windowStyle
-= wxVERTICAL
;
1813 windowStyle
|= wxHORIZONTAL
;
1817 if (windowStyle
& wxHORIZONTAL
)
1818 windowStyle
-= wxHORIZONTAL
;
1819 windowStyle
|= wxVERTICAL
;
1822 if (oldWindowStyle
== windowStyle
)
1825 scrollBar
->SetWindowStyleFlag(windowStyle
);
1827 // If the window style has changed, we swap the width and height parameters.
1829 scrollBar
->GetSize(&w
, &h
);
1831 scrollBar
= (wxScrollBar
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(scrollBar
, this);
1832 scrollBar
->SetSize(-1, -1, h
, w
);
1836 else if (name
== "pageSize")
1838 scrollBar
->SetPageSize((int)property
->GetValue().IntegerValue());
1841 else if (name
== "viewLength")
1843 scrollBar
->SetViewLength((int)property
->GetValue().IntegerValue());
1846 else if (name
== "objectLength")
1848 scrollBar
->SetObjectLength((int)property
->GetValue().IntegerValue());
1852 return wxItemPropertyInfo::SetProperty(name
, property
);
1855 void wxScrollBarPropertyInfo::GetPropertyNames(wxStringList
& names
)
1857 wxItemPropertyInfo::GetPropertyNames(names
);
1858 names
.Add("orientation");
1860 names
.Add("pageSize");
1861 names
.Add("viewLength");
1862 names
.Add("objectLength");
1864 // Remove some properties we don't inherit
1865 names
.Delete("fontPoints");
1866 names
.Delete("fontFamily");
1867 names
.Delete("fontStyle");
1868 names
.Delete("fontWeight");
1869 names
.Delete("fontUnderlined");
1872 bool wxScrollBarPropertyInfo::InstantiateResource(wxItemResource
*resource
)
1874 wxScrollBar
*sbar
= (wxScrollBar
*)m_propertyWindow
;
1876 resource
->SetValue1(sbar
->GetValue());
1878 int viewStart
, pageLength
, objectLength
, viewLength
;
1879 sbar
->GetValues(&viewStart
, &viewLength
, &objectLength
, &pageLength
);
1881 resource
->SetValue2(pageLength
);
1882 resource
->SetValue3(objectLength
);
1883 resource
->SetValue5(viewLength
);
1885 return wxItemPropertyInfo::InstantiateResource(resource
);
1892 wxProperty
*wxPanelPropertyInfo::GetProperty(wxString
& name
)
1894 wxPanel
*panelWindow
= (wxPanel
*)m_propertyWindow
;
1897 wxFont *labelFont = panelWindow->GetLabelFont();
1898 wxFont *buttonFont = panelWindow->GetButtonFont();
1900 if (name == "labelFontPoints" || name == "labelFontFamily" || name == "labelFontStyle" || name == "labelFontWeight" ||
1901 name == "labelFontUnderlined")
1902 return GetFontProperty(name, labelFont);
1903 else if (name == "buttonFontPoints" || name == "buttonFontFamily" || name == "buttonFontStyle" || name == "buttonFontWeight" ||
1904 name == "buttonFontUnderlined")
1905 return GetFontProperty(name, buttonFont);
1911 if (panelWindow
->GetWindowStyleFlag() & wxNO_3D
)
1914 userColours
= FALSE
;
1916 return new wxProperty(name
, (bool)userColours
, "bool");
1918 else if (name
== "backgroundColour")
1920 wxColour
col(panelWindow
->GetBackgroundColour());
1922 wxDecToHex(col
.Red(), buf
);
1923 wxDecToHex(col
.Green(), buf
+2);
1924 wxDecToHex(col
.Blue(), buf
+4);
1926 return new wxProperty(name
, buf
, "string", new wxColourListValidator
);
1928 else if (name
== "title")
1930 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
1932 return new wxProperty(name
, resource
->GetTitle(), "string");
1934 return new wxProperty(name
, "Could not get title", "string");
1936 else if (name
== "caption")
1938 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxCAPTION
) == wxCAPTION
),
1941 else if (name
== "systemMenu")
1943 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxSYSTEM_MENU
) == wxSYSTEM_MENU
),
1946 else if (name
== "thickFrame")
1948 return new wxProperty(name
, ((panelWindow
->GetWindowStyleFlag() & wxTHICK_FRAME
) == wxTHICK_FRAME
),
1951 else if (name
== "useSystemDefaults")
1953 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
1954 return new wxProperty(name
, ((resource
->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS
) == wxRESOURCE_USE_DEFAULTS
),
1957 else if (name
== "useDialogUnits")
1959 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
1960 return new wxProperty(name
, ((resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) == wxRESOURCE_DIALOG_UNITS
),
1964 return wxWindowPropertyInfo::GetProperty(name
);
1967 bool wxPanelPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
1969 wxPanel
*panelWindow
= (wxPanel
*)m_propertyWindow
;
1971 wxFont *labelFont = panelWindow->GetLabelFont();
1972 wxFont *buttonFont = panelWindow->GetButtonFont();
1974 if (labelFont && (name == "labelFontPoints" || name == "labelFontFamily" || name == "labelFontStyle" || name == "labelFontWeight" || name == "labelFontUnderlined" ))
1976 wxFont *newFont = SetFontProperty(name, property, labelFont);
1978 panelWindow->SetLabelFont(* newFont);
1981 else if (buttonFont && (name == "buttonFontPoints" || name == "buttonFontFamily" || name == "buttonFontStyle" || name == "buttonFontWeight" || name == "buttonFontUnderlined" ))
1983 wxFont *newFont = SetFontProperty(name, property, buttonFont);
1985 panelWindow->SetButtonFont(* newFont);
1992 bool userColours
= property
->GetValue().BoolValue();
1996 if ((panelWindow
->GetWindowStyleFlag() & wxNO_3D
) != wxNO_3D
)
1997 panelWindow
->SetWindowStyleFlag(panelWindow
->GetWindowStyleFlag() | wxNO_3D
);
2001 if ((panelWindow
->GetWindowStyleFlag() & wxNO_3D
) == wxNO_3D
)
2002 panelWindow
->SetWindowStyleFlag(panelWindow
->GetWindowStyleFlag() - wxNO_3D
);
2004 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2005 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2007 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2010 else if (name
== "backgroundColour")
2012 char *hex
= property
->GetValue().StringValue();
2013 int r
= wxHexToDec(hex
);
2014 int g
= wxHexToDec(hex
+2);
2015 int b
= wxHexToDec(hex
+4);
2017 wxColour
col(r
,g
,b
);
2018 panelWindow
->SetBackgroundColour(col
);
2019 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2022 else if (name
== "title")
2024 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2027 resource
->SetTitle(property
->GetValue().StringValue());
2033 else if (name
== "caption")
2035 SetWindowStyle(panelWindow
, wxCAPTION
, property
->GetValue().BoolValue());
2037 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2038 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2041 else if (name
== "thickFrame")
2043 SetWindowStyle(panelWindow
, wxTHICK_FRAME
, property
->GetValue().BoolValue());
2045 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2046 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2049 else if (name
== "systemMenu")
2051 SetWindowStyle(panelWindow
, wxSYSTEM_MENU
, property
->GetValue().BoolValue());
2053 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2054 resource
->SetStyle(panelWindow
->GetWindowStyleFlag());
2057 else if (name
== "useSystemDefaults")
2059 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2060 bool useDefaults
= property
->GetValue().BoolValue();
2061 long style
= resource
->GetResourceStyle();
2064 if ((style
& wxRESOURCE_USE_DEFAULTS
) == 0)
2065 style
|= wxRESOURCE_USE_DEFAULTS
;
2069 if ((style
& wxRESOURCE_USE_DEFAULTS
) != 0)
2070 style
-= wxRESOURCE_USE_DEFAULTS
;
2072 resource
->SetResourceStyle(style
);
2073 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2076 else if (name
== "useDialogUnits")
2078 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(panelWindow
);
2079 bool useDialogUnits
= property
->GetValue().BoolValue();
2080 long style
= resource
->GetResourceStyle();
2083 if ((style
& wxRESOURCE_DIALOG_UNITS
) == 0)
2085 style
|= wxRESOURCE_DIALOG_UNITS
;
2086 ConvertDialogUnits(TRUE
); // Convert all resources
2091 if ((style
& wxRESOURCE_DIALOG_UNITS
) != 0)
2093 style
-= wxRESOURCE_DIALOG_UNITS
;
2094 ConvertDialogUnits(FALSE
); // Convert all resources
2097 resource
->SetResourceStyle(style
);
2098 panelWindow
= (wxPanel
*)wxResourceManager::GetCurrentResourceManager()->RecreateWindowFromResource(panelWindow
, this);
2099 // TODO: need to regenerate the width and height properties else they'll be inconsistent.
2103 return wxWindowPropertyInfo::SetProperty(name
, property
);
2106 void wxPanelPropertyInfo::GetPropertyNames(wxStringList
& names
)
2108 wxWindowPropertyInfo::GetPropertyNames(names
);
2112 names
.Add("backgroundColour");
2113 names
.Add("caption");
2114 names
.Add("systemMenu");
2115 names
.Add("thickFrame");
2116 names
.Add("useSystemDefaults");
2117 names
.Add("useDialogUnits");
2120 bool wxPanelPropertyInfo::InstantiateResource(wxItemResource
*resource
)
2122 wxPanel
*panel
= (wxPanel
*)m_propertyWindow
;
2123 if (panel
->GetFont().Ok())
2124 resource
->SetFont(* wxTheFontList
->FindOrCreateFont(panel
->GetFont().GetPointSize(),
2125 panel
->GetFont().GetFamily(), panel
->GetFont().GetStyle(), panel
->GetFont().GetWeight(),
2126 panel
->GetFont().GetUnderlined(), panel
->GetFont().GetFaceName()));
2128 resource
->SetBackgroundColour(wxColour(panel
->GetBackgroundColour()));
2130 return wxWindowPropertyInfo::InstantiateResource(resource
);
2133 // Convert this dialog, and its children, to or from dialog units
2134 void wxPanelPropertyInfo::ConvertDialogUnits(bool toDialogUnits
)
2136 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_propertyWindow
);
2142 sz
= m_propertyWindow
->ConvertPixelsToDialog(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2143 pt
= m_propertyWindow
->ConvertPixelsToDialog(wxPoint(resource
->GetX(), resource
->GetY()));
2147 sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2148 pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(resource
->GetX(), resource
->GetY()));
2150 resource
->SetSize(pt
.x
, pt
.y
, sz
.x
, sz
.y
);
2152 wxNode
* node
= m_propertyWindow
->GetChildren().First();
2155 wxWindow
* child
= (wxWindow
*) node
->Data();
2156 if (child
->IsKindOf(CLASSINFO(wxControl
)))
2158 resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(child
);
2161 sz
= m_propertyWindow
->ConvertPixelsToDialog(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2162 pt
= m_propertyWindow
->ConvertPixelsToDialog(wxPoint(resource
->GetX(), resource
->GetY()));
2166 sz
= m_propertyWindow
->ConvertDialogToPixels(wxSize(resource
->GetWidth(), resource
->GetHeight()));
2167 pt
= m_propertyWindow
->ConvertDialogToPixels(wxPoint(resource
->GetX(), resource
->GetY()));
2169 resource
->SetSize(pt
.x
, pt
.y
, sz
.x
, sz
.y
);
2171 node
= node
->Next();
2180 wxProperty
*wxDialogPropertyInfo::GetProperty(wxString
& name
)
2182 wxDialog
*dialogWindow
= (wxDialog
*)m_propertyWindow
;
2183 if (name
== "modal")
2185 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(dialogWindow
);
2189 bool modal
= (resource
->GetValue1() != 0);
2190 return new wxProperty(name
, modal
, "bool");
2193 return wxPanelPropertyInfo::GetProperty(name
);
2196 bool wxDialogPropertyInfo::SetProperty(wxString
& name
, wxProperty
*property
)
2198 wxDialog
*dialogWindow
= (wxDialog
*)m_propertyWindow
;
2200 if (name
== "modal")
2202 wxItemResource
*resource
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(dialogWindow
);
2206 resource
->SetValue1(property
->GetValue().BoolValue());
2210 return wxPanelPropertyInfo::SetProperty(name
, property
);
2213 void wxDialogPropertyInfo::GetPropertyNames(wxStringList
& names
)
2215 wxPanelPropertyInfo::GetPropertyNames(names
);
2220 bool wxDialogPropertyInfo::InstantiateResource(wxItemResource
*resource
)
2222 wxDialog
*dialog
= (wxDialog
*)m_propertyWindow
;
2223 wxString
str(dialog
->GetTitle());
2224 resource
->SetTitle(str
);
2226 return wxPanelPropertyInfo::InstantiateResource(resource
);
2234 int wxStringToFontWeight(wxString
& val
)
2236 if (val
== "wxBOLD") return wxBOLD
;
2237 else if (val
== "wxLIGHT") return wxLIGHT
;
2238 else return wxNORMAL
;
2241 int wxStringToFontStyle(wxString
& val
)
2243 if (val
== "wxITALIC") return wxITALIC
;
2244 else if (val
== "wxSLANT") return wxSLANT
;
2245 else return wxNORMAL
;
2248 int wxStringToFontFamily(wxString
& val
)
2250 if (val
== "wxDECORATIVE") return wxDECORATIVE
;
2251 else if (val
== "wxROMAN") return wxROMAN
;
2252 else if (val
== "wxSCRIPT") return wxSCRIPT
;
2253 else if (val
== "wxMODERN") return wxMODERN
;
2254 else if (val
== "wxTELETYPE") return wxTELETYPE
;
2255 else return wxSWISS
;
2259 /// Resource symbol validator
2261 IMPLEMENT_DYNAMIC_CLASS(wxResourceSymbolValidator
, wxPropertyListValidator
)
2263 wxResourceSymbolValidator::wxResourceSymbolValidator(long flags
):
2264 wxPropertyListValidator(flags
)
2268 wxResourceSymbolValidator::~wxResourceSymbolValidator(void)
2272 bool wxResourceSymbolValidator::OnCheckValue(wxProperty
*WXUNUSED(property
), wxPropertyListView
*WXUNUSED(view
), wxWindow
*WXUNUSED(parentWindow
))
2277 // Called when TICK is pressed or focus is lost or view wants to update
2278 // the property list.
2279 // Does the transferance from the property editing area to the property itself
2280 bool wxResourceSymbolValidator::OnRetrieveValue(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*WXUNUSED(parentWindow
))
2282 if (!view
->GetValueText())
2284 wxString
value(view
->GetValueText()->GetValue());
2285 property
->GetValue() = value
;
2289 // Called when TICK is pressed or focus is lost or view wants to update
2290 // the property list.
2291 // Does the transferance from the property editing area to the property itself
2292 bool wxResourceSymbolValidator::OnDisplayValue(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*WXUNUSED(parentWindow
))
2294 if (!view
->GetValueText())
2296 wxString
str(property
->GetValue().GetStringRepresentation());
2297 view
->GetValueText()->SetValue(str
);
2301 // Called when the property is double clicked. Extra functionality can be provided,
2302 // cycling through possible values.
2303 bool wxResourceSymbolValidator::OnDoubleClick(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*parentWindow
)
2305 if (!view
->GetValueText())
2307 OnEdit(property
, view
, parentWindow
);
2311 bool wxResourceSymbolValidator::OnPrepareControls(wxProperty
*WXUNUSED(property
), wxPropertyListView
*view
, wxWindow
*WXUNUSED(parentWindow
))
2313 if (view
->GetConfirmButton())
2314 view
->GetConfirmButton()->Enable(TRUE
);
2315 if (view
->GetCancelButton())
2316 view
->GetCancelButton()->Enable(TRUE
);
2317 if (view
->GetEditButton())
2318 view
->GetEditButton()->Enable(TRUE
);
2319 if (view
->GetValueText())
2320 view
->GetValueText()->Enable((GetFlags() & wxPROP_ALLOW_TEXT_EDITING
) == wxPROP_ALLOW_TEXT_EDITING
);
2324 void wxResourceSymbolValidator::OnEdit(wxProperty
*property
, wxPropertyListView
*view
, wxWindow
*parentWindow
)
2326 if (!view
->GetValueText())
2329 wxResourceSymbolDialog
* dialog
= new wxResourceSymbolDialog(parentWindow
, -1, "Edit Symbol");
2331 // Split name/id pair e.g. "IDC_TEXT=123"
2332 wxString
value(property
->GetValue().StringValue());
2334 wxString strName
= value
.Before('=');
2335 wxString strId
= value
.After('=');
2337 dialog
->SetSymbol(strName
);
2338 dialog
->SetId(atoi(strId
));
2342 if (dialog
->ShowModal() == wxID_OK
)
2344 wxString
symbolName(dialog
->GetSymbol());
2345 long id
= dialog
->GetId();
2349 str
.Printf("%d", id
);
2350 property
->GetValue() = symbolName
+ wxString("=") + str
;
2352 view
->DisplayProperty(property
);
2353 view
->UpdatePropertyDisplayInList(property
);
2354 view
->OnPropertyChanged(property
);
2358 BEGIN_EVENT_TABLE(wxResourceSymbolDialog
, wxDialog
)
2359 EVT_BUTTON(wxID_OK
, wxResourceSymbolDialog::OnOK
)
2360 EVT_COMBOBOX(ID_SYMBOLNAME_COMBOBOX
, wxResourceSymbolDialog::OnComboBoxSelect
)
2361 EVT_TEXT(ID_SYMBOLNAME_COMBOBOX
, wxResourceSymbolDialog::OnSymbolNameUpdate
)
2364 wxResourceSymbolDialog::wxResourceSymbolDialog(wxWindow
* parent
, const wxWindowID id
, const wxString
& title
, const wxPoint
& pos
,
2365 const wxSize
& size
, long style
):
2366 wxDialog(parent
, id
, title
, pos
, size
, style
)
2371 (void) new wxStaticText(this, -1, "Name: ", wxPoint(x
, y
));
2375 m_nameCtrl
= new wxComboBox(this, ID_SYMBOLNAME_COMBOBOX
, "",
2376 wxPoint(x
, y
), wxSize(200, -1), 0, NULL
, wxCB_DROPDOWN
|wxCB_SORT
);
2381 (void) new wxStaticText(this, -1, "Id: ", wxPoint(x
, y
));
2385 m_idCtrl
= new wxTextCtrl(this, ID_SYMBOLID_TEXTCTRL
, "",
2386 wxPoint(x
, y
), wxSize(200, -1));
2390 (void) new wxButton(this, wxID_OK
, "OK", wxPoint(x
, y
), wxSize(80, -1));
2393 (void) new wxButton(this, wxID_CANCEL
, "Cancel", wxPoint(x
, y
), wxSize(80, -1));
2399 void wxResourceSymbolDialog::Init()
2402 defaultId
.Printf("%ld", m_symbolId
);
2404 m_nameCtrl
->SetValue(m_symbolName
);
2405 m_idCtrl
->SetValue(defaultId
);
2407 wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().FillComboBox(m_nameCtrl
);
2410 void wxResourceSymbolDialog::OnOK(wxCommandEvent
& event
)
2414 wxDialog::OnOK(event
);
2418 bool wxResourceSymbolDialog::CheckValues()
2420 wxString
nameStr(m_nameCtrl
->GetValue());
2421 wxString
idStr(m_idCtrl
->GetValue());
2422 int id
= atoi(idStr
);
2426 wxMessageBox("Identifier cannot be missing or zero", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2431 wxMessageBox("Please enter a symbol name", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2434 if (nameStr
.Contains(" "))
2436 wxMessageBox("Symbol name cannot contain spaces.", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2439 if (nameStr
.Contains("="))
2441 wxMessageBox("Symbol name cannot contain =.", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2444 if (nameStr
.IsNumber())
2446 wxMessageBox("Symbol name cannot be a number.", "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2449 // TODO: other checks on the name syntax.
2451 if (!wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(nameStr
))
2453 // If we change the id for an existing symbol, we need to:
2454 // 1) Check if there are any other resources currently using the original id.
2455 // If so, will need to change their id to the new id, in SetProperty.
2456 // 2) Remove the old symbol, add the new symbol.
2457 // In this check, we don't have to do this, but we need to do it in SetProperty.
2459 if (nameStr
== GetSymbol() && id
!= GetId())
2461 // It's OK to change the id. But we'll need to change all matching ids in all resources,
2465 // If we change the name but not the id... we'll just need to remove and
2466 // re-add the symbol/id pair, in SetProperty.
2467 if (nameStr
!= GetSymbol() && id
== GetId())
2471 // What if we're changing both the name and the id?
2472 // - if there's no symbol of that name, just remove the old, add the new (in SetProperty)
2473 // - if there is a symbol of that name, if id matches, do nothing. If not, veto.
2475 if (nameStr
!= GetSymbol() && id
!= GetId())
2477 if (!wxResourceManager::GetCurrentResourceManager()->IsIdentifierOK(nameStr
, id
))
2479 wxMessageBox("This integer id is already being used under a different name.\nPlease choose another.",
2480 "Dialog Editor", wxOK
|wxICON_EXCLAMATION
, this);
2493 void wxResourceSymbolDialog::OnComboBoxSelect(wxCommandEvent
& WXUNUSED(event
))
2495 wxString
str(m_nameCtrl
->GetStringSelection());
2496 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(str
))
2498 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2500 str2
.Printf("%d", id
);
2501 m_idCtrl
->SetValue(str2
);
2502 m_idCtrl
->Enable(FALSE
);
2506 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(str
))
2508 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2510 str2
.Printf("%d", id
);
2511 m_idCtrl
->SetValue(str2
);
2513 m_idCtrl
->Enable(TRUE
);
2517 void wxResourceSymbolDialog::OnSymbolNameUpdate(wxCommandEvent
& WXUNUSED(event
))
2519 wxString
str(m_nameCtrl
->GetValue());
2520 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().IsStandardSymbol(str
))
2522 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2524 str2
.Printf("%d", id
);
2525 m_idCtrl
->SetValue(str2
);
2526 m_idCtrl
->Enable(FALSE
);
2530 if (wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().SymbolExists(str
))
2532 int id
= wxResourceManager::GetCurrentResourceManager()->GetSymbolTable().GetIdForSymbol(str
);
2534 str2
.Printf("%d", id
);
2535 m_idCtrl
->SetValue(str2
);
2537 m_idCtrl
->Enable(TRUE
);