1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Resource system
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "resource.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #if wxUSE_WX_RESOURCES
26 #pragma warning(disable:4706) // assignment within conditional expression
34 #include "wx/gdicmn.h"
38 #include "wx/stattext.h"
39 #include "wx/button.h"
40 #include "wx/bmpbuttn.h"
41 #include "wx/radiobox.h"
42 #include "wx/radiobut.h"
43 #include "wx/listbox.h"
44 #include "wx/choice.h"
45 #include "wx/checkbox.h"
46 #include "wx/settings.h"
47 #include "wx/slider.h"
48 #include "wx/statbox.h"
49 #include "wx/statbmp.h"
53 #include "wx/textctrl.h"
54 #include "wx/msgdlg.h"
59 #include "wx/radiobut.h"
63 #include "wx/scrolbar.h"
67 #include "wx/combobox.h"
70 #include "wx/validate.h"
79 #include "wx/resource.h"
80 #include "wx/string.h"
81 #include "wx/wxexpr.h"
83 #include "wx/settings.h"
85 // Forward (private) declarations
86 bool wxResourceInterpretResources(wxResourceTable
& table
, wxExprDatabase
& db
);
87 wxItemResource
*wxResourceInterpretDialog(wxResourceTable
& table
, wxExpr
*expr
, bool isPanel
= FALSE
);
88 wxItemResource
*wxResourceInterpretControl(wxResourceTable
& table
, wxExpr
*expr
);
89 wxItemResource
*wxResourceInterpretMenu(wxResourceTable
& table
, wxExpr
*expr
);
90 wxItemResource
*wxResourceInterpretMenuBar(wxResourceTable
& table
, wxExpr
*expr
);
91 wxItemResource
*wxResourceInterpretString(wxResourceTable
& table
, wxExpr
*expr
);
92 wxItemResource
*wxResourceInterpretBitmap(wxResourceTable
& table
, wxExpr
*expr
);
93 wxItemResource
*wxResourceInterpretIcon(wxResourceTable
& table
, wxExpr
*expr
);
94 // Interpret list expression
95 wxFont
wxResourceInterpretFontSpec(wxExpr
*expr
);
97 bool wxResourceReadOneResource(FILE *fd
, wxExprDatabase
& db
, bool *eof
, wxResourceTable
*table
= (wxResourceTable
*) NULL
);
98 bool wxResourceParseIncludeFile(const wxString
& f
, wxResourceTable
*table
= (wxResourceTable
*) NULL
);
100 wxResourceTable
*wxDefaultResourceTable
= (wxResourceTable
*) NULL
;
102 char *wxResourceBuffer
= (char *) NULL
;
103 long wxResourceBufferSize
= 0;
104 long wxResourceBufferCount
= 0;
105 int wxResourceStringPtr
= 0;
107 void wxInitializeResourceSystem()
109 wxDefaultResourceTable
= new wxResourceTable
;
112 void wxCleanUpResourceSystem()
114 delete wxDefaultResourceTable
;
115 if (wxResourceBuffer
)
116 delete[] wxResourceBuffer
;
119 void wxLogWarning(char *msg
)
121 wxMessageBox(msg
, _("Warning"), wxOK
);
124 #if !USE_SHARED_LIBRARY
125 IMPLEMENT_DYNAMIC_CLASS(wxItemResource
, wxObject
)
126 IMPLEMENT_DYNAMIC_CLASS(wxResourceTable
, wxHashTable
)
129 wxItemResource::wxItemResource()
135 m_x
= m_y
= m_width
= m_height
= 0;
136 m_value1
= m_value2
= m_value3
= m_value5
= 0;
142 wxItemResource::~wxItemResource()
144 wxNode
*node
= m_children
.First();
147 wxItemResource
*item
= (wxItemResource
*)node
->Data();
150 node
= m_children
.First();
158 wxResourceTable::wxResourceTable():wxHashTable(wxKEY_STRING
), identifiers(wxKEY_STRING
)
162 wxResourceTable::~wxResourceTable()
167 wxItemResource
*wxResourceTable::FindResource(const wxString
& name
) const
169 wxItemResource
*item
= (wxItemResource
*)Get((char *)(const char *)name
);
173 void wxResourceTable::AddResource(wxItemResource
*item
)
175 wxString name
= item
->GetName();
177 name
= item
->GetTitle();
181 // Delete existing resource, if any.
187 bool wxResourceTable::DeleteResource(const wxString
& name
)
189 wxItemResource
*item
= (wxItemResource
*)Delete((char *)(const char *)name
);
192 // See if any resource has this as its child; if so, delete from
193 // parent's child list.
195 wxNode
*node
= (wxNode
*) NULL
;
196 while ((node
= Next()))
198 wxItemResource
*parent
= (wxItemResource
*)node
->Data();
199 if (parent
->GetChildren().Member(item
))
201 parent
->GetChildren().DeleteObject(item
);
213 bool wxResourceTable::ParseResourceFile(const wxString
& filename
)
217 FILE *fd
= fopen((const char*) filename
, "r");
221 while (wxResourceReadOneResource(fd
, db
, &eof
, this) && !eof
)
226 return wxResourceInterpretResources(*this, db
);
229 bool wxResourceTable::ParseResourceData(const wxString
& data
)
232 if (!db
.ReadFromString(data
))
234 wxLogWarning(_("Ill-formed resource file syntax."));
238 return wxResourceInterpretResources(*this, db
);
241 bool wxResourceTable::RegisterResourceBitmapData(const wxString
& name
, char bits
[], int width
, int height
)
243 // Register pre-loaded bitmap data
244 wxItemResource
*item
= new wxItemResource
;
245 // item->SetType(wxRESOURCE_TYPE_XBM_DATA);
246 item
->SetType("wxXBMData");
248 item
->SetValue1((long)bits
);
249 item
->SetValue2((long)width
);
250 item
->SetValue3((long)height
);
255 bool wxResourceTable::RegisterResourceBitmapData(const wxString
& name
, char **data
)
257 // Register pre-loaded bitmap data
258 wxItemResource
*item
= new wxItemResource
;
259 // item->SetType(wxRESOURCE_TYPE_XPM_DATA);
260 item
->SetType("wxXPMData");
262 item
->SetValue1((long)data
);
267 bool wxResourceTable::SaveResource(const wxString
& WXUNUSED(filename
))
272 void wxResourceTable::ClearTable()
275 wxNode
*node
= Next();
278 wxNode
*next
= Next();
279 wxItemResource
*item
= (wxItemResource
*)node
->Data();
286 wxControl
*wxResourceTable::CreateItem(wxWindow
*parent
, const wxItemResource
* childResource
, const wxItemResource
* parentResource
) const
288 int id
= childResource
->GetId();
292 bool dlgUnits
= ((parentResource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) != 0);
294 wxControl
*control
= (wxControl
*) NULL
;
295 wxString
itemType(childResource
->GetType());
301 pos
= parent
->ConvertDialogToPixels(wxPoint(childResource
->GetX(), childResource
->GetY()));
302 size
= parent
->ConvertDialogToPixels(wxSize(childResource
->GetWidth(), childResource
->GetHeight()));
306 pos
= wxPoint(childResource
->GetX(), childResource
->GetY());
307 size
= wxSize(childResource
->GetWidth(), childResource
->GetHeight());
310 if (itemType
== wxString("wxButton") || itemType
== wxString("wxBitmapButton"))
312 if (childResource
->GetValue4() != "")
315 wxBitmap bitmap
= childResource
->GetBitmap();
318 bitmap
= wxResourceCreateBitmap(childResource
->GetValue4(), (wxResourceTable
*)this);
319 ((wxItemResource
*) childResource
)->SetBitmap(bitmap
);
322 control
= new wxBitmapButton(parent
, id
, bitmap
, pos
, size
,
323 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
326 // Normal, text button
327 control
= new wxButton(parent
, id
, childResource
->GetTitle(), pos
, size
,
328 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
330 else if (itemType
== wxString("wxMessage") || itemType
== wxString("wxStaticText") ||
331 itemType
== wxString("wxStaticBitmap"))
333 if (childResource
->GetValue4() != "")
336 wxBitmap bitmap
= childResource
->GetBitmap();
339 bitmap
= wxResourceCreateBitmap(childResource
->GetValue4(), (wxResourceTable
*)this);
340 ((wxItemResource
*) childResource
)->SetBitmap(bitmap
);
342 #if wxUSE_BITMAP_MESSAGE
344 control
= new wxStaticBitmap(parent
, id
, bitmap
, pos
, size
,
345 childResource
->GetStyle(), childResource
->GetName());
350 control
= new wxStaticText(parent
, id
, childResource
->GetTitle(), pos
, size
,
351 childResource
->GetStyle(), childResource
->GetName());
354 else if (itemType
== wxString("wxText") || itemType
== wxString("wxTextCtrl") || itemType
== wxString("wxMultiText"))
356 control
= new wxTextCtrl(parent
, id
, childResource
->GetValue4(), pos
, size
,
357 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
359 else if (itemType
== wxString("wxCheckBox"))
361 control
= new wxCheckBox(parent
, id
, childResource
->GetTitle(), pos
, size
,
362 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
364 ((wxCheckBox
*)control
)->SetValue((childResource
->GetValue1() != 0));
367 else if (itemType
== wxString("wxGauge"))
369 control
= new wxGauge(parent
, id
, (int)childResource
->GetValue2(), pos
, size
,
370 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
372 ((wxGauge
*)control
)->SetValue((int)childResource
->GetValue1());
375 #if wxUSE_RADIOBUTTON
376 else if (itemType
== wxString("wxRadioButton"))
378 control
= new wxRadioButton(parent
, id
, childResource
->GetTitle(), // (int)childResource->GetValue1(),
380 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
384 else if (itemType
== wxString("wxScrollBar"))
386 control
= new wxScrollBar(parent
, id
, pos
, size
,
387 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
389 ((wxScrollBar *)control)->SetValue((int)childResource->GetValue1());
390 ((wxScrollBar *)control)->SetPageSize((int)childResource->GetValue2());
391 ((wxScrollBar *)control)->SetObjectLength((int)childResource->GetValue3());
392 ((wxScrollBar *)control)->SetViewLength((int)(long)childResource->GetValue5());
394 ((wxScrollBar
*)control
)->SetScrollbar((int)childResource
->GetValue1(),(int)childResource
->GetValue2(),
395 (int)childResource
->GetValue3(),(int)(long)childResource
->GetValue5(),FALSE
);
399 else if (itemType
== wxString("wxSlider"))
401 control
= new wxSlider(parent
, id
, (int)childResource
->GetValue1(),
402 (int)childResource
->GetValue2(), (int)childResource
->GetValue3(), pos
, size
,
403 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
405 else if (itemType
== wxString("wxGroupBox") || itemType
== wxString("wxStaticBox"))
407 control
= new wxStaticBox(parent
, id
, childResource
->GetTitle(), pos
, size
,
408 childResource
->GetStyle(), childResource
->GetName());
410 else if (itemType
== wxString("wxListBox"))
412 wxStringList
& stringList
= childResource
->GetStringValues();
413 wxString
*strings
= (wxString
*) NULL
;
415 if (stringList
.Number() > 0)
417 noStrings
= stringList
.Number();
418 strings
= new wxString
[noStrings
];
419 wxNode
*node
= stringList
.First();
423 strings
[i
] = (char *)node
->Data();
428 control
= new wxListBox(parent
, id
, pos
, size
,
429 noStrings
, strings
, childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
434 else if (itemType
== wxString("wxChoice"))
436 wxStringList
& stringList
= childResource
->GetStringValues();
437 wxString
*strings
= (wxString
*) NULL
;
439 if (stringList
.Number() > 0)
441 noStrings
= stringList
.Number();
442 strings
= new wxString
[noStrings
];
443 wxNode
*node
= stringList
.First();
447 strings
[i
] = (char *)node
->Data();
452 control
= new wxChoice(parent
, id
, pos
, size
,
453 noStrings
, strings
, childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
459 else if (itemType
== wxString("wxComboBox"))
461 wxStringList
& stringList
= childResource
->GetStringValues();
462 wxString
*strings
= (wxString
*) NULL
;
464 if (stringList
.Number() > 0)
466 noStrings
= stringList
.Number();
467 strings
= new wxString
[noStrings
];
468 wxNode
*node
= stringList
.First();
472 strings
[i
] = (char *)node
->Data();
477 control
= new wxComboBox(parent
, id
, childResource
->GetValue4(), pos
, size
,
478 noStrings
, strings
, childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
484 else if (itemType
== wxString("wxRadioBox"))
486 wxStringList
& stringList
= childResource
->GetStringValues();
487 wxString
*strings
= (wxString
*) NULL
;
489 if (stringList
.Number() > 0)
491 noStrings
= stringList
.Number();
492 strings
= new wxString
[noStrings
];
493 wxNode
*node
= stringList
.First();
497 strings
[i
] = (char *)node
->Data();
502 control
= new wxRadioBox(parent
, (wxWindowID
) id
, wxString(childResource
->GetTitle()), pos
, size
,
503 noStrings
, strings
, (int)childResource
->GetValue1(), childResource
->GetStyle(), wxDefaultValidator
,
504 childResource
->GetName());
510 if ((parentResource
->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS
) != 0)
512 // Don't set font; will be inherited from parent.
516 if (control
&& childResource
->GetFont().Ok())
517 control
->SetFont(childResource
->GetFont());
523 * Interpret database as a series of resources
526 bool wxResourceInterpretResources(wxResourceTable
& table
, wxExprDatabase
& db
)
528 wxNode
*node
= db
.First();
531 wxExpr
*clause
= (wxExpr
*)node
->Data();
532 wxString
functor(clause
->Functor());
534 wxItemResource
*item
= (wxItemResource
*) NULL
;
535 if (functor
== "dialog")
536 item
= wxResourceInterpretDialog(table
, clause
);
537 else if (functor
== "panel")
538 item
= wxResourceInterpretDialog(table
, clause
, TRUE
);
539 else if (functor
== "menubar")
540 item
= wxResourceInterpretMenuBar(table
, clause
);
541 else if (functor
== "menu")
542 item
= wxResourceInterpretMenu(table
, clause
);
543 else if (functor
== "string")
544 item
= wxResourceInterpretString(table
, clause
);
545 else if (functor
== "bitmap")
546 item
= wxResourceInterpretBitmap(table
, clause
);
547 else if (functor
== "icon")
548 item
= wxResourceInterpretIcon(table
, clause
);
552 // Remove any existing resource of same name
553 if (item
->GetName() != "")
554 table
.DeleteResource(item
->GetName());
555 table
.AddResource(item
);
562 static const char *g_ValidControlClasses
[] =
586 static bool wxIsValidControlClass(const wxString
& c
)
588 for ( size_t i
= 0; i
< WXSIZEOF(g_ValidControlClasses
); i
++ )
590 if ( c
== g_ValidControlClasses
[i
] )
596 wxItemResource
*wxResourceInterpretDialog(wxResourceTable
& table
, wxExpr
*expr
, bool isPanel
)
598 wxItemResource
*dialogItem
= new wxItemResource
;
600 dialogItem
->SetType("wxPanel");
602 dialogItem
->SetType("wxDialog");
606 wxString backColourHex
= "";
607 wxString labelColourHex
= "";
608 wxString buttonColourHex
= "";
610 long windowStyle
= wxDEFAULT_DIALOG_STYLE
;
614 int x
= 0; int y
= 0; int width
= -1; int height
= -1;
616 wxExpr
*labelFontExpr
= (wxExpr
*) NULL
;
617 wxExpr
*buttonFontExpr
= (wxExpr
*) NULL
;
618 wxExpr
*fontExpr
= (wxExpr
*) NULL
;
619 expr
->GetAttributeValue("style", style
);
620 expr
->GetAttributeValue("name", name
);
621 expr
->GetAttributeValue("title", title
);
622 expr
->GetAttributeValue("x", x
);
623 expr
->GetAttributeValue("y", y
);
624 expr
->GetAttributeValue("width", width
);
625 expr
->GetAttributeValue("height", height
);
626 expr
->GetAttributeValue("modal", isModal
);
627 expr
->GetAttributeValue("label_font", &labelFontExpr
);
628 expr
->GetAttributeValue("button_font", &buttonFontExpr
);
629 expr
->GetAttributeValue("font", &fontExpr
);
630 expr
->GetAttributeValue("background_colour", backColourHex
);
631 expr
->GetAttributeValue("label_colour", labelColourHex
);
632 expr
->GetAttributeValue("button_colour", buttonColourHex
);
634 int useDialogUnits
= 0;
635 expr
->GetAttributeValue("use_dialog_units", useDialogUnits
);
636 if (useDialogUnits
!= 0)
637 dialogItem
->SetResourceStyle(dialogItem
->GetResourceStyle() | wxRESOURCE_DIALOG_UNITS
);
640 expr
->GetAttributeValue("use_system_defaults", useDefaults
);
641 if (useDefaults
!= 0)
642 dialogItem
->SetResourceStyle(dialogItem
->GetResourceStyle() | wxRESOURCE_USE_DEFAULTS
);
645 expr
->GetAttributeValue("id", id
);
646 dialogItem
->SetId(id
);
650 windowStyle
= wxParseWindowStyle(style
);
652 dialogItem
->SetStyle(windowStyle
);
653 dialogItem
->SetValue1(isModal
);
654 dialogItem
->SetName(name
);
655 dialogItem
->SetTitle(title
);
656 dialogItem
->SetSize(x
, y
, width
, height
);
658 if (backColourHex
!= "")
663 r
= wxHexToDec(backColourHex
.Mid(0, 2));
664 g
= wxHexToDec(backColourHex
.Mid(2, 2));
665 b
= wxHexToDec(backColourHex
.Mid(4, 2));
666 dialogItem
->SetBackgroundColour(wxColour((unsigned char)r
,(unsigned char)g
,(unsigned char)b
));
668 if (labelColourHex
!= "")
673 r
= wxHexToDec(labelColourHex
.Mid(0, 2));
674 g
= wxHexToDec(labelColourHex
.Mid(2, 2));
675 b
= wxHexToDec(labelColourHex
.Mid(4, 2));
676 dialogItem
->SetLabelColour(wxColour((unsigned char)r
,(unsigned char)g
,(unsigned char)b
));
678 if (buttonColourHex
!= "")
683 r
= wxHexToDec(buttonColourHex
.Mid(0, 2));
684 g
= wxHexToDec(buttonColourHex
.Mid(2, 2));
685 b
= wxHexToDec(buttonColourHex
.Mid(4, 2));
686 dialogItem
->SetButtonColour(wxColour((unsigned char)r
,(unsigned char)g
,(unsigned char)b
));
690 dialogItem
->SetFont(wxResourceInterpretFontSpec(fontExpr
));
691 else if (buttonFontExpr
)
692 dialogItem
->SetFont(wxResourceInterpretFontSpec(buttonFontExpr
));
693 else if (labelFontExpr
)
694 dialogItem
->SetFont(wxResourceInterpretFontSpec(labelFontExpr
));
696 // Now parse all controls
697 wxExpr
*controlExpr
= expr
->GetFirst();
700 if (controlExpr
->Number() == 3)
702 wxString
controlKeyword(controlExpr
->Nth(1)->StringValue());
703 if (controlKeyword
!= "" && controlKeyword
== "control")
705 // The value part: always a list.
706 wxExpr
*listExpr
= controlExpr
->Nth(2);
707 if (listExpr
->Type() == PrologList
)
709 wxItemResource
*controlItem
= wxResourceInterpretControl(table
, listExpr
);
712 dialogItem
->GetChildren().Append(controlItem
);
717 controlExpr
= controlExpr
->GetNext();
722 wxItemResource
*wxResourceInterpretControl(wxResourceTable
& table
, wxExpr
*expr
)
724 wxItemResource
*controlItem
= new wxItemResource
;
726 // First, find the standard features of a control definition:
727 // [optional integer/string id], control name, title, style, name, x, y, width, height
729 wxString controlType
;
734 long windowStyle
= 0;
735 int x
= 0; int y
= 0; int width
= -1; int height
= -1;
738 wxExpr
*expr1
= expr
->Nth(0);
740 if ( expr1
->Type() == PrologString
|| expr1
->Type() == PrologWord
)
742 if ( wxIsValidControlClass(expr1
->StringValue()) )
745 controlType
= expr1
->StringValue();
749 wxString
str(expr1
->StringValue());
750 id
= wxResourceGetIdentifier(str
, &table
);
753 wxLogWarning(_("Could not resolve control class or id '%s'. "
754 "Use (non-zero) integer instead\n or provide #define "
755 "(see manual for caveats)"),
756 (const char*) expr1
->StringValue());
758 return (wxItemResource
*) NULL
;
762 // Success - we have an id, so the 2nd element must be the control class.
763 controlType
= expr
->Nth(1)->StringValue();
768 else if (expr1
->Type() == PrologInteger
)
770 id
= (int)expr1
->IntegerValue();
771 // Success - we have an id, so the 2nd element must be the control class.
772 controlType
= expr
->Nth(1)->StringValue();
776 expr1
= expr
->Nth(count
);
779 title
= expr1
->StringValue();
781 expr1
= expr
->Nth(count
);
785 style
= expr1
->StringValue();
786 windowStyle
= wxParseWindowStyle(style
);
789 expr1
= expr
->Nth(count
);
792 name
= expr1
->StringValue();
794 expr1
= expr
->Nth(count
);
797 x
= (int)expr1
->IntegerValue();
799 expr1
= expr
->Nth(count
);
802 y
= (int)expr1
->IntegerValue();
804 expr1
= expr
->Nth(count
);
807 width
= (int)expr1
->IntegerValue();
809 expr1
= expr
->Nth(count
);
812 height
= (int)expr1
->IntegerValue();
814 controlItem
->SetStyle(windowStyle
);
815 controlItem
->SetName(name
);
816 controlItem
->SetTitle(title
);
817 controlItem
->SetSize(x
, y
, width
, height
);
818 controlItem
->SetType(controlType
);
819 controlItem
->SetId(id
);
821 if (controlType
== "wxButton")
823 // Check for bitmap resource name (in case loading old-style resource file)
824 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
826 wxString
str(expr
->Nth(count
)->StringValue());
827 controlItem
->SetValue4(str
);
829 controlItem
->SetType("wxBitmapButton");
831 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
832 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
834 else if (controlType
== "wxBitmapButton")
836 // Check for bitmap resource name
837 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
839 wxString
str(expr
->Nth(count
)->StringValue());
840 controlItem
->SetValue4(str
);
842 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
843 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
846 else if (controlType
== "wxCheckBox")
848 // Check for default value
849 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
851 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
853 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
854 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
857 #if wxUSE_RADIOBUTTON
858 else if (controlType
== "wxRadioButton")
860 // Check for default value
861 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
863 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
865 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
866 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
870 else if (controlType
== "wxText" || controlType
== "wxTextCtrl" || controlType
== "wxMultiText")
872 // Check for default value
873 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
875 wxString
str(expr
->Nth(count
)->StringValue());
876 controlItem
->SetValue4(str
);
879 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
881 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
882 // Do nothing - no label font any more
884 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
885 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
889 else if (controlType
== "wxMessage" || controlType
== "wxStaticText")
891 // Check for bitmap resource name (in case it's an old-style .wxr file)
892 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
894 wxString
str(expr
->Nth(count
)->StringValue());
895 controlItem
->SetValue4(str
);
897 controlItem
->SetType("wxStaticText");
899 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
900 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
902 else if (controlType
== "wxStaticBitmap")
904 // Check for bitmap resource name
905 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
907 wxString
str(expr
->Nth(count
)->StringValue());
908 controlItem
->SetValue4(str
);
911 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
912 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
914 else if (controlType
== "wxGroupBox" || controlType
== "wxStaticBox")
916 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
917 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
919 else if (controlType
== "wxGauge")
921 // Check for default value
922 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
924 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
928 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
930 controlItem
->SetValue2(expr
->Nth(count
)->IntegerValue());
933 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
935 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
939 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
940 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
945 else if (controlType
== "wxSlider")
947 // Check for default value
948 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
950 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
954 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
956 controlItem
->SetValue2(expr
->Nth(count
)->IntegerValue());
960 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
962 controlItem
->SetValue3(expr
->Nth(count
)->IntegerValue());
965 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
967 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
971 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
972 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
978 else if (controlType
== "wxScrollBar")
981 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
983 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
987 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
989 controlItem
->SetValue2(expr
->Nth(count
)->IntegerValue());
993 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
995 controlItem
->SetValue3(expr
->Nth(count
)->IntegerValue());
999 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
1000 controlItem
->SetValue5(expr
->Nth(count
)->IntegerValue());
1005 else if (controlType
== "wxListBox")
1007 wxExpr
*valueList
= (wxExpr
*) NULL
;
1009 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1011 wxStringList stringList
;
1012 wxExpr
*stringExpr
= valueList
->GetFirst();
1015 stringList
.Add(stringExpr
->StringValue());
1016 stringExpr
= stringExpr
->GetNext();
1018 controlItem
->SetStringValues(stringList
);
1020 // This is now obsolete: it's in the window style.
1021 // Check for wxSINGLE/wxMULTIPLE
1022 wxExpr
*mult
= (wxExpr
*) NULL
;
1024 controlItem->SetValue1(wxLB_SINGLE);
1026 if ((mult
= expr
->Nth(count
)) && ((mult
->Type() == PrologString
)||(mult
->Type() == PrologWord
)))
1029 wxString m(mult->StringValue());
1030 if (m == "wxLB_MULTIPLE")
1031 controlItem->SetValue1(wxLB_MULTIPLE);
1032 else if (m == "wxLB_EXTENDED")
1033 controlItem->SetValue1(wxLB_EXTENDED);
1038 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1040 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1042 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1043 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1047 else if (controlType
== "wxChoice")
1049 wxExpr
*valueList
= (wxExpr
*) NULL
;
1050 // Check for default value list
1051 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1053 wxStringList stringList
;
1054 wxExpr
*stringExpr
= valueList
->GetFirst();
1057 stringList
.Add(stringExpr
->StringValue());
1058 stringExpr
= stringExpr
->GetNext();
1060 controlItem
->SetStringValues(stringList
);
1064 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1066 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1069 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1070 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1075 else if (controlType
== "wxComboBox")
1077 wxExpr
*textValue
= expr
->Nth(count
);
1078 if (textValue
&& (textValue
->Type() == PrologString
|| textValue
->Type() == PrologWord
))
1080 wxString
str(textValue
->StringValue());
1081 controlItem
->SetValue4(str
);
1085 wxExpr
*valueList
= (wxExpr
*) NULL
;
1086 // Check for default value list
1087 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1089 wxStringList stringList
;
1090 wxExpr
*stringExpr
= valueList
->GetFirst();
1093 stringList
.Add(stringExpr
->StringValue());
1094 stringExpr
= stringExpr
->GetNext();
1096 controlItem
->SetStringValues(stringList
);
1100 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1102 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1105 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1106 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1113 else if (controlType
== "wxRadioBox")
1115 wxExpr
*valueList
= (wxExpr
*) NULL
;
1116 // Check for default value list
1117 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1119 wxStringList stringList
;
1120 wxExpr
*stringExpr
= valueList
->GetFirst();
1123 stringList
.Add(stringExpr
->StringValue());
1124 stringExpr
= stringExpr
->GetNext();
1126 controlItem
->SetStringValues(stringList
);
1129 // majorDim (number of rows or cols)
1130 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
1132 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
1136 controlItem
->SetValue1(0);
1138 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1140 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1143 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1144 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1152 return (wxItemResource
*) NULL
;
1157 // Forward declaration
1158 wxItemResource
*wxResourceInterpretMenu1(wxResourceTable
& table
, wxExpr
*expr
);
1161 * Interpet a menu item
1164 wxItemResource
*wxResourceInterpretMenuItem(wxResourceTable
& table
, wxExpr
*expr
)
1166 wxItemResource
*item
= new wxItemResource
;
1168 wxExpr
*labelExpr
= expr
->Nth(0);
1169 wxExpr
*idExpr
= expr
->Nth(1);
1170 wxExpr
*helpExpr
= expr
->Nth(2);
1171 wxExpr
*checkableExpr
= expr
->Nth(3);
1173 // Further keywords/attributes to follow sometime...
1174 if (expr
->Number() == 0)
1176 // item->SetType(wxRESOURCE_TYPE_SEPARATOR);
1177 item
->SetType("wxMenuSeparator");
1182 // item->SetType(wxTYPE_MENU); // Well, menu item, but doesn't matter.
1183 item
->SetType("wxMenu"); // Well, menu item, but doesn't matter.
1186 wxString
str(labelExpr
->StringValue());
1187 item
->SetTitle(str
);
1192 // If a string or word, must look up in identifier table.
1193 if ((idExpr
->Type() == PrologString
) || (idExpr
->Type() == PrologWord
))
1195 wxString
str(idExpr
->StringValue());
1196 id
= wxResourceGetIdentifier(str
, &table
);
1199 wxLogWarning(_("Could not resolve menu id '%s'. "
1200 "Use (non-zero) integer instead\n"
1201 "or provide #define (see manual for caveats)"),
1202 (const char*) idExpr
->StringValue());
1205 else if (idExpr
->Type() == PrologInteger
)
1206 id
= (int)idExpr
->IntegerValue();
1207 item
->SetValue1(id
);
1211 wxString
str(helpExpr
->StringValue());
1212 item
->SetValue4(str
);
1215 item
->SetValue2(checkableExpr
->IntegerValue());
1217 // Find the first expression that's a list, for submenu
1218 wxExpr
*subMenuExpr
= expr
->GetFirst();
1219 while (subMenuExpr
&& (subMenuExpr
->Type() != PrologList
))
1220 subMenuExpr
= subMenuExpr
->GetNext();
1224 wxItemResource
*child
= wxResourceInterpretMenuItem(table
, subMenuExpr
);
1225 item
->GetChildren().Append(child
);
1226 subMenuExpr
= subMenuExpr
->GetNext();
1233 * Interpret a nested list as a menu
1236 wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, wxExpr *expr)
1238 wxItemResource *menu = new wxItemResource;
1239 // menu->SetType(wxTYPE_MENU);
1240 menu->SetType("wxMenu");
1241 wxExpr *element = expr->GetFirst();
1244 wxItemResource *item = wxResourceInterpretMenuItem(table, element);
1246 menu->GetChildren().Append(item);
1247 element = element->GetNext();
1253 wxItemResource
*wxResourceInterpretMenu(wxResourceTable
& table
, wxExpr
*expr
)
1255 wxExpr
*listExpr
= (wxExpr
*) NULL
;
1256 expr
->GetAttributeValue("menu", &listExpr
);
1258 return (wxItemResource
*) NULL
;
1260 wxItemResource
*menuResource
= wxResourceInterpretMenuItem(table
, listExpr
);
1263 return (wxItemResource
*) NULL
;
1266 if (expr
->GetAttributeValue("name", name
))
1268 menuResource
->SetName(name
);
1271 return menuResource
;
1274 wxItemResource
*wxResourceInterpretMenuBar(wxResourceTable
& table
, wxExpr
*expr
)
1276 wxExpr
*listExpr
= (wxExpr
*) NULL
;
1277 expr
->GetAttributeValue("menu", &listExpr
);
1279 return (wxItemResource
*) NULL
;
1281 wxItemResource
*resource
= new wxItemResource
;
1282 resource
->SetType("wxMenu");
1283 // resource->SetType(wxTYPE_MENU);
1285 wxExpr
*element
= listExpr
->GetFirst();
1288 wxItemResource
*menuResource
= wxResourceInterpretMenuItem(table
, listExpr
);
1289 resource
->GetChildren().Append(menuResource
);
1290 element
= element
->GetNext();
1294 if (expr
->GetAttributeValue("name", name
))
1296 resource
->SetName(name
);
1302 wxItemResource
*wxResourceInterpretString(wxResourceTable
& WXUNUSED(table
), wxExpr
*WXUNUSED(expr
))
1304 return (wxItemResource
*) NULL
;
1307 wxItemResource
*wxResourceInterpretBitmap(wxResourceTable
& WXUNUSED(table
), wxExpr
*expr
)
1309 wxItemResource
*bitmapItem
= new wxItemResource
;
1310 // bitmapItem->SetType(wxTYPE_BITMAP);
1311 bitmapItem
->SetType("wxBitmap");
1313 if (expr
->GetAttributeValue("name", name
))
1315 bitmapItem
->SetName(name
);
1317 // Now parse all bitmap specifications
1318 wxExpr
*bitmapExpr
= expr
->GetFirst();
1321 if (bitmapExpr
->Number() == 3)
1323 wxString
bitmapKeyword(bitmapExpr
->Nth(1)->StringValue());
1324 if (bitmapKeyword
== "bitmap" || bitmapKeyword
== "icon")
1326 // The value part: always a list.
1327 wxExpr
*listExpr
= bitmapExpr
->Nth(2);
1328 if (listExpr
->Type() == PrologList
)
1330 wxItemResource
*bitmapSpec
= new wxItemResource
;
1331 // bitmapSpec->SetType(wxTYPE_BITMAP);
1332 bitmapSpec
->SetType("wxBitmap");
1334 // List is of form: [filename, bitmaptype, platform, colours, xresolution, yresolution]
1335 // where everything after 'filename' is optional.
1336 wxExpr
*nameExpr
= listExpr
->Nth(0);
1337 wxExpr
*typeExpr
= listExpr
->Nth(1);
1338 wxExpr
*platformExpr
= listExpr
->Nth(2);
1339 wxExpr
*coloursExpr
= listExpr
->Nth(3);
1340 wxExpr
*xresExpr
= listExpr
->Nth(4);
1341 wxExpr
*yresExpr
= listExpr
->Nth(5);
1342 if (nameExpr
&& nameExpr
->StringValue() != "")
1344 bitmapSpec
->SetName(nameExpr
->StringValue());
1346 if (typeExpr
&& typeExpr
->StringValue() != "")
1348 bitmapSpec
->SetValue1(wxParseWindowStyle(typeExpr
->StringValue()));
1351 bitmapSpec
->SetValue1(0);
1353 if (platformExpr
&& platformExpr
->StringValue() != "")
1355 wxString
plat(platformExpr
->StringValue());
1356 if (plat
== "windows" || plat
== "WINDOWS")
1357 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_WINDOWS
);
1358 else if (plat
== "x" || plat
== "X")
1359 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_X
);
1360 else if (plat
== "mac" || plat
== "MAC")
1361 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_MAC
);
1363 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_ANY
);
1366 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_ANY
);
1369 bitmapSpec
->SetValue3(coloursExpr
->IntegerValue());
1373 xres
= (int)xresExpr
->IntegerValue();
1375 yres
= (int)yresExpr
->IntegerValue();
1376 bitmapSpec
->SetSize(0, 0, xres
, yres
);
1378 bitmapItem
->GetChildren().Append(bitmapSpec
);
1382 bitmapExpr
= bitmapExpr
->GetNext();
1388 wxItemResource
*wxResourceInterpretIcon(wxResourceTable
& table
, wxExpr
*expr
)
1390 wxItemResource
*item
= wxResourceInterpretBitmap(table
, expr
);
1393 // item->SetType(wxTYPE_ICON);
1394 item
->SetType("wxIcon");
1398 return (wxItemResource
*) NULL
;
1401 // Interpret list expression as a font
1402 wxFont
wxResourceInterpretFontSpec(wxExpr
*expr
)
1404 if (expr
->Type() != PrologList
)
1408 int family
= wxSWISS
;
1409 int style
= wxNORMAL
;
1410 int weight
= wxNORMAL
;
1412 wxString
faceName("");
1414 wxExpr
*pointExpr
= expr
->Nth(0);
1415 wxExpr
*familyExpr
= expr
->Nth(1);
1416 wxExpr
*styleExpr
= expr
->Nth(2);
1417 wxExpr
*weightExpr
= expr
->Nth(3);
1418 wxExpr
*underlineExpr
= expr
->Nth(4);
1419 wxExpr
*faceNameExpr
= expr
->Nth(5);
1421 point
= (int)pointExpr
->IntegerValue();
1426 str
= familyExpr
->StringValue();
1427 family
= (int)wxParseWindowStyle(str
);
1431 str
= styleExpr
->StringValue();
1432 style
= (int)wxParseWindowStyle(str
);
1436 str
= weightExpr
->StringValue();
1437 weight
= (int)wxParseWindowStyle(str
);
1440 underline
= (int)underlineExpr
->IntegerValue();
1442 faceName
= faceNameExpr
->StringValue();
1444 wxFont
font(point
, family
, style
, weight
, (underline
!= 0), faceName
);
1448 // Separate file for the remainder of this, for BC++/Win16
1450 #if !((defined(__BORLANDC__) || defined(__SC__)) && defined(__WIN16__))
1452 * (Re)allocate buffer for reading in from resource file
1455 bool wxReallocateResourceBuffer()
1457 if (!wxResourceBuffer
)
1459 wxResourceBufferSize
= 1000;
1460 wxResourceBuffer
= new char[wxResourceBufferSize
];
1463 if (wxResourceBuffer
)
1465 long newSize
= wxResourceBufferSize
+ 1000;
1466 char *tmp
= new char[(int)newSize
];
1467 strncpy(tmp
, wxResourceBuffer
, (int)wxResourceBufferCount
);
1468 delete[] wxResourceBuffer
;
1469 wxResourceBuffer
= tmp
;
1470 wxResourceBufferSize
= newSize
;
1475 static bool wxEatWhiteSpace(FILE *fd
)
1478 if ((ch
!= ' ') && (ch
!= '/') && (ch
!= ' ') && (ch
!= 10) && (ch
!= 13) && (ch
!= 9))
1485 while (ch
== ' ' || ch
== 10 || ch
== 13 || ch
== 9)
1487 // Check for comment
1493 bool finished
= FALSE
;
1501 int newCh
= getc(fd
);
1516 return wxEatWhiteSpace(fd
);
1519 bool wxGetResourceToken(FILE *fd
)
1521 if (!wxResourceBuffer
)
1522 wxReallocateResourceBuffer();
1523 wxResourceBuffer
[0] = 0;
1524 wxEatWhiteSpace(fd
);
1530 wxResourceBufferCount
= 0;
1537 wxResourceBuffer
[wxResourceBufferCount
] = 0;
1540 // Escaped characters
1541 else if (ch
== '\\')
1543 int newCh
= getc(fd
);
1546 else if (newCh
== 10)
1554 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
1555 wxReallocateResourceBuffer();
1556 wxResourceBuffer
[wxResourceBufferCount
] = (char)actualCh
;
1557 wxResourceBufferCount
++;
1560 wxResourceBuffer
[wxResourceBufferCount
] = 0;
1564 wxResourceBufferCount
= 0;
1566 while (ch
!= ' ' && ch
!= EOF
&& ch
!= ' ' && ch
!= 13 && ch
!= 9 && ch
!= 10)
1568 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
1569 wxReallocateResourceBuffer();
1570 wxResourceBuffer
[wxResourceBufferCount
] = (char)ch
;
1571 wxResourceBufferCount
++;
1575 wxResourceBuffer
[wxResourceBufferCount
] = 0;
1583 * Files are in form:
1584 static char *name = "....";
1585 with possible comments.
1588 bool wxResourceReadOneResource(FILE *fd
, wxExprDatabase
& db
, bool *eof
, wxResourceTable
*table
)
1591 table
= wxDefaultResourceTable
;
1593 // static or #define
1594 if (!wxGetResourceToken(fd
))
1600 if (strcmp(wxResourceBuffer
, "#define") == 0)
1602 wxGetResourceToken(fd
);
1603 char *name
= copystring(wxResourceBuffer
);
1604 wxGetResourceToken(fd
);
1605 char *value
= copystring(wxResourceBuffer
);
1606 if (isalpha(value
[0]))
1608 int val
= (int)atol(value
);
1609 wxResourceAddIdentifier(name
, val
, table
);
1613 wxLogWarning(_("#define %s must be an integer."), name
);
1623 else if (strcmp(wxResourceBuffer
, "#include") == 0)
1625 wxGetResourceToken(fd
);
1626 char *name
= copystring(wxResourceBuffer
);
1627 char *actualName
= name
;
1629 actualName
= name
+ 1;
1630 int len
= strlen(name
);
1631 if ((len
> 0) && (name
[len
-1] == '"'))
1633 if (!wxResourceParseIncludeFile(actualName
, table
))
1635 wxLogWarning(_("Could not find resource include file %s."), actualName
);
1640 else if (strcmp(wxResourceBuffer
, "static") != 0)
1643 strcpy(buf
, _("Found "));
1644 strncat(buf
, wxResourceBuffer
, 30);
1645 strcat(buf
, _(", expected static, #include or #define\nwhilst parsing resource."));
1651 if (!wxGetResourceToken(fd
))
1653 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1658 if (strcmp(wxResourceBuffer
, "char") != 0)
1660 wxLogWarning(_("Expected 'char' whilst parsing resource."));
1665 if (!wxGetResourceToken(fd
))
1667 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1672 if (wxResourceBuffer
[0] != '*')
1674 wxLogWarning(_("Expected '*' whilst parsing resource."));
1678 strncpy(nameBuf
, wxResourceBuffer
+1, 99);
1681 if (!wxGetResourceToken(fd
))
1683 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1688 if (strcmp(wxResourceBuffer
, "=") != 0)
1690 wxLogWarning(_("Expected '=' whilst parsing resource."));
1695 if (!wxGetResourceToken(fd
))
1697 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1703 if (!db
.ReadPrologFromString(wxResourceBuffer
))
1705 wxLogWarning(_("%s: ill-formed resource file syntax."), nameBuf
);
1710 if (!wxGetResourceToken(fd
))
1718 * Parses string window style into integer window style
1722 * Style flag parsing, e.g.
1723 * "wxSYSTEM_MENU | wxBORDER" -> integer
1726 char* wxResourceParseWord(char*s
, int *i
)
1729 return (char*) NULL
;
1731 static char buf
[150];
1732 int len
= strlen(s
);
1735 while ((ii
< len
) && (isalpha(s
[ii
]) || (s
[ii
] == '_')))
1743 // Eat whitespace and conjunction characters
1744 while ((ii
< len
) &&
1745 ((s
[ii
] == ' ') || (s
[ii
] == '|') || (s
[ii
] == ',')))
1751 return (char*) NULL
;
1756 struct wxResourceBitListStruct
1762 static wxResourceBitListStruct wxResourceBitListTable
[] =
1765 { "wxSINGLE", wxLB_SINGLE
},
1766 { "wxMULTIPLE", wxLB_MULTIPLE
},
1767 { "wxEXTENDED", wxLB_EXTENDED
},
1768 { "wxLB_SINGLE", wxLB_SINGLE
},
1769 { "wxLB_MULTIPLE", wxLB_MULTIPLE
},
1770 { "wxLB_EXTENDED", wxLB_EXTENDED
},
1771 { "wxLB_NEEDED_SB", wxLB_NEEDED_SB
},
1772 { "wxLB_ALWAYS_SB", wxLB_ALWAYS_SB
},
1773 { "wxLB_SORT", wxLB_SORT
},
1774 { "wxLB_OWNERDRAW", wxLB_OWNERDRAW
},
1775 { "wxLB_HSCROLL", wxLB_HSCROLL
},
1778 { "wxCB_SIMPLE", wxCB_SIMPLE
},
1779 { "wxCB_DROPDOWN", wxCB_DROPDOWN
},
1780 { "wxCB_READONLY", wxCB_READONLY
},
1781 { "wxCB_SORT", wxCB_SORT
},
1784 { "wxGA_PROGRESSBAR", wxGA_PROGRESSBAR
},
1785 { "wxGA_HORIZONTAL", wxGA_HORIZONTAL
},
1786 { "wxGA_VERTICAL", wxGA_VERTICAL
},
1789 { "wxPASSWORD", wxPASSWORD
},
1790 { "wxPROCESS_ENTER", wxPROCESS_ENTER
},
1791 { "wxTE_PASSWORD", wxTE_PASSWORD
},
1792 { "wxTE_READONLY", wxTE_READONLY
},
1793 { "wxTE_PROCESS_ENTER", wxTE_PROCESS_ENTER
},
1794 { "wxTE_MULTILINE", wxTE_MULTILINE
},
1796 /* wxRadioBox/wxRadioButton */
1797 { "wxRB_GROUP", wxRB_GROUP
},
1798 { "wxRA_SPECIFY_COLS", wxRA_SPECIFY_COLS
},
1799 { "wxRA_SPECIFY_ROWS", wxRA_SPECIFY_ROWS
},
1800 { "wxRA_HORIZONTAL", wxRA_HORIZONTAL
},
1801 { "wxRA_VERTICAL", wxRA_VERTICAL
},
1804 { "wxSL_HORIZONTAL", wxSL_HORIZONTAL
},
1805 { "wxSL_VERTICAL", wxSL_VERTICAL
},
1806 { "wxSL_AUTOTICKS", wxSL_AUTOTICKS
},
1807 { "wxSL_LABELS", wxSL_LABELS
},
1808 { "wxSL_LEFT", wxSL_LEFT
},
1809 { "wxSL_TOP", wxSL_TOP
},
1810 { "wxSL_RIGHT", wxSL_RIGHT
},
1811 { "wxSL_BOTTOM", wxSL_BOTTOM
},
1812 { "wxSL_BOTH", wxSL_BOTH
},
1813 { "wxSL_SELRANGE", wxSL_SELRANGE
},
1816 { "wxSB_HORIZONTAL", wxSB_HORIZONTAL
},
1817 { "wxSB_VERTICAL", wxSB_VERTICAL
},
1820 { "wxBU_AUTODRAW", wxBU_AUTODRAW
},
1821 { "wxBU_NOAUTODRAW", wxBU_NOAUTODRAW
},
1824 { "wxTR_HAS_BUTTONS", wxTR_HAS_BUTTONS
},
1825 { "wxTR_EDIT_LABELS", wxTR_EDIT_LABELS
},
1826 { "wxTR_LINES_AT_ROOT", wxTR_LINES_AT_ROOT
},
1829 { "wxLC_ICON", wxLC_ICON
},
1830 { "wxLC_SMALL_ICON", wxLC_SMALL_ICON
},
1831 { "wxLC_LIST", wxLC_LIST
},
1832 { "wxLC_REPORT", wxLC_REPORT
},
1833 { "wxLC_ALIGN_TOP", wxLC_ALIGN_TOP
},
1834 { "wxLC_ALIGN_LEFT", wxLC_ALIGN_LEFT
},
1835 { "wxLC_AUTOARRANGE", wxLC_AUTOARRANGE
},
1836 { "wxLC_USER_TEXT", wxLC_USER_TEXT
},
1837 { "wxLC_EDIT_LABELS", wxLC_EDIT_LABELS
},
1838 { "wxLC_NO_HEADER", wxLC_NO_HEADER
},
1839 { "wxLC_NO_SORT_HEADER", wxLC_NO_SORT_HEADER
},
1840 { "wxLC_SINGLE_SEL", wxLC_SINGLE_SEL
},
1841 { "wxLC_SORT_ASCENDING", wxLC_SORT_ASCENDING
},
1842 { "wxLC_SORT_DESCENDING", wxLC_SORT_DESCENDING
},
1845 { "wxSP_VERTICAL", wxSP_VERTICAL
},
1846 { "wxSP_HORIZONTAL", wxSP_HORIZONTAL
},
1847 { "wxSP_ARROW_KEYS", wxSP_ARROW_KEYS
},
1848 { "wxSP_WRAP", wxSP_WRAP
},
1851 { "wxSP_NOBORDER", wxSP_NOBORDER
},
1852 { "wxSP_3D", wxSP_3D
},
1853 { "wxSP_BORDER", wxSP_BORDER
},
1856 { "wxTC_MULTILINE", wxTC_MULTILINE
},
1857 { "wxTC_RIGHTJUSTIFY", wxTC_RIGHTJUSTIFY
},
1858 { "wxTC_FIXEDWIDTH", wxTC_FIXEDWIDTH
},
1859 { "wxTC_OWNERDRAW", wxTC_OWNERDRAW
},
1862 { "wxST_SIZEGRIP", wxST_SIZEGRIP
},
1865 { "wxFIXED_LENGTH", wxFIXED_LENGTH
},
1866 { "wxALIGN_LEFT", wxALIGN_LEFT
},
1867 { "wxALIGN_CENTER", wxALIGN_CENTER
},
1868 { "wxALIGN_CENTRE", wxALIGN_CENTRE
},
1869 { "wxALIGN_RIGHT", wxALIGN_RIGHT
},
1870 { "wxCOLOURED", wxCOLOURED
},
1873 { "wxTB_3DBUTTONS", wxTB_3DBUTTONS
},
1874 { "wxTB_HORIZONTAL", wxTB_HORIZONTAL
},
1875 { "wxTB_VERTICAL", wxTB_VERTICAL
},
1876 { "wxTB_FLAT", wxTB_FLAT
},
1879 { "wxVSCROLL", wxVSCROLL
},
1880 { "wxHSCROLL", wxHSCROLL
},
1881 { "wxCAPTION", wxCAPTION
},
1882 { "wxSTAY_ON_TOP", wxSTAY_ON_TOP
},
1883 { "wxICONIZE", wxICONIZE
},
1884 { "wxMINIMIZE", wxICONIZE
},
1885 { "wxMAXIMIZE", wxMAXIMIZE
},
1887 { "wxMDI_PARENT", 0},
1888 { "wxMDI_CHILD", 0},
1889 { "wxTHICK_FRAME", wxTHICK_FRAME
},
1890 { "wxRESIZE_BORDER", wxRESIZE_BORDER
},
1891 { "wxSYSTEM_MENU", wxSYSTEM_MENU
},
1892 { "wxMINIMIZE_BOX", wxMINIMIZE_BOX
},
1893 { "wxMAXIMIZE_BOX", wxMAXIMIZE_BOX
},
1894 { "wxRESIZE_BOX", wxRESIZE_BOX
},
1895 { "wxDEFAULT_FRAME_STYLE", wxDEFAULT_FRAME_STYLE
},
1896 { "wxDEFAULT_FRAME", wxDEFAULT_FRAME_STYLE
},
1897 { "wxDEFAULT_DIALOG_STYLE", wxDEFAULT_DIALOG_STYLE
},
1898 { "wxBORDER", wxBORDER
},
1899 { "wxRETAINED", wxRETAINED
},
1900 { "wxNATIVE_IMPL", 0},
1901 { "wxEXTENDED_IMPL", 0},
1902 { "wxBACKINGSTORE", wxBACKINGSTORE
},
1903 // { "wxFLAT", wxFLAT},
1904 // { "wxMOTIF_RESIZE", wxMOTIF_RESIZE},
1905 { "wxFIXED_LENGTH", 0},
1906 { "wxDOUBLE_BORDER", wxDOUBLE_BORDER
},
1907 { "wxSUNKEN_BORDER", wxSUNKEN_BORDER
},
1908 { "wxRAISED_BORDER", wxRAISED_BORDER
},
1909 { "wxSIMPLE_BORDER", wxSIMPLE_BORDER
},
1910 { "wxSTATIC_BORDER", wxSTATIC_BORDER
},
1911 { "wxTRANSPARENT_WINDOW", wxTRANSPARENT_WINDOW
},
1912 { "wxNO_BORDER", wxNO_BORDER
},
1913 { "wxCLIP_CHILDREN", wxCLIP_CHILDREN
},
1915 { "wxTINY_CAPTION_HORIZ", wxTINY_CAPTION_HORIZ
},
1916 { "wxTINY_CAPTION_VERT", wxTINY_CAPTION_VERT
},
1918 // Text font families
1919 { "wxDEFAULT", wxDEFAULT
},
1920 { "wxDECORATIVE", wxDECORATIVE
},
1921 { "wxROMAN", wxROMAN
},
1922 { "wxSCRIPT", wxSCRIPT
},
1923 { "wxSWISS", wxSWISS
},
1924 { "wxMODERN", wxMODERN
},
1925 { "wxTELETYPE", wxTELETYPE
},
1926 { "wxVARIABLE", wxVARIABLE
},
1927 { "wxFIXED", wxFIXED
},
1928 { "wxNORMAL", wxNORMAL
},
1929 { "wxLIGHT", wxLIGHT
},
1930 { "wxBOLD", wxBOLD
},
1931 { "wxITALIC", wxITALIC
},
1932 { "wxSLANT", wxSLANT
},
1933 { "wxSOLID", wxSOLID
},
1935 { "wxLONG_DASH", wxLONG_DASH
},
1936 { "wxSHORT_DASH", wxSHORT_DASH
},
1937 { "wxDOT_DASH", wxDOT_DASH
},
1938 { "wxUSER_DASH", wxUSER_DASH
},
1939 { "wxTRANSPARENT", wxTRANSPARENT
},
1940 { "wxSTIPPLE", wxSTIPPLE
},
1941 { "wxBDIAGONAL_HATCH", wxBDIAGONAL_HATCH
},
1942 { "wxCROSSDIAG_HATCH", wxCROSSDIAG_HATCH
},
1943 { "wxFDIAGONAL_HATCH", wxFDIAGONAL_HATCH
},
1944 { "wxCROSS_HATCH", wxCROSS_HATCH
},
1945 { "wxHORIZONTAL_HATCH", wxHORIZONTAL_HATCH
},
1946 { "wxVERTICAL_HATCH", wxVERTICAL_HATCH
},
1947 { "wxJOIN_BEVEL", wxJOIN_BEVEL
},
1948 { "wxJOIN_MITER", wxJOIN_MITER
},
1949 { "wxJOIN_ROUND", wxJOIN_ROUND
},
1950 { "wxCAP_ROUND", wxCAP_ROUND
},
1951 { "wxCAP_PROJECTING", wxCAP_PROJECTING
},
1952 { "wxCAP_BUTT", wxCAP_BUTT
},
1955 { "wxCLEAR", wxCLEAR
},
1957 { "wxINVERT", wxINVERT
},
1958 { "wxOR_REVERSE", wxOR_REVERSE
},
1959 { "wxAND_REVERSE", wxAND_REVERSE
},
1960 { "wxCOPY", wxCOPY
},
1962 { "wxAND_INVERT", wxAND_INVERT
},
1963 { "wxNO_OP", wxNO_OP
},
1965 { "wxEQUIV", wxEQUIV
},
1966 { "wxSRC_INVERT", wxSRC_INVERT
},
1967 { "wxOR_INVERT", wxOR_INVERT
},
1968 { "wxNAND", wxNAND
},
1972 { "wxFLOOD_SURFACE", wxFLOOD_SURFACE
},
1973 { "wxFLOOD_BORDER", wxFLOOD_BORDER
},
1974 { "wxODDEVEN_RULE", wxODDEVEN_RULE
},
1975 { "wxWINDING_RULE", wxWINDING_RULE
},
1976 { "wxHORIZONTAL", wxHORIZONTAL
},
1977 { "wxVERTICAL", wxVERTICAL
},
1978 { "wxBOTH", wxBOTH
},
1979 { "wxCENTER_FRAME", wxCENTER_FRAME
},
1981 { "wxYES_NO", wxYES_NO
},
1982 { "wxCANCEL", wxCANCEL
},
1985 { "wxICON_EXCLAMATION", wxICON_EXCLAMATION
},
1986 { "wxICON_HAND", wxICON_HAND
},
1987 { "wxICON_QUESTION", wxICON_QUESTION
},
1988 { "wxICON_INFORMATION", wxICON_INFORMATION
},
1989 { "wxICON_STOP", wxICON_STOP
},
1990 { "wxICON_ASTERISK", wxICON_ASTERISK
},
1991 { "wxICON_MASK", wxICON_MASK
},
1992 { "wxCENTRE", wxCENTRE
},
1993 { "wxCENTER", wxCENTRE
},
1994 { "wxUSER_COLOURS", wxUSER_COLOURS
},
1995 { "wxVERTICAL_LABEL", 0},
1996 { "wxHORIZONTAL_LABEL", 0},
1998 // Bitmap types (not strictly styles)
1999 { "wxBITMAP_TYPE_XPM", wxBITMAP_TYPE_XPM
},
2000 { "wxBITMAP_TYPE_XBM", wxBITMAP_TYPE_XBM
},
2001 { "wxBITMAP_TYPE_BMP", wxBITMAP_TYPE_BMP
},
2002 { "wxBITMAP_TYPE_RESOURCE", wxBITMAP_TYPE_BMP_RESOURCE
},
2003 { "wxBITMAP_TYPE_BMP_RESOURCE", wxBITMAP_TYPE_BMP_RESOURCE
},
2004 { "wxBITMAP_TYPE_GIF", wxBITMAP_TYPE_GIF
},
2005 { "wxBITMAP_TYPE_TIF", wxBITMAP_TYPE_TIF
},
2006 { "wxBITMAP_TYPE_ICO", wxBITMAP_TYPE_ICO
},
2007 { "wxBITMAP_TYPE_ICO_RESOURCE", wxBITMAP_TYPE_ICO_RESOURCE
},
2008 { "wxBITMAP_TYPE_CUR", wxBITMAP_TYPE_CUR
},
2009 { "wxBITMAP_TYPE_CUR_RESOURCE", wxBITMAP_TYPE_CUR_RESOURCE
},
2010 { "wxBITMAP_TYPE_XBM_DATA", wxBITMAP_TYPE_XBM_DATA
},
2011 { "wxBITMAP_TYPE_XPM_DATA", wxBITMAP_TYPE_XPM_DATA
},
2012 { "wxBITMAP_TYPE_ANY", wxBITMAP_TYPE_ANY
}
2015 static int wxResourceBitListCount
= (sizeof(wxResourceBitListTable
)/sizeof(wxResourceBitListStruct
));
2017 long wxParseWindowStyle(const wxString
& bitListString
)
2022 while ((word
= wxResourceParseWord((char*) (const char*) bitListString
, &i
)))
2026 for (j
= 0; j
< wxResourceBitListCount
; j
++)
2027 if (strcmp(wxResourceBitListTable
[j
].word
, word
) == 0)
2029 bitList
|= wxResourceBitListTable
[j
].bits
;
2035 wxLogWarning(_("Unrecognized style %s whilst parsing resource."), word
);
2043 * Load a bitmap from a wxWindows resource, choosing an optimum
2044 * depth and appropriate type.
2047 wxBitmap
wxResourceCreateBitmap(const wxString
& resource
, wxResourceTable
*table
)
2050 table
= wxDefaultResourceTable
;
2052 wxItemResource
*item
= table
->FindResource(resource
);
2055 if ((item
->GetType() == "") || (item
->GetType() != "wxBitmap"))
2057 wxLogWarning(_("%s not a bitmap resource specification."), (const char*) resource
);
2058 return wxNullBitmap
;
2060 int thisDepth
= wxDisplayDepth();
2061 long thisNoColours
= (long)pow(2.0, (double)thisDepth
);
2063 wxItemResource
*optResource
= (wxItemResource
*) NULL
;
2065 // Try to find optimum bitmap for this platform/colour depth
2066 wxNode
*node
= item
->GetChildren().First();
2069 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2070 int platform
= (int)child
->GetValue2();
2071 int noColours
= (int)child
->GetValue3();
2073 char *name = child->GetName();
2074 int bitmapType = (int)child->GetValue1();
2075 int xRes = child->GetWidth();
2076 int yRes = child->GetHeight();
2081 case RESOURCE_PLATFORM_ANY
:
2083 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2084 optResource
= child
;
2087 // Maximise the number of colours.
2088 // If noColours is zero (unspecified), then assume this
2089 // is the right one.
2090 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2091 optResource
= child
;
2096 case RESOURCE_PLATFORM_WINDOWS
:
2098 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2099 optResource
= child
;
2102 // Maximise the number of colours
2103 if ((noColours
> 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2104 optResource
= child
;
2110 case RESOURCE_PLATFORM_X
:
2112 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2113 optResource
= child
;
2116 // Maximise the number of colours
2117 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2118 optResource
= child
;
2124 case RESOURCE_PLATFORM_MAC
:
2126 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2127 optResource
= child
;
2130 // Maximise the number of colours
2131 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2132 optResource
= child
;
2140 node
= node
->Next();
2142 // If no matching resource, fail.
2144 return wxNullBitmap
;
2146 wxString name
= optResource
->GetName();
2147 int bitmapType
= (int)optResource
->GetValue1();
2150 case wxBITMAP_TYPE_XBM_DATA
:
2153 wxItemResource
*item
= table
->FindResource(name
);
2156 wxLogWarning(_("Failed to find XBM resource %s.\n"
2157 "Forgot to use wxResourceLoadBitmapData?"), (const char*) name
);
2158 return wxNullBitmap
;
2160 return wxBitmap(item
->GetValue1(), (int)item
->GetValue2(), (int)item
->GetValue3()) ;
2162 wxLogWarning(_("No XBM facility available!"));
2166 case wxBITMAP_TYPE_XPM_DATA
:
2168 #if (defined(__WXGTK__)) || (defined(__WXMSW__) && wxUSE_XPM_IN_MSW)
2169 wxItemResource
*item
= table
->FindResource(name
);
2172 wxLogWarning(_("Failed to find XPM resource %s.\n"
2173 "Forgot to use wxResourceLoadBitmapData?"), (const char*) name
);
2174 return wxNullBitmap
;
2176 return wxBitmap((char **)item
->GetValue1());
2178 wxLogWarning(_("No XPM facility available!"));
2184 return wxBitmap(name
, bitmapType
);
2188 return wxNullBitmap
;
2192 wxLogWarning(_("Bitmap resource specification %s not found."), (const char*) resource
);
2193 return wxNullBitmap
;
2198 * Load an icon from a wxWindows resource, choosing an optimum
2199 * depth and appropriate type.
2202 wxIcon
wxResourceCreateIcon(const wxString
& resource
, wxResourceTable
*table
)
2205 table
= wxDefaultResourceTable
;
2207 wxItemResource
*item
= table
->FindResource(resource
);
2210 if ((item
->GetType() == "") || strcmp(item
->GetType(), "wxIcon") != 0)
2212 wxLogWarning(_("%s not an icon resource specification."), (const char*) resource
);
2215 int thisDepth
= wxDisplayDepth();
2216 long thisNoColours
= (long)pow(2.0, (double)thisDepth
);
2218 wxItemResource
*optResource
= (wxItemResource
*) NULL
;
2220 // Try to find optimum icon for this platform/colour depth
2221 wxNode
*node
= item
->GetChildren().First();
2224 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2225 int platform
= (int)child
->GetValue2();
2226 int noColours
= (int)child
->GetValue3();
2228 char *name = child->GetName();
2229 int bitmapType = (int)child->GetValue1();
2230 int xRes = child->GetWidth();
2231 int yRes = child->GetHeight();
2236 case RESOURCE_PLATFORM_ANY
:
2238 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2239 optResource
= child
;
2242 // Maximise the number of colours.
2243 // If noColours is zero (unspecified), then assume this
2244 // is the right one.
2245 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2246 optResource
= child
;
2251 case RESOURCE_PLATFORM_WINDOWS
:
2253 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2254 optResource
= child
;
2257 // Maximise the number of colours
2258 if ((noColours
> 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2259 optResource
= child
;
2265 case RESOURCE_PLATFORM_X
:
2267 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2268 optResource
= child
;
2271 // Maximise the number of colours
2272 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2273 optResource
= child
;
2279 case RESOURCE_PLATFORM_MAC
:
2281 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2282 optResource
= child
;
2285 // Maximise the number of colours
2286 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2287 optResource
= child
;
2295 node
= node
->Next();
2297 // If no matching resource, fail.
2301 wxString name
= optResource
->GetName();
2302 int bitmapType
= (int)optResource
->GetValue1();
2305 case wxBITMAP_TYPE_XBM_DATA
:
2308 wxItemResource
*item
= table
->FindResource(name
);
2311 wxLogWarning(_("Failed to find XBM resource %s.\n"
2312 "Forgot to use wxResourceLoadIconData?"), (const char*) name
);
2315 return wxIcon((const char **)item
->GetValue1(), (int)item
->GetValue2(), (int)item
->GetValue3());
2317 wxLogWarning(_("No XBM facility available!"));
2321 case wxBITMAP_TYPE_XPM_DATA
:
2323 // *** XPM ICON NOT YET IMPLEMENTED IN WXWINDOWS ***
2325 #if (defined(__WXGTK__)) || (defined(__WXMSW__) && wxUSE_XPM_IN_MSW)
2326 wxItemResource *item = table->FindResource(name);
2330 sprintf(buf, _("Failed to find XPM resource %s.\nForgot to use wxResourceLoadIconData?"), name);
2334 return wxIcon((char **)item->GetValue1());
2336 wxLogWarning(_("No XPM facility available!"));
2339 wxLogWarning(_("No XPM icon facility available!"));
2345 wxLogWarning(_("Icon resource specification %s not found."), (const char*) resource
);
2347 return wxIcon(name
, bitmapType
);
2356 wxLogWarning(_("Icon resource specification %s not found."), (const char*) resource
);
2361 wxMenu
*wxResourceCreateMenu(wxItemResource
*item
)
2363 wxMenu
*menu
= new wxMenu
;
2364 wxNode
*node
= item
->GetChildren().First();
2367 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2368 if ((child
->GetType() != "") && (child
->GetType() == "wxMenuSeparator"))
2369 menu
->AppendSeparator();
2370 else if (child
->GetChildren().Number() > 0)
2372 wxMenu
*subMenu
= wxResourceCreateMenu(child
);
2374 menu
->Append((int)child
->GetValue1(), child
->GetTitle(), subMenu
, child
->GetValue4());
2378 menu
->Append((int)child
->GetValue1(), child
->GetTitle(), child
->GetValue4(), (child
->GetValue2() != 0));
2380 node
= node
->Next();
2385 wxMenuBar
*wxResourceCreateMenuBar(const wxString
& resource
, wxResourceTable
*table
, wxMenuBar
*menuBar
)
2388 table
= wxDefaultResourceTable
;
2390 wxItemResource
*menuResource
= table
->FindResource(resource
);
2391 if (menuResource
&& (menuResource
->GetType() != "") && (menuResource
->GetType() == "wxMenu"))
2394 menuBar
= new wxMenuBar
;
2395 wxNode
*node
= menuResource
->GetChildren().First();
2398 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2399 wxMenu
*menu
= wxResourceCreateMenu(child
);
2401 menuBar
->Append(menu
, child
->GetTitle());
2402 node
= node
->Next();
2406 return (wxMenuBar
*) NULL
;
2409 wxMenu
*wxResourceCreateMenu(const wxString
& resource
, wxResourceTable
*table
)
2412 table
= wxDefaultResourceTable
;
2414 wxItemResource
*menuResource
= table
->FindResource(resource
);
2415 if (menuResource
&& (menuResource
->GetType() != "") && (menuResource
->GetType() == "wxMenu"))
2416 // if (menuResource && (menuResource->GetType() == wxTYPE_MENU))
2417 return wxResourceCreateMenu(menuResource
);
2418 return (wxMenu
*) NULL
;
2421 // Global equivalents (so don't have to refer to default table explicitly)
2422 bool wxResourceParseData(const wxString
& resource
, wxResourceTable
*table
)
2425 table
= wxDefaultResourceTable
;
2427 return table
->ParseResourceData(resource
);
2430 bool wxResourceParseFile(const wxString
& filename
, wxResourceTable
*table
)
2433 table
= wxDefaultResourceTable
;
2435 return table
->ParseResourceFile(filename
);
2438 // Register XBM/XPM data
2439 bool wxResourceRegisterBitmapData(const wxString
& name
, char bits
[], int width
, int height
, wxResourceTable
*table
)
2442 table
= wxDefaultResourceTable
;
2444 return table
->RegisterResourceBitmapData(name
, bits
, width
, height
);
2447 bool wxResourceRegisterBitmapData(const wxString
& name
, char **data
, wxResourceTable
*table
)
2450 table
= wxDefaultResourceTable
;
2452 return table
->RegisterResourceBitmapData(name
, data
);
2455 void wxResourceClear(wxResourceTable
*table
)
2458 table
= wxDefaultResourceTable
;
2460 table
->ClearTable();
2467 bool wxResourceAddIdentifier(const wxString
& name
, int value
, wxResourceTable
*table
)
2470 table
= wxDefaultResourceTable
;
2472 table
->identifiers
.Put(name
, (wxObject
*)value
);
2476 int wxResourceGetIdentifier(const wxString
& name
, wxResourceTable
*table
)
2479 table
= wxDefaultResourceTable
;
2481 return (int)table
->identifiers
.Get(name
);
2485 * Parse #include file for #defines (only)
2488 bool wxResourceParseIncludeFile(const wxString
& f
, wxResourceTable
*table
)
2491 table
= wxDefaultResourceTable
;
2493 FILE *fd
= fopen(f
, "r");
2498 while (wxGetResourceToken(fd
))
2500 if (strcmp(wxResourceBuffer
, "#define") == 0)
2502 wxGetResourceToken(fd
);
2503 char *name
= copystring(wxResourceBuffer
);
2504 wxGetResourceToken(fd
);
2505 char *value
= copystring(wxResourceBuffer
);
2506 if (isdigit(value
[0]))
2508 int val
= (int)atol(value
);
2509 wxResourceAddIdentifier(name
, val
, table
);
2520 * Reading strings as if they were .wxr files
2523 static int getc_string(char *s
)
2525 int ch
= s
[wxResourceStringPtr
];
2530 wxResourceStringPtr
++;
2535 static int ungetc_string()
2537 wxResourceStringPtr
--;
2541 bool wxEatWhiteSpaceString(char *s
)
2543 int ch
= getc_string(s
);
2547 if ((ch
!= ' ') && (ch
!= '/') && (ch
!= ' ') && (ch
!= 10) && (ch
!= 13) && (ch
!= 9))
2554 while (ch
== ' ' || ch
== 10 || ch
== 13 || ch
== 9)
2555 ch
= getc_string(s
);
2556 // Check for comment
2559 ch
= getc_string(s
);
2562 bool finished
= FALSE
;
2565 ch
= getc_string(s
);
2570 int newCh
= getc_string(s
);
2585 return wxEatWhiteSpaceString(s
);
2588 bool wxGetResourceTokenString(char *s
)
2590 if (!wxResourceBuffer
)
2591 wxReallocateResourceBuffer();
2592 wxResourceBuffer
[0] = 0;
2593 wxEatWhiteSpaceString(s
);
2595 int ch
= getc_string(s
);
2599 wxResourceBufferCount
= 0;
2600 ch
= getc_string(s
);
2606 wxResourceBuffer
[wxResourceBufferCount
] = 0;
2609 // Escaped characters
2610 else if (ch
== '\\')
2612 int newCh
= getc_string(s
);
2615 else if (newCh
== 10)
2623 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
2624 wxReallocateResourceBuffer();
2625 wxResourceBuffer
[wxResourceBufferCount
] = (char)actualCh
;
2626 wxResourceBufferCount
++;
2627 ch
= getc_string(s
);
2629 wxResourceBuffer
[wxResourceBufferCount
] = 0;
2633 wxResourceBufferCount
= 0;
2635 while (ch
!= ' ' && ch
!= EOF
&& ch
!= ' ' && ch
!= 13 && ch
!= 9 && ch
!= 10)
2637 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
2638 wxReallocateResourceBuffer();
2639 wxResourceBuffer
[wxResourceBufferCount
] = (char)ch
;
2640 wxResourceBufferCount
++;
2642 ch
= getc_string(s
);
2644 wxResourceBuffer
[wxResourceBufferCount
] = 0;
2652 * Files are in form:
2653 static char *name = "....";
2654 with possible comments.
2657 bool wxResourceReadOneResourceString(char *s
, wxExprDatabase
& db
, bool *eof
, wxResourceTable
*table
)
2660 table
= wxDefaultResourceTable
;
2662 // static or #define
2663 if (!wxGetResourceTokenString(s
))
2669 if (strcmp(wxResourceBuffer
, "#define") == 0)
2671 wxGetResourceTokenString(s
);
2672 char *name
= copystring(wxResourceBuffer
);
2673 wxGetResourceTokenString(s
);
2674 char *value
= copystring(wxResourceBuffer
);
2675 if (isalpha(value
[0]))
2677 int val
= (int)atol(value
);
2678 wxResourceAddIdentifier(name
, val
, table
);
2682 wxLogWarning(_("#define %s must be an integer."), name
);
2693 else if (strcmp(wxResourceBuffer, "#include") == 0)
2695 wxGetResourceTokenString(s);
2696 char *name = copystring(wxResourceBuffer);
2697 char *actualName = name;
2699 actualName = name + 1;
2700 int len = strlen(name);
2701 if ((len > 0) && (name[len-1] == '"'))
2703 if (!wxResourceParseIncludeFile(actualName, table))
2706 sprintf(buf, _("Could not find resource include file %s."), actualName);
2713 else if (strcmp(wxResourceBuffer
, "static") != 0)
2716 strcpy(buf
, _("Found "));
2717 strncat(buf
, wxResourceBuffer
, 30);
2718 strcat(buf
, _(", expected static, #include or #define\nwhilst parsing resource."));
2724 if (!wxGetResourceTokenString(s
))
2726 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2731 if (strcmp(wxResourceBuffer
, "char") != 0)
2733 wxLogWarning(_("Expected 'char' whilst parsing resource."));
2738 if (!wxGetResourceTokenString(s
))
2740 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2745 if (wxResourceBuffer
[0] != '*')
2747 wxLogWarning(_("Expected '*' whilst parsing resource."));
2751 strncpy(nameBuf
, wxResourceBuffer
+1, 99);
2754 if (!wxGetResourceTokenString(s
))
2756 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2761 if (strcmp(wxResourceBuffer
, "=") != 0)
2763 wxLogWarning(_("Expected '=' whilst parsing resource."));
2768 if (!wxGetResourceTokenString(s
))
2770 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2776 if (!db
.ReadPrologFromString(wxResourceBuffer
))
2778 wxLogWarning(_("%s: ill-formed resource file syntax."), nameBuf
);
2783 if (!wxGetResourceTokenString(s
))
2790 bool wxResourceParseString(char *s
, wxResourceTable
*table
)
2793 table
= wxDefaultResourceTable
;
2798 // Turn backslashes into spaces
2801 int len
= strlen(s
);
2803 for (i
= 0; i
< len
; i
++)
2804 if (s
[i
] == 92 && s
[i
+1] == 13)
2812 wxResourceStringPtr
= 0;
2815 while (wxResourceReadOneResourceString(s
, db
, &eof
, table
) && !eof
)
2819 return wxResourceInterpretResources(*table
, db
);
2823 * resource loading facility
2826 bool wxWindow::LoadFromResource(wxWindow
*parent
, const wxString
& resourceName
, const wxResourceTable
*table
)
2829 table
= wxDefaultResourceTable
;
2831 wxItemResource
*resource
= table
->FindResource((const char *)resourceName
);
2832 // if (!resource || (resource->GetType() != wxTYPE_DIALOG_BOX))
2833 if (!resource
|| (resource
->GetType() == "") ||
2834 ! ((resource
->GetType() == "wxDialog") || (resource
->GetType() == "wxPanel")))
2837 wxString
title(resource
->GetTitle());
2838 long theWindowStyle
= resource
->GetStyle();
2839 bool isModal
= (resource
->GetValue1() != 0);
2840 int x
= resource
->GetX();
2841 int y
= resource
->GetY();
2842 int width
= resource
->GetWidth();
2843 int height
= resource
->GetHeight();
2844 wxString name
= resource
->GetName();
2846 if (IsKindOf(CLASSINFO(wxDialog
)))
2848 wxDialog
*dialogBox
= (wxDialog
*)this;
2849 long modalStyle
= isModal
? wxDIALOG_MODAL
: 0;
2850 if (!dialogBox
->Create(parent
, -1, title
, wxPoint(x
, y
), wxSize(width
, height
), theWindowStyle
|modalStyle
, name
))
2853 // Only reset the client size if we know we're not going to do it again below.
2854 if ((resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) == 0)
2855 dialogBox
->SetClientSize(width
, height
);
2857 else if (IsKindOf(CLASSINFO(wxPanel
)))
2859 wxPanel
* panel
= (wxPanel
*)this;
2860 if (!panel
->Create(parent
, -1, wxPoint(x
, y
), wxSize(width
, height
), theWindowStyle
, name
))
2865 if (!this->Create(parent
, -1, wxPoint(x
, y
), wxSize(width
, height
), theWindowStyle
, name
))
2869 if ((resource
->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS
) != 0)
2871 // No need to do this since it's done in wxPanel or wxDialog constructor.
2872 // SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
2876 if (resource
->GetFont().Ok())
2877 SetFont(resource
->GetFont());
2878 if (resource
->GetBackgroundColour().Ok())
2879 SetBackgroundColour(resource
->GetBackgroundColour());
2882 // Should have some kind of font at this point
2883 if (!GetFont().Ok())
2884 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
2885 if (!GetBackgroundColour().Ok())
2886 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
2888 // Only when we've created the window and set the font can we set the correct size,
2889 // if based on dialog units.
2890 if ((resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) != 0)
2892 wxSize sz
= ConvertDialogToPixels(wxSize(width
, height
));
2893 SetClientSize(sz
.x
, sz
.y
);
2895 wxPoint pt
= ConvertDialogToPixels(wxPoint(x
, y
));
2899 // Now create children
2900 wxNode
*node
= resource
->GetChildren().First();
2903 wxItemResource
*childResource
= (wxItemResource
*)node
->Data();
2905 (void) CreateItem(childResource
, resource
, table
);
2907 node
= node
->Next();
2912 wxControl
*wxWindow::CreateItem(const wxItemResource
*resource
, const wxItemResource
* parentResource
, const wxResourceTable
*table
)
2915 table
= wxDefaultResourceTable
;
2916 return table
->CreateItem((wxWindow
*)this, resource
, parentResource
);
2920 #pragma warning(default:4706) // assignment within conditional expression
2926 #endif // wxUSE_WX_RESOURCES