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/listbox.h"
43 #include "wx/choice.h"
44 #include "wx/checkbox.h"
45 #include "wx/settings.h"
46 #include "wx/slider.h"
48 #include "wx/statbox.h"
49 #include "wx/statbmp.h"
51 #include "wx/textctrl.h"
52 #include "wx/msgdlg.h"
57 #include "wx/radiobut.h"
61 #include "wx/scrolbar.h"
65 #include "wx/combobox.h"
68 #include "wx/validate.h"
77 #include "wx/resource.h"
78 #include "wx/string.h"
79 #include "wx/wxexpr.h"
81 #include "wx/settings.h"
83 // Forward (private) declarations
84 bool wxResourceInterpretResources(wxResourceTable
& table
, wxExprDatabase
& db
);
85 wxItemResource
*wxResourceInterpretDialog(wxResourceTable
& table
, wxExpr
*expr
, bool isPanel
= FALSE
);
86 wxItemResource
*wxResourceInterpretControl(wxResourceTable
& table
, wxExpr
*expr
);
87 wxItemResource
*wxResourceInterpretMenu(wxResourceTable
& table
, wxExpr
*expr
);
88 wxItemResource
*wxResourceInterpretMenuBar(wxResourceTable
& table
, wxExpr
*expr
);
89 wxItemResource
*wxResourceInterpretString(wxResourceTable
& table
, wxExpr
*expr
);
90 wxItemResource
*wxResourceInterpretBitmap(wxResourceTable
& table
, wxExpr
*expr
);
91 wxItemResource
*wxResourceInterpretIcon(wxResourceTable
& table
, wxExpr
*expr
);
92 // Interpret list expression
93 wxFont
wxResourceInterpretFontSpec(wxExpr
*expr
);
95 bool wxResourceReadOneResource(FILE *fd
, wxExprDatabase
& db
, bool *eof
, wxResourceTable
*table
= (wxResourceTable
*) NULL
);
96 bool wxResourceParseIncludeFile(const wxString
& f
, wxResourceTable
*table
= (wxResourceTable
*) NULL
);
98 wxResourceTable
*wxDefaultResourceTable
= (wxResourceTable
*) NULL
;
100 char *wxResourceBuffer
= (char *) NULL
;
101 long wxResourceBufferSize
= 0;
102 long wxResourceBufferCount
= 0;
103 int wxResourceStringPtr
= 0;
105 void wxInitializeResourceSystem()
107 wxDefaultResourceTable
= new wxResourceTable
;
110 void wxCleanUpResourceSystem()
112 delete wxDefaultResourceTable
;
113 if (wxResourceBuffer
)
114 delete[] wxResourceBuffer
;
117 void wxLogWarning(char *msg
)
119 wxMessageBox(msg
, _("Warning"), wxOK
);
122 #if !USE_SHARED_LIBRARY
123 IMPLEMENT_DYNAMIC_CLASS(wxItemResource
, wxObject
)
124 IMPLEMENT_DYNAMIC_CLASS(wxResourceTable
, wxHashTable
)
127 wxItemResource::wxItemResource()
133 m_x
= m_y
= m_width
= m_height
= 0;
134 m_value1
= m_value2
= m_value3
= m_value5
= 0;
140 wxItemResource::~wxItemResource()
142 wxNode
*node
= m_children
.First();
145 wxItemResource
*item
= (wxItemResource
*)node
->Data();
148 node
= m_children
.First();
156 wxResourceTable::wxResourceTable():wxHashTable(wxKEY_STRING
), identifiers(wxKEY_STRING
)
160 wxResourceTable::~wxResourceTable()
165 wxItemResource
*wxResourceTable::FindResource(const wxString
& name
) const
167 wxItemResource
*item
= (wxItemResource
*)Get(WXSTRINGCAST name
);
171 void wxResourceTable::AddResource(wxItemResource
*item
)
173 wxString name
= item
->GetName();
175 name
= item
->GetTitle();
177 name
= wxT("no name");
179 // Delete existing resource, if any.
185 bool wxResourceTable::DeleteResource(const wxString
& name
)
187 wxItemResource
*item
= (wxItemResource
*)Delete(WXSTRINGCAST name
);
190 // See if any resource has this as its child; if so, delete from
191 // parent's child list.
193 wxNode
*node
= (wxNode
*) NULL
;
197 wxItemResource
*parent
= (wxItemResource
*)node
->Data();
198 if (parent
->GetChildren().Member(item
))
200 parent
->GetChildren().DeleteObject(item
);
213 bool wxResourceTable::ParseResourceFile(const wxString
& filename
)
217 FILE *fd
= fopen(filename
.fn_str(), "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(wxT("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(wxT("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(wxT("wxButton")) || itemType
== wxString(wxT("wxBitmapButton")))
312 if (childResource
->GetValue4() != wxT(""))
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(wxT("wxMessage")) || itemType
== wxString(wxT("wxStaticText")) ||
331 itemType
== wxString(wxT("wxStaticBitmap")))
333 if (childResource
->GetValue4() != wxT(""))
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(wxT("wxText")) || itemType
== wxString(wxT("wxTextCtrl")) || itemType
== wxString(wxT("wxMultiText")))
356 control
= new wxTextCtrl(parent
, id
, childResource
->GetValue4(), pos
, size
,
357 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
359 else if (itemType
== wxString(wxT("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(wxT("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());
376 else if (itemType
== wxString(wxT("wxRadioButton")))
378 control
= new wxRadioButton(parent
, id
, childResource
->GetTitle(), // (int)childResource->GetValue1(),
380 childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
384 else if (itemType
== wxString(wxT("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(wxT("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(wxT("wxGroupBox")) || itemType
== wxString(wxT("wxStaticBox")))
407 control
= new wxStaticBox(parent
, id
, childResource
->GetTitle(), pos
, size
,
408 childResource
->GetStyle(), childResource
->GetName());
410 else if (itemType
== wxString(wxT("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
] = (wxChar
*)node
->Data();
428 control
= new wxListBox(parent
, id
, pos
, size
,
429 noStrings
, strings
, childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
434 else if (itemType
== wxString(wxT("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
] = (wxChar
*)node
->Data();
452 control
= new wxChoice(parent
, id
, pos
, size
,
453 noStrings
, strings
, childResource
->GetStyle(), wxDefaultValidator
, childResource
->GetName());
459 else if (itemType
== wxString(wxT("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
] = (wxChar
*)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(wxT("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
] = (wxChar
*)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
== wxT("dialog"))
536 item
= wxResourceInterpretDialog(table
, clause
);
537 else if (functor
== wxT("panel"))
538 item
= wxResourceInterpretDialog(table
, clause
, TRUE
);
539 else if (functor
== wxT("menubar"))
540 item
= wxResourceInterpretMenuBar(table
, clause
);
541 else if (functor
== wxT("menu"))
542 item
= wxResourceInterpretMenu(table
, clause
);
543 else if (functor
== wxT("string"))
544 item
= wxResourceInterpretString(table
, clause
);
545 else if (functor
== wxT("bitmap"))
546 item
= wxResourceInterpretBitmap(table
, clause
);
547 else if (functor
== wxT("icon"))
548 item
= wxResourceInterpretIcon(table
, clause
);
552 // Remove any existing resource of same name
553 if (item
->GetName() != wxT(""))
554 table
.DeleteResource(item
->GetName());
555 table
.AddResource(item
);
562 static const wxChar
*g_ValidControlClasses
[] =
565 wxT("wxBitmapButton"),
568 wxT("wxStaticBitmap"),
574 wxT("wxRadioButton"),
576 wxT("wxBitmapCheckBox"),
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(wxT("wxPanel"));
602 dialogItem
->SetType(wxT("wxDialog"));
603 wxString style
= wxT("");
604 wxString title
= wxT("");
605 wxString name
= wxT("");
606 wxString backColourHex
= wxT("");
607 wxString labelColourHex
= wxT("");
608 wxString buttonColourHex
= wxT("");
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(wxT("style"), style
);
620 expr
->GetAttributeValue(wxT("name"), name
);
621 expr
->GetAttributeValue(wxT("title"), title
);
622 expr
->GetAttributeValue(wxT("x"), x
);
623 expr
->GetAttributeValue(wxT("y"), y
);
624 expr
->GetAttributeValue(wxT("width"), width
);
625 expr
->GetAttributeValue(wxT("height"), height
);
626 expr
->GetAttributeValue(wxT("modal"), isModal
);
627 expr
->GetAttributeValue(wxT("label_font"), &labelFontExpr
);
628 expr
->GetAttributeValue(wxT("button_font"), &buttonFontExpr
);
629 expr
->GetAttributeValue(wxT("font"), &fontExpr
);
630 expr
->GetAttributeValue(wxT("background_colour"), backColourHex
);
631 expr
->GetAttributeValue(wxT("label_colour"), labelColourHex
);
632 expr
->GetAttributeValue(wxT("button_colour"), buttonColourHex
);
634 int useDialogUnits
= 0;
635 expr
->GetAttributeValue(wxT("use_dialog_units"), useDialogUnits
);
636 if (useDialogUnits
!= 0)
637 dialogItem
->SetResourceStyle(dialogItem
->GetResourceStyle() | wxRESOURCE_DIALOG_UNITS
);
640 expr
->GetAttributeValue(wxT("use_system_defaults"), useDefaults
);
641 if (useDefaults
!= 0)
642 dialogItem
->SetResourceStyle(dialogItem
->GetResourceStyle() | wxRESOURCE_USE_DEFAULTS
);
645 expr
->GetAttributeValue(wxT("id"), id
);
646 dialogItem
->SetId(id
);
648 if (style
!= wxT(""))
650 windowStyle
= wxParseWindowStyle(style
);
652 dialogItem
->SetStyle(windowStyle
);
653 dialogItem
->SetValue1(isModal
);
654 if (windowStyle
& wxDIALOG_MODAL
) // Uses style in wxWin 2
655 dialogItem
->SetValue1(TRUE
);
657 dialogItem
->SetName(name
);
658 dialogItem
->SetTitle(title
);
659 dialogItem
->SetSize(x
, y
, width
, height
);
661 if (backColourHex
!= wxT(""))
666 r
= wxHexToDec(backColourHex
.Mid(0, 2));
667 g
= wxHexToDec(backColourHex
.Mid(2, 2));
668 b
= wxHexToDec(backColourHex
.Mid(4, 2));
669 dialogItem
->SetBackgroundColour(wxColour((unsigned char)r
,(unsigned char)g
,(unsigned char)b
));
671 if (labelColourHex
!= wxT(""))
676 r
= wxHexToDec(labelColourHex
.Mid(0, 2));
677 g
= wxHexToDec(labelColourHex
.Mid(2, 2));
678 b
= wxHexToDec(labelColourHex
.Mid(4, 2));
679 dialogItem
->SetLabelColour(wxColour((unsigned char)r
,(unsigned char)g
,(unsigned char)b
));
681 if (buttonColourHex
!= wxT(""))
686 r
= wxHexToDec(buttonColourHex
.Mid(0, 2));
687 g
= wxHexToDec(buttonColourHex
.Mid(2, 2));
688 b
= wxHexToDec(buttonColourHex
.Mid(4, 2));
689 dialogItem
->SetButtonColour(wxColour((unsigned char)r
,(unsigned char)g
,(unsigned char)b
));
693 dialogItem
->SetFont(wxResourceInterpretFontSpec(fontExpr
));
694 else if (buttonFontExpr
)
695 dialogItem
->SetFont(wxResourceInterpretFontSpec(buttonFontExpr
));
696 else if (labelFontExpr
)
697 dialogItem
->SetFont(wxResourceInterpretFontSpec(labelFontExpr
));
699 // Now parse all controls
700 wxExpr
*controlExpr
= expr
->GetFirst();
703 if (controlExpr
->Number() == 3)
705 wxString
controlKeyword(controlExpr
->Nth(1)->StringValue());
706 if (controlKeyword
!= wxT("") && controlKeyword
== wxT("control"))
708 // The value part: always a list.
709 wxExpr
*listExpr
= controlExpr
->Nth(2);
710 if (listExpr
->Type() == PrologList
)
712 wxItemResource
*controlItem
= wxResourceInterpretControl(table
, listExpr
);
715 dialogItem
->GetChildren().Append(controlItem
);
720 controlExpr
= controlExpr
->GetNext();
725 wxItemResource
*wxResourceInterpretControl(wxResourceTable
& table
, wxExpr
*expr
)
727 wxItemResource
*controlItem
= new wxItemResource
;
729 // First, find the standard features of a control definition:
730 // [optional integer/string id], control name, title, style, name, x, y, width, height
732 wxString controlType
;
737 long windowStyle
= 0;
738 int x
= 0; int y
= 0; int width
= -1; int height
= -1;
741 wxExpr
*expr1
= expr
->Nth(0);
743 if ( expr1
->Type() == PrologString
|| expr1
->Type() == PrologWord
)
745 if ( wxIsValidControlClass(expr1
->StringValue()) )
748 controlType
= expr1
->StringValue();
752 wxString
str(expr1
->StringValue());
753 id
= wxResourceGetIdentifier(str
, &table
);
756 wxLogWarning(_("Could not resolve control class or id '%s'. "
757 "Use (non-zero) integer instead\n or provide #define "
758 "(see manual for caveats)"),
759 (const wxChar
*) expr1
->StringValue());
761 return (wxItemResource
*) NULL
;
765 // Success - we have an id, so the 2nd element must be the control class.
766 controlType
= expr
->Nth(1)->StringValue();
771 else if (expr1
->Type() == PrologInteger
)
773 id
= (int)expr1
->IntegerValue();
774 // Success - we have an id, so the 2nd element must be the control class.
775 controlType
= expr
->Nth(1)->StringValue();
779 expr1
= expr
->Nth(count
);
782 title
= expr1
->StringValue();
784 expr1
= expr
->Nth(count
);
788 style
= expr1
->StringValue();
789 windowStyle
= wxParseWindowStyle(style
);
792 expr1
= expr
->Nth(count
);
795 name
= expr1
->StringValue();
797 expr1
= expr
->Nth(count
);
800 x
= (int)expr1
->IntegerValue();
802 expr1
= expr
->Nth(count
);
805 y
= (int)expr1
->IntegerValue();
807 expr1
= expr
->Nth(count
);
810 width
= (int)expr1
->IntegerValue();
812 expr1
= expr
->Nth(count
);
815 height
= (int)expr1
->IntegerValue();
817 controlItem
->SetStyle(windowStyle
);
818 controlItem
->SetName(name
);
819 controlItem
->SetTitle(title
);
820 controlItem
->SetSize(x
, y
, width
, height
);
821 controlItem
->SetType(controlType
);
822 controlItem
->SetId(id
);
824 if (controlType
== wxT("wxButton"))
826 // Check for bitmap resource name (in case loading old-style resource file)
827 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
829 wxString
str(expr
->Nth(count
)->StringValue());
834 controlItem
->SetValue4(str
);
835 controlItem
->SetType(wxT("wxBitmapButton"));
838 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
839 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
841 else if (controlType
== wxT("wxBitmapButton"))
843 // Check for bitmap resource name
844 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
846 wxString
str(expr
->Nth(count
)->StringValue());
847 controlItem
->SetValue4(str
);
849 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
850 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
853 else if (controlType
== wxT("wxCheckBox"))
855 // Check for default value
856 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
858 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
860 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
861 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
865 else if (controlType
== wxT("wxRadioButton"))
867 // Check for default value
868 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
870 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
872 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
873 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
877 else if (controlType
== wxT("wxText") || controlType
== wxT("wxTextCtrl") || controlType
== wxT("wxMultiText"))
879 // Check for default value
880 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
882 wxString
str(expr
->Nth(count
)->StringValue());
883 controlItem
->SetValue4(str
);
886 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
888 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
889 // Do nothing - no label font any more
891 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
892 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
896 else if (controlType
== wxT("wxMessage") || controlType
== wxT("wxStaticText"))
898 // Check for bitmap resource name (in case it's an old-style .wxr file)
899 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
901 wxString
str(expr
->Nth(count
)->StringValue());
902 controlItem
->SetValue4(str
);
904 controlItem
->SetType(wxT("wxStaticText"));
906 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
907 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
909 else if (controlType
== wxT("wxStaticBitmap"))
911 // Check for bitmap resource name
912 if (expr
->Nth(count
) && ((expr
->Nth(count
)->Type() == PrologString
) || (expr
->Nth(count
)->Type() == PrologWord
)))
914 wxString
str(expr
->Nth(count
)->StringValue());
915 controlItem
->SetValue4(str
);
918 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
919 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
921 else if (controlType
== wxT("wxGroupBox") || controlType
== wxT("wxStaticBox"))
923 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
924 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
926 else if (controlType
== wxT("wxGauge"))
928 // Check for default value
929 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
931 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
935 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
937 controlItem
->SetValue2(expr
->Nth(count
)->IntegerValue());
940 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
942 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
946 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
947 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
952 else if (controlType
== wxT("wxSlider"))
954 // Check for default value
955 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
957 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
961 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
963 controlItem
->SetValue2(expr
->Nth(count
)->IntegerValue());
967 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
969 controlItem
->SetValue3(expr
->Nth(count
)->IntegerValue());
972 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
974 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
978 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
979 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
985 else if (controlType
== wxT("wxScrollBar"))
988 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
990 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
994 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
996 controlItem
->SetValue2(expr
->Nth(count
)->IntegerValue());
1000 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
1002 controlItem
->SetValue3(expr
->Nth(count
)->IntegerValue());
1006 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
1007 controlItem
->SetValue5(expr
->Nth(count
)->IntegerValue());
1012 else if (controlType
== wxT("wxListBox"))
1014 wxExpr
*valueList
= (wxExpr
*) NULL
;
1016 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1018 wxStringList stringList
;
1019 wxExpr
*stringExpr
= valueList
->GetFirst();
1022 stringList
.Add(stringExpr
->StringValue());
1023 stringExpr
= stringExpr
->GetNext();
1025 controlItem
->SetStringValues(stringList
);
1027 // This is now obsolete: it's in the window style.
1028 // Check for wxSINGLE/wxMULTIPLE
1029 wxExpr
*mult
= (wxExpr
*) NULL
;
1031 controlItem->SetValue1(wxLB_SINGLE);
1033 if ((mult
= expr
->Nth(count
)) && ((mult
->Type() == PrologString
)||(mult
->Type() == PrologWord
)))
1036 wxString m(mult->StringValue());
1037 if (m == "wxLB_MULTIPLE")
1038 controlItem->SetValue1(wxLB_MULTIPLE);
1039 else if (m == "wxLB_EXTENDED")
1040 controlItem->SetValue1(wxLB_EXTENDED);
1045 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1047 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1049 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1050 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1054 else if (controlType
== wxT("wxChoice"))
1056 wxExpr
*valueList
= (wxExpr
*) NULL
;
1057 // Check for default value list
1058 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1060 wxStringList stringList
;
1061 wxExpr
*stringExpr
= valueList
->GetFirst();
1064 stringList
.Add(stringExpr
->StringValue());
1065 stringExpr
= stringExpr
->GetNext();
1067 controlItem
->SetStringValues(stringList
);
1071 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1073 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1076 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1077 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1082 else if (controlType
== wxT("wxComboBox"))
1084 wxExpr
*textValue
= expr
->Nth(count
);
1085 if (textValue
&& (textValue
->Type() == PrologString
|| textValue
->Type() == PrologWord
))
1087 wxString
str(textValue
->StringValue());
1088 controlItem
->SetValue4(str
);
1092 wxExpr
*valueList
= (wxExpr
*) NULL
;
1093 // Check for default value list
1094 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1096 wxStringList stringList
;
1097 wxExpr
*stringExpr
= valueList
->GetFirst();
1100 stringList
.Add(stringExpr
->StringValue());
1101 stringExpr
= stringExpr
->GetNext();
1103 controlItem
->SetStringValues(stringList
);
1107 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1109 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1112 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1113 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1120 else if (controlType
== wxT("wxRadioBox"))
1122 wxExpr
*valueList
= (wxExpr
*) NULL
;
1123 // Check for default value list
1124 if ((valueList
= expr
->Nth(count
)) && (valueList
->Type() == PrologList
))
1126 wxStringList stringList
;
1127 wxExpr
*stringExpr
= valueList
->GetFirst();
1130 stringList
.Add(stringExpr
->StringValue());
1131 stringExpr
= stringExpr
->GetNext();
1133 controlItem
->SetStringValues(stringList
);
1136 // majorDim (number of rows or cols)
1137 if (expr
->Nth(count
) && (expr
->Nth(count
)->Type() == PrologInteger
))
1139 controlItem
->SetValue1(expr
->Nth(count
)->IntegerValue());
1143 controlItem
->SetValue1(0);
1145 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1147 // controlItem->SetLabelFont(wxResourceInterpretFontSpec(expr->Nth(count)));
1150 if (expr
->Nth(count
) && expr
->Nth(count
)->Type() == PrologList
)
1151 controlItem
->SetFont(wxResourceInterpretFontSpec(expr
->Nth(count
)));
1159 return (wxItemResource
*) NULL
;
1164 // Forward declaration
1165 wxItemResource
*wxResourceInterpretMenu1(wxResourceTable
& table
, wxExpr
*expr
);
1168 * Interpet a menu item
1171 wxItemResource
*wxResourceInterpretMenuItem(wxResourceTable
& table
, wxExpr
*expr
)
1173 wxItemResource
*item
= new wxItemResource
;
1175 wxExpr
*labelExpr
= expr
->Nth(0);
1176 wxExpr
*idExpr
= expr
->Nth(1);
1177 wxExpr
*helpExpr
= expr
->Nth(2);
1178 wxExpr
*checkableExpr
= expr
->Nth(3);
1180 // Further keywords/attributes to follow sometime...
1181 if (expr
->Number() == 0)
1183 // item->SetType(wxRESOURCE_TYPE_SEPARATOR);
1184 item
->SetType(wxT("wxMenuSeparator"));
1189 // item->SetType(wxTYPE_MENU); // Well, menu item, but doesn't matter.
1190 item
->SetType(wxT("wxMenu")); // Well, menu item, but doesn't matter.
1193 wxString
str(labelExpr
->StringValue());
1194 item
->SetTitle(str
);
1199 // If a string or word, must look up in identifier table.
1200 if ((idExpr
->Type() == PrologString
) || (idExpr
->Type() == PrologWord
))
1202 wxString
str(idExpr
->StringValue());
1203 id
= wxResourceGetIdentifier(str
, &table
);
1206 wxLogWarning(_("Could not resolve menu id '%s'. "
1207 "Use (non-zero) integer instead\n"
1208 "or provide #define (see manual for caveats)"),
1209 (const wxChar
*) idExpr
->StringValue());
1212 else if (idExpr
->Type() == PrologInteger
)
1213 id
= (int)idExpr
->IntegerValue();
1214 item
->SetValue1(id
);
1218 wxString
str(helpExpr
->StringValue());
1219 item
->SetValue4(str
);
1222 item
->SetValue2(checkableExpr
->IntegerValue());
1224 // Find the first expression that's a list, for submenu
1225 wxExpr
*subMenuExpr
= expr
->GetFirst();
1226 while (subMenuExpr
&& (subMenuExpr
->Type() != PrologList
))
1227 subMenuExpr
= subMenuExpr
->GetNext();
1231 wxItemResource
*child
= wxResourceInterpretMenuItem(table
, subMenuExpr
);
1232 item
->GetChildren().Append(child
);
1233 subMenuExpr
= subMenuExpr
->GetNext();
1240 * Interpret a nested list as a menu
1243 wxItemResource *wxResourceInterpretMenu1(wxResourceTable& table, wxExpr *expr)
1245 wxItemResource *menu = new wxItemResource;
1246 // menu->SetType(wxTYPE_MENU);
1247 menu->SetType("wxMenu");
1248 wxExpr *element = expr->GetFirst();
1251 wxItemResource *item = wxResourceInterpretMenuItem(table, element);
1253 menu->GetChildren().Append(item);
1254 element = element->GetNext();
1260 wxItemResource
*wxResourceInterpretMenu(wxResourceTable
& table
, wxExpr
*expr
)
1262 wxExpr
*listExpr
= (wxExpr
*) NULL
;
1263 expr
->GetAttributeValue(wxT("menu"), &listExpr
);
1265 return (wxItemResource
*) NULL
;
1267 wxItemResource
*menuResource
= wxResourceInterpretMenuItem(table
, listExpr
);
1270 return (wxItemResource
*) NULL
;
1273 if (expr
->GetAttributeValue(wxT("name"), name
))
1275 menuResource
->SetName(name
);
1278 return menuResource
;
1281 wxItemResource
*wxResourceInterpretMenuBar(wxResourceTable
& table
, wxExpr
*expr
)
1283 wxExpr
*listExpr
= (wxExpr
*) NULL
;
1284 expr
->GetAttributeValue(wxT("menu"), &listExpr
);
1286 return (wxItemResource
*) NULL
;
1288 wxItemResource
*resource
= new wxItemResource
;
1289 resource
->SetType(wxT("wxMenu"));
1290 // resource->SetType(wxTYPE_MENU);
1292 wxExpr
*element
= listExpr
->GetFirst();
1295 wxItemResource
*menuResource
= wxResourceInterpretMenuItem(table
, listExpr
);
1296 resource
->GetChildren().Append(menuResource
);
1297 element
= element
->GetNext();
1301 if (expr
->GetAttributeValue(wxT("name"), name
))
1303 resource
->SetName(name
);
1309 wxItemResource
*wxResourceInterpretString(wxResourceTable
& WXUNUSED(table
), wxExpr
*WXUNUSED(expr
))
1311 return (wxItemResource
*) NULL
;
1314 wxItemResource
*wxResourceInterpretBitmap(wxResourceTable
& WXUNUSED(table
), wxExpr
*expr
)
1316 wxItemResource
*bitmapItem
= new wxItemResource
;
1317 // bitmapItem->SetType(wxTYPE_BITMAP);
1318 bitmapItem
->SetType(wxT("wxBitmap"));
1320 if (expr
->GetAttributeValue(wxT("name"), name
))
1322 bitmapItem
->SetName(name
);
1324 // Now parse all bitmap specifications
1325 wxExpr
*bitmapExpr
= expr
->GetFirst();
1328 if (bitmapExpr
->Number() == 3)
1330 wxString
bitmapKeyword(bitmapExpr
->Nth(1)->StringValue());
1331 if (bitmapKeyword
== wxT("bitmap") || bitmapKeyword
== wxT("icon"))
1333 // The value part: always a list.
1334 wxExpr
*listExpr
= bitmapExpr
->Nth(2);
1335 if (listExpr
->Type() == PrologList
)
1337 wxItemResource
*bitmapSpec
= new wxItemResource
;
1338 // bitmapSpec->SetType(wxTYPE_BITMAP);
1339 bitmapSpec
->SetType(wxT("wxBitmap"));
1341 // List is of form: [filename, bitmaptype, platform, colours, xresolution, yresolution]
1342 // where everything after 'filename' is optional.
1343 wxExpr
*nameExpr
= listExpr
->Nth(0);
1344 wxExpr
*typeExpr
= listExpr
->Nth(1);
1345 wxExpr
*platformExpr
= listExpr
->Nth(2);
1346 wxExpr
*coloursExpr
= listExpr
->Nth(3);
1347 wxExpr
*xresExpr
= listExpr
->Nth(4);
1348 wxExpr
*yresExpr
= listExpr
->Nth(5);
1349 if (nameExpr
&& nameExpr
->StringValue() != wxT(""))
1351 bitmapSpec
->SetName(nameExpr
->StringValue());
1353 if (typeExpr
&& typeExpr
->StringValue() != wxT(""))
1355 bitmapSpec
->SetValue1(wxParseWindowStyle(typeExpr
->StringValue()));
1358 bitmapSpec
->SetValue1(0);
1360 if (platformExpr
&& platformExpr
->StringValue() != wxT(""))
1362 wxString
plat(platformExpr
->StringValue());
1363 if (plat
== wxT("windows") || plat
== wxT("WINDOWS"))
1364 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_WINDOWS
);
1365 else if (plat
== wxT("x") || plat
== wxT("X"))
1366 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_X
);
1367 else if (plat
== wxT("mac") || plat
== wxT("MAC"))
1368 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_MAC
);
1370 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_ANY
);
1373 bitmapSpec
->SetValue2(RESOURCE_PLATFORM_ANY
);
1376 bitmapSpec
->SetValue3(coloursExpr
->IntegerValue());
1380 xres
= (int)xresExpr
->IntegerValue();
1382 yres
= (int)yresExpr
->IntegerValue();
1383 bitmapSpec
->SetSize(0, 0, xres
, yres
);
1385 bitmapItem
->GetChildren().Append(bitmapSpec
);
1389 bitmapExpr
= bitmapExpr
->GetNext();
1395 wxItemResource
*wxResourceInterpretIcon(wxResourceTable
& table
, wxExpr
*expr
)
1397 wxItemResource
*item
= wxResourceInterpretBitmap(table
, expr
);
1400 // item->SetType(wxTYPE_ICON);
1401 item
->SetType(wxT("wxIcon"));
1405 return (wxItemResource
*) NULL
;
1408 // Interpret list expression as a font
1409 wxFont
wxResourceInterpretFontSpec(wxExpr
*expr
)
1411 if (expr
->Type() != PrologList
)
1415 int family
= wxSWISS
;
1416 int style
= wxNORMAL
;
1417 int weight
= wxNORMAL
;
1419 wxString
faceName(wxT(""));
1421 wxExpr
*pointExpr
= expr
->Nth(0);
1422 wxExpr
*familyExpr
= expr
->Nth(1);
1423 wxExpr
*styleExpr
= expr
->Nth(2);
1424 wxExpr
*weightExpr
= expr
->Nth(3);
1425 wxExpr
*underlineExpr
= expr
->Nth(4);
1426 wxExpr
*faceNameExpr
= expr
->Nth(5);
1428 point
= (int)pointExpr
->IntegerValue();
1433 str
= familyExpr
->StringValue();
1434 family
= (int)wxParseWindowStyle(str
);
1438 str
= styleExpr
->StringValue();
1439 style
= (int)wxParseWindowStyle(str
);
1443 str
= weightExpr
->StringValue();
1444 weight
= (int)wxParseWindowStyle(str
);
1447 underline
= (int)underlineExpr
->IntegerValue();
1449 faceName
= faceNameExpr
->StringValue();
1451 wxFont
font(point
, family
, style
, weight
, (underline
!= 0), faceName
);
1455 // Separate file for the remainder of this, for BC++/Win16
1457 #if !((defined(__BORLANDC__) || defined(__SC__)) && defined(__WIN16__))
1459 * (Re)allocate buffer for reading in from resource file
1462 bool wxReallocateResourceBuffer()
1464 if (!wxResourceBuffer
)
1466 wxResourceBufferSize
= 1000;
1467 wxResourceBuffer
= new char[wxResourceBufferSize
];
1470 if (wxResourceBuffer
)
1472 long newSize
= wxResourceBufferSize
+ 1000;
1473 char *tmp
= new char[(int)newSize
];
1474 strncpy(tmp
, wxResourceBuffer
, (int)wxResourceBufferCount
);
1475 delete[] wxResourceBuffer
;
1476 wxResourceBuffer
= tmp
;
1477 wxResourceBufferSize
= newSize
;
1482 static bool wxEatWhiteSpace(FILE *fd
)
1486 while ((ch
= getc(fd
)) != EOF
)
1501 ungetc(prev_ch
, fd
);
1509 while ((ch
= getc(fd
)) != EOF
)
1511 if (ch
== '/' && prev_ch
== '*')
1519 static char buffer
[255];
1520 fgets(buffer
, 255, fd
);
1524 ungetc(prev_ch
, fd
);
1539 bool wxGetResourceToken(FILE *fd
)
1541 if (!wxResourceBuffer
)
1542 wxReallocateResourceBuffer();
1543 wxResourceBuffer
[0] = 0;
1544 wxEatWhiteSpace(fd
);
1550 wxResourceBufferCount
= 0;
1557 wxResourceBuffer
[wxResourceBufferCount
] = 0;
1560 // Escaped characters
1561 else if (ch
== '\\')
1563 int newCh
= getc(fd
);
1566 else if (newCh
== 10)
1574 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
1575 wxReallocateResourceBuffer();
1576 wxResourceBuffer
[wxResourceBufferCount
] = (char)actualCh
;
1577 wxResourceBufferCount
++;
1580 wxResourceBuffer
[wxResourceBufferCount
] = 0;
1584 wxResourceBufferCount
= 0;
1586 while (ch
!= ' ' && ch
!= EOF
&& ch
!= ' ' && ch
!= 13 && ch
!= 9 && ch
!= 10)
1588 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
1589 wxReallocateResourceBuffer();
1590 wxResourceBuffer
[wxResourceBufferCount
] = (char)ch
;
1591 wxResourceBufferCount
++;
1595 wxResourceBuffer
[wxResourceBufferCount
] = 0;
1603 * Files are in form:
1604 static char *name = "....";
1605 with possible comments.
1608 bool wxResourceReadOneResource(FILE *fd
, wxExprDatabase
& db
, bool *eof
, wxResourceTable
*table
)
1611 table
= wxDefaultResourceTable
;
1613 // static or #define
1614 if (!wxGetResourceToken(fd
))
1620 if (strcmp(wxResourceBuffer
, "#define") == 0)
1622 wxGetResourceToken(fd
);
1623 wxChar
*name
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
1624 wxGetResourceToken(fd
);
1625 wxChar
*value
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
1626 if (wxIsdigit(value
[0]))
1628 int val
= (int)wxAtol(value
);
1629 wxResourceAddIdentifier(name
, val
, table
);
1633 wxLogWarning(_("#define %s must be an integer."), name
);
1643 else if (strcmp(wxResourceBuffer
, "#include") == 0)
1645 wxGetResourceToken(fd
);
1646 wxChar
*name
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
1647 wxChar
*actualName
= name
;
1648 if (name
[0] == wxT('"'))
1649 actualName
= name
+ 1;
1650 int len
= wxStrlen(name
);
1651 if ((len
> 0) && (name
[len
-1] == wxT('"')))
1653 if (!wxResourceParseIncludeFile(actualName
, table
))
1655 wxLogWarning(_("Could not find resource include file %s."), actualName
);
1660 else if (strcmp(wxResourceBuffer
, "static") != 0)
1663 wxStrcpy(buf
, _("Found "));
1664 wxStrncat(buf
, wxConvCurrent
->cMB2WX(wxResourceBuffer
), 30);
1665 wxStrcat(buf
, _(", expected static, #include or #define\nwhilst parsing resource."));
1671 if (!wxGetResourceToken(fd
))
1673 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1678 if (strcmp(wxResourceBuffer
, "char") != 0)
1680 wxLogWarning(_("Expected 'char' whilst parsing resource."));
1685 if (!wxGetResourceToken(fd
))
1687 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1692 if (wxResourceBuffer
[0] != '*')
1694 wxLogWarning(_("Expected '*' whilst parsing resource."));
1697 wxChar nameBuf
[100];
1698 wxMB2WX(nameBuf
, wxResourceBuffer
+1, 99);
1702 if (!wxGetResourceToken(fd
))
1704 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1709 if (strcmp(wxResourceBuffer
, "=") != 0)
1711 wxLogWarning(_("Expected '=' whilst parsing resource."));
1716 if (!wxGetResourceToken(fd
))
1718 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
1724 if (!db
.ReadPrologFromString(wxResourceBuffer
))
1726 wxLogWarning(_("%s: ill-formed resource file syntax."), nameBuf
);
1731 if (!wxGetResourceToken(fd
))
1739 * Parses string window style into integer window style
1743 * Style flag parsing, e.g.
1744 * "wxSYSTEM_MENU | wxBORDER" -> integer
1747 wxChar
* wxResourceParseWord(wxChar
*s
, int *i
)
1750 return (wxChar
*) NULL
;
1752 static wxChar buf
[150];
1753 int len
= wxStrlen(s
);
1756 while ((ii
< len
) && (wxIsalpha(s
[ii
]) || (s
[ii
] == wxT('_'))))
1764 // Eat whitespace and conjunction characters
1765 while ((ii
< len
) &&
1766 ((s
[ii
] == wxT(' ')) || (s
[ii
] == wxT('|')) || (s
[ii
] == wxT(','))))
1772 return (wxChar
*) NULL
;
1777 struct wxResourceBitListStruct
1783 static wxResourceBitListStruct wxResourceBitListTable
[] =
1786 { wxT("wxSINGLE"), wxLB_SINGLE
},
1787 { wxT("wxMULTIPLE"), wxLB_MULTIPLE
},
1788 { wxT("wxEXTENDED"), wxLB_EXTENDED
},
1789 { wxT("wxLB_SINGLE"), wxLB_SINGLE
},
1790 { wxT("wxLB_MULTIPLE"), wxLB_MULTIPLE
},
1791 { wxT("wxLB_EXTENDED"), wxLB_EXTENDED
},
1792 { wxT("wxLB_NEEDED_SB"), wxLB_NEEDED_SB
},
1793 { wxT("wxLB_ALWAYS_SB"), wxLB_ALWAYS_SB
},
1794 { wxT("wxLB_SORT"), wxLB_SORT
},
1795 { wxT("wxLB_OWNERDRAW"), wxLB_OWNERDRAW
},
1796 { wxT("wxLB_HSCROLL"), wxLB_HSCROLL
},
1799 { wxT("wxCB_SIMPLE"), wxCB_SIMPLE
},
1800 { wxT("wxCB_DROPDOWN"), wxCB_DROPDOWN
},
1801 { wxT("wxCB_READONLY"), wxCB_READONLY
},
1802 { wxT("wxCB_SORT"), wxCB_SORT
},
1805 { wxT("wxGA_PROGRESSBAR"), wxGA_PROGRESSBAR
},
1806 { wxT("wxGA_HORIZONTAL"), wxGA_HORIZONTAL
},
1807 { wxT("wxGA_VERTICAL"), wxGA_VERTICAL
},
1810 { wxT("wxPASSWORD"), wxPASSWORD
},
1811 { wxT("wxPROCESS_ENTER"), wxPROCESS_ENTER
},
1812 { wxT("wxTE_PASSWORD"), wxTE_PASSWORD
},
1813 { wxT("wxTE_READONLY"), wxTE_READONLY
},
1814 { wxT("wxTE_PROCESS_ENTER"), wxTE_PROCESS_ENTER
},
1815 { wxT("wxTE_MULTILINE"), wxTE_MULTILINE
},
1816 { wxT("wxTE_NO_VSCROLL"), wxTE_NO_VSCROLL
},
1818 /* wxRadioBox/wxRadioButton */
1819 { wxT("wxRB_GROUP"), wxRB_GROUP
},
1820 { wxT("wxRA_SPECIFY_COLS"), wxRA_SPECIFY_COLS
},
1821 { wxT("wxRA_SPECIFY_ROWS"), wxRA_SPECIFY_ROWS
},
1822 { wxT("wxRA_HORIZONTAL"), wxRA_HORIZONTAL
},
1823 { wxT("wxRA_VERTICAL"), wxRA_VERTICAL
},
1826 { wxT("wxSL_HORIZONTAL"), wxSL_HORIZONTAL
},
1827 { wxT("wxSL_VERTICAL"), wxSL_VERTICAL
},
1828 { wxT("wxSL_AUTOTICKS"), wxSL_AUTOTICKS
},
1829 { wxT("wxSL_LABELS"), wxSL_LABELS
},
1830 { wxT("wxSL_LEFT"), wxSL_LEFT
},
1831 { wxT("wxSL_TOP"), wxSL_TOP
},
1832 { wxT("wxSL_RIGHT"), wxSL_RIGHT
},
1833 { wxT("wxSL_BOTTOM"), wxSL_BOTTOM
},
1834 { wxT("wxSL_BOTH"), wxSL_BOTH
},
1835 { wxT("wxSL_SELRANGE"), wxSL_SELRANGE
},
1838 { wxT("wxSB_HORIZONTAL"), wxSB_HORIZONTAL
},
1839 { wxT("wxSB_VERTICAL"), wxSB_VERTICAL
},
1842 { wxT("wxBU_AUTODRAW"), wxBU_AUTODRAW
},
1843 { wxT("wxBU_NOAUTODRAW"), wxBU_NOAUTODRAW
},
1846 { wxT("wxTR_HAS_BUTTONS"), wxTR_HAS_BUTTONS
},
1847 { wxT("wxTR_EDIT_LABELS"), wxTR_EDIT_LABELS
},
1848 { wxT("wxTR_LINES_AT_ROOT"), wxTR_LINES_AT_ROOT
},
1851 { wxT("wxLC_ICON"), wxLC_ICON
},
1852 { wxT("wxLC_SMALL_ICON"), wxLC_SMALL_ICON
},
1853 { wxT("wxLC_LIST"), wxLC_LIST
},
1854 { wxT("wxLC_REPORT"), wxLC_REPORT
},
1855 { wxT("wxLC_ALIGN_TOP"), wxLC_ALIGN_TOP
},
1856 { wxT("wxLC_ALIGN_LEFT"), wxLC_ALIGN_LEFT
},
1857 { wxT("wxLC_AUTOARRANGE"), wxLC_AUTOARRANGE
},
1858 { wxT("wxLC_USER_TEXT"), wxLC_USER_TEXT
},
1859 { wxT("wxLC_EDIT_LABELS"), wxLC_EDIT_LABELS
},
1860 { wxT("wxLC_NO_HEADER"), wxLC_NO_HEADER
},
1861 { wxT("wxLC_NO_SORT_HEADER"), wxLC_NO_SORT_HEADER
},
1862 { wxT("wxLC_SINGLE_SEL"), wxLC_SINGLE_SEL
},
1863 { wxT("wxLC_SORT_ASCENDING"), wxLC_SORT_ASCENDING
},
1864 { wxT("wxLC_SORT_DESCENDING"), wxLC_SORT_DESCENDING
},
1867 { wxT("wxSP_VERTICAL"), wxSP_VERTICAL
},
1868 { wxT("wxSP_HORIZONTAL"), wxSP_HORIZONTAL
},
1869 { wxT("wxSP_ARROW_KEYS"), wxSP_ARROW_KEYS
},
1870 { wxT("wxSP_WRAP"), wxSP_WRAP
},
1873 { wxT("wxSP_NOBORDER"), wxSP_NOBORDER
},
1874 { wxT("wxSP_3D"), wxSP_3D
},
1875 { wxT("wxSP_BORDER"), wxSP_BORDER
},
1878 { wxT("wxTC_MULTILINE"), wxTC_MULTILINE
},
1879 { wxT("wxTC_RIGHTJUSTIFY"), wxTC_RIGHTJUSTIFY
},
1880 { wxT("wxTC_FIXEDWIDTH"), wxTC_FIXEDWIDTH
},
1881 { wxT("wxTC_OWNERDRAW"), wxTC_OWNERDRAW
},
1884 { wxT("wxST_SIZEGRIP"), wxST_SIZEGRIP
},
1887 { wxT("wxFIXED_LENGTH"), wxFIXED_LENGTH
},
1888 { wxT("wxALIGN_LEFT"), wxALIGN_LEFT
},
1889 { wxT("wxALIGN_CENTER"), wxALIGN_CENTER
},
1890 { wxT("wxALIGN_CENTRE"), wxALIGN_CENTRE
},
1891 { wxT("wxALIGN_RIGHT"), wxALIGN_RIGHT
},
1892 { wxT("wxCOLOURED"), wxCOLOURED
},
1895 { wxT("wxTB_3DBUTTONS"), wxTB_3DBUTTONS
},
1896 { wxT("wxTB_HORIZONTAL"), wxTB_HORIZONTAL
},
1897 { wxT("wxTB_VERTICAL"), wxTB_VERTICAL
},
1898 { wxT("wxTB_FLAT"), wxTB_FLAT
},
1901 { wxT("wxDIALOG_MODAL"), wxDIALOG_MODAL
},
1904 { wxT("wxVSCROLL"), wxVSCROLL
},
1905 { wxT("wxHSCROLL"), wxHSCROLL
},
1906 { wxT("wxCAPTION"), wxCAPTION
},
1907 { wxT("wxSTAY_ON_TOP"), wxSTAY_ON_TOP
},
1908 { wxT("wxICONIZE"), wxICONIZE
},
1909 { wxT("wxMINIMIZE"), wxICONIZE
},
1910 { wxT("wxMAXIMIZE"), wxMAXIMIZE
},
1912 { wxT("wxMDI_PARENT"), 0},
1913 { wxT("wxMDI_CHILD"), 0},
1914 { wxT("wxTHICK_FRAME"), wxTHICK_FRAME
},
1915 { wxT("wxRESIZE_BORDER"), wxRESIZE_BORDER
},
1916 { wxT("wxSYSTEM_MENU"), wxSYSTEM_MENU
},
1917 { wxT("wxMINIMIZE_BOX"), wxMINIMIZE_BOX
},
1918 { wxT("wxMAXIMIZE_BOX"), wxMAXIMIZE_BOX
},
1919 { wxT("wxRESIZE_BOX"), wxRESIZE_BOX
},
1920 { wxT("wxDEFAULT_FRAME_STYLE"), wxDEFAULT_FRAME_STYLE
},
1921 { wxT("wxDEFAULT_FRAME"), wxDEFAULT_FRAME_STYLE
},
1922 { wxT("wxDEFAULT_DIALOG_STYLE"), wxDEFAULT_DIALOG_STYLE
},
1923 { wxT("wxBORDER"), wxBORDER
},
1924 { wxT("wxRETAINED"), wxRETAINED
},
1925 { wxT("wxNATIVE_IMPL"), 0},
1926 { wxT("wxEXTENDED_IMPL"), 0},
1927 { wxT("wxBACKINGSTORE"), wxBACKINGSTORE
},
1928 // { wxT("wxFLAT"), wxFLAT},
1929 // { wxT("wxMOTIF_RESIZE"), wxMOTIF_RESIZE},
1930 { wxT("wxFIXED_LENGTH"), 0},
1931 { wxT("wxDOUBLE_BORDER"), wxDOUBLE_BORDER
},
1932 { wxT("wxSUNKEN_BORDER"), wxSUNKEN_BORDER
},
1933 { wxT("wxRAISED_BORDER"), wxRAISED_BORDER
},
1934 { wxT("wxSIMPLE_BORDER"), wxSIMPLE_BORDER
},
1935 { wxT("wxSTATIC_BORDER"), wxSTATIC_BORDER
},
1936 { wxT("wxTRANSPARENT_WINDOW"), wxTRANSPARENT_WINDOW
},
1937 { wxT("wxNO_BORDER"), wxNO_BORDER
},
1938 { wxT("wxCLIP_CHILDREN"), wxCLIP_CHILDREN
},
1939 { wxT("wxTAB_TRAVERSAL"), 0}, // Compatibility only
1941 { wxT("wxTINY_CAPTION_HORIZ"), wxTINY_CAPTION_HORIZ
},
1942 { wxT("wxTINY_CAPTION_VERT"), wxTINY_CAPTION_VERT
},
1944 // Text font families
1945 { wxT("wxDEFAULT"), wxDEFAULT
},
1946 { wxT("wxDECORATIVE"), wxDECORATIVE
},
1947 { wxT("wxROMAN"), wxROMAN
},
1948 { wxT("wxSCRIPT"), wxSCRIPT
},
1949 { wxT("wxSWISS"), wxSWISS
},
1950 { wxT("wxMODERN"), wxMODERN
},
1951 { wxT("wxTELETYPE"), wxTELETYPE
},
1952 { wxT("wxVARIABLE"), wxVARIABLE
},
1953 { wxT("wxFIXED"), wxFIXED
},
1954 { wxT("wxNORMAL"), wxNORMAL
},
1955 { wxT("wxLIGHT"), wxLIGHT
},
1956 { wxT("wxBOLD"), wxBOLD
},
1957 { wxT("wxITALIC"), wxITALIC
},
1958 { wxT("wxSLANT"), wxSLANT
},
1959 { wxT("wxSOLID"), wxSOLID
},
1960 { wxT("wxDOT"), wxDOT
},
1961 { wxT("wxLONG_DASH"), wxLONG_DASH
},
1962 { wxT("wxSHORT_DASH"), wxSHORT_DASH
},
1963 { wxT("wxDOT_DASH"), wxDOT_DASH
},
1964 { wxT("wxUSER_DASH"), wxUSER_DASH
},
1965 { wxT("wxTRANSPARENT"), wxTRANSPARENT
},
1966 { wxT("wxSTIPPLE"), wxSTIPPLE
},
1967 { wxT("wxBDIAGONAL_HATCH"), wxBDIAGONAL_HATCH
},
1968 { wxT("wxCROSSDIAG_HATCH"), wxCROSSDIAG_HATCH
},
1969 { wxT("wxFDIAGONAL_HATCH"), wxFDIAGONAL_HATCH
},
1970 { wxT("wxCROSS_HATCH"), wxCROSS_HATCH
},
1971 { wxT("wxHORIZONTAL_HATCH"), wxHORIZONTAL_HATCH
},
1972 { wxT("wxVERTICAL_HATCH"), wxVERTICAL_HATCH
},
1973 { wxT("wxJOIN_BEVEL"), wxJOIN_BEVEL
},
1974 { wxT("wxJOIN_MITER"), wxJOIN_MITER
},
1975 { wxT("wxJOIN_ROUND"), wxJOIN_ROUND
},
1976 { wxT("wxCAP_ROUND"), wxCAP_ROUND
},
1977 { wxT("wxCAP_PROJECTING"), wxCAP_PROJECTING
},
1978 { wxT("wxCAP_BUTT"), wxCAP_BUTT
},
1981 { wxT("wxCLEAR"), wxCLEAR
},
1982 { wxT("wxXOR"), wxXOR
},
1983 { wxT("wxINVERT"), wxINVERT
},
1984 { wxT("wxOR_REVERSE"), wxOR_REVERSE
},
1985 { wxT("wxAND_REVERSE"), wxAND_REVERSE
},
1986 { wxT("wxCOPY"), wxCOPY
},
1987 { wxT("wxAND"), wxAND
},
1988 { wxT("wxAND_INVERT"), wxAND_INVERT
},
1989 { wxT("wxNO_OP"), wxNO_OP
},
1990 { wxT("wxNOR"), wxNOR
},
1991 { wxT("wxEQUIV"), wxEQUIV
},
1992 { wxT("wxSRC_INVERT"), wxSRC_INVERT
},
1993 { wxT("wxOR_INVERT"), wxOR_INVERT
},
1994 { wxT("wxNAND"), wxNAND
},
1995 { wxT("wxOR"), wxOR
},
1996 { wxT("wxSET"), wxSET
},
1998 { wxT("wxFLOOD_SURFACE"), wxFLOOD_SURFACE
},
1999 { wxT("wxFLOOD_BORDER"), wxFLOOD_BORDER
},
2000 { wxT("wxODDEVEN_RULE"), wxODDEVEN_RULE
},
2001 { wxT("wxWINDING_RULE"), wxWINDING_RULE
},
2002 { wxT("wxHORIZONTAL"), wxHORIZONTAL
},
2003 { wxT("wxVERTICAL"), wxVERTICAL
},
2004 { wxT("wxBOTH"), wxBOTH
},
2005 { wxT("wxCENTER_FRAME"), wxCENTER_FRAME
},
2006 { wxT("wxOK"), wxOK
},
2007 { wxT("wxYES_NO"), wxYES_NO
},
2008 { wxT("wxCANCEL"), wxCANCEL
},
2009 { wxT("wxYES"), wxYES
},
2010 { wxT("wxNO"), wxNO
},
2011 { wxT("wxICON_EXCLAMATION"), wxICON_EXCLAMATION
},
2012 { wxT("wxICON_HAND"), wxICON_HAND
},
2013 { wxT("wxICON_QUESTION"), wxICON_QUESTION
},
2014 { wxT("wxICON_INFORMATION"), wxICON_INFORMATION
},
2015 { wxT("wxICON_STOP"), wxICON_STOP
},
2016 { wxT("wxICON_ASTERISK"), wxICON_ASTERISK
},
2017 { wxT("wxICON_MASK"), wxICON_MASK
},
2018 { wxT("wxCENTRE"), wxCENTRE
},
2019 { wxT("wxCENTER"), wxCENTRE
},
2020 { wxT("wxUSER_COLOURS"), wxUSER_COLOURS
},
2021 { wxT("wxVERTICAL_LABEL"), 0},
2022 { wxT("wxHORIZONTAL_LABEL"), 0},
2024 // Bitmap types (not strictly styles)
2025 { wxT("wxBITMAP_TYPE_XPM"), wxBITMAP_TYPE_XPM
},
2026 { wxT("wxBITMAP_TYPE_XBM"), wxBITMAP_TYPE_XBM
},
2027 { wxT("wxBITMAP_TYPE_BMP"), wxBITMAP_TYPE_BMP
},
2028 { wxT("wxBITMAP_TYPE_RESOURCE"), wxBITMAP_TYPE_BMP_RESOURCE
},
2029 { wxT("wxBITMAP_TYPE_BMP_RESOURCE"), wxBITMAP_TYPE_BMP_RESOURCE
},
2030 { wxT("wxBITMAP_TYPE_GIF"), wxBITMAP_TYPE_GIF
},
2031 { wxT("wxBITMAP_TYPE_TIF"), wxBITMAP_TYPE_TIF
},
2032 { wxT("wxBITMAP_TYPE_ICO"), wxBITMAP_TYPE_ICO
},
2033 { wxT("wxBITMAP_TYPE_ICO_RESOURCE"), wxBITMAP_TYPE_ICO_RESOURCE
},
2034 { wxT("wxBITMAP_TYPE_CUR"), wxBITMAP_TYPE_CUR
},
2035 { wxT("wxBITMAP_TYPE_CUR_RESOURCE"), wxBITMAP_TYPE_CUR_RESOURCE
},
2036 { wxT("wxBITMAP_TYPE_XBM_DATA"), wxBITMAP_TYPE_XBM_DATA
},
2037 { wxT("wxBITMAP_TYPE_XPM_DATA"), wxBITMAP_TYPE_XPM_DATA
},
2038 { wxT("wxBITMAP_TYPE_ANY"), wxBITMAP_TYPE_ANY
}
2041 static int wxResourceBitListCount
= (sizeof(wxResourceBitListTable
)/sizeof(wxResourceBitListStruct
));
2043 long wxParseWindowStyle(const wxString
& bitListString
)
2048 word
= wxResourceParseWord(WXSTRINGCAST bitListString
, &i
);
2049 while (word
!= NULL
)
2053 for (j
= 0; j
< wxResourceBitListCount
; j
++)
2054 if (wxStrcmp(wxResourceBitListTable
[j
].word
, word
) == 0)
2056 bitList
|= wxResourceBitListTable
[j
].bits
;
2062 wxLogWarning(_("Unrecognized style %s whilst parsing resource."), word
);
2065 word
= wxResourceParseWord(WXSTRINGCAST bitListString
, &i
);
2071 * Load a bitmap from a wxWindows resource, choosing an optimum
2072 * depth and appropriate type.
2075 wxBitmap
wxResourceCreateBitmap(const wxString
& resource
, wxResourceTable
*table
)
2078 table
= wxDefaultResourceTable
;
2080 wxItemResource
*item
= table
->FindResource(resource
);
2083 if ((item
->GetType() == wxT("")) || (item
->GetType() != wxT("wxBitmap")))
2085 wxLogWarning(_("%s not a bitmap resource specification."), (const wxChar
*) resource
);
2086 return wxNullBitmap
;
2088 int thisDepth
= wxDisplayDepth();
2089 long thisNoColours
= (long)pow(2.0, (double)thisDepth
);
2091 wxItemResource
*optResource
= (wxItemResource
*) NULL
;
2093 // Try to find optimum bitmap for this platform/colour depth
2094 wxNode
*node
= item
->GetChildren().First();
2097 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2098 int platform
= (int)child
->GetValue2();
2099 int noColours
= (int)child
->GetValue3();
2101 char *name = child->GetName();
2102 int bitmapType = (int)child->GetValue1();
2103 int xRes = child->GetWidth();
2104 int yRes = child->GetHeight();
2109 case RESOURCE_PLATFORM_ANY
:
2111 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2112 optResource
= child
;
2115 // Maximise the number of colours.
2116 // If noColours is zero (unspecified), then assume this
2117 // is the right one.
2118 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2119 optResource
= child
;
2124 case RESOURCE_PLATFORM_WINDOWS
:
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
;
2138 case RESOURCE_PLATFORM_X
:
2140 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2141 optResource
= child
;
2144 // Maximise the number of colours
2145 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2146 optResource
= child
;
2152 case RESOURCE_PLATFORM_MAC
:
2154 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2155 optResource
= child
;
2158 // Maximise the number of colours
2159 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2160 optResource
= child
;
2168 node
= node
->Next();
2170 // If no matching resource, fail.
2172 return wxNullBitmap
;
2174 wxString name
= optResource
->GetName();
2175 int bitmapType
= (int)optResource
->GetValue1();
2178 case wxBITMAP_TYPE_XBM_DATA
:
2181 wxItemResource
*item
= table
->FindResource(name
);
2184 wxLogWarning(_("Failed to find XBM resource %s.\n"
2185 "Forgot to use wxResourceLoadBitmapData?"), (const wxChar
*) name
);
2186 return wxNullBitmap
;
2188 return wxBitmap(item
->GetValue1(), (int)item
->GetValue2(), (int)item
->GetValue3()) ;
2190 wxLogWarning(_("No XBM facility available!"));
2194 case wxBITMAP_TYPE_XPM_DATA
:
2196 #if (defined(__WXGTK__)) || (defined(__WXMSW__) && wxUSE_XPM_IN_MSW)
2197 wxItemResource
*item
= table
->FindResource(name
);
2200 wxLogWarning(_("Failed to find XPM resource %s.\n"
2201 "Forgot to use wxResourceLoadBitmapData?"), (const wxChar
*) name
);
2202 return wxNullBitmap
;
2204 return wxBitmap((char **)item
->GetValue1());
2206 wxLogWarning(_("No XPM facility available!"));
2212 return wxBitmap(name
, bitmapType
);
2216 return wxNullBitmap
;
2220 wxLogWarning(_("Bitmap resource specification %s not found."), (const wxChar
*) resource
);
2221 return wxNullBitmap
;
2226 * Load an icon from a wxWindows resource, choosing an optimum
2227 * depth and appropriate type.
2230 wxIcon
wxResourceCreateIcon(const wxString
& resource
, wxResourceTable
*table
)
2233 table
= wxDefaultResourceTable
;
2235 wxItemResource
*item
= table
->FindResource(resource
);
2238 if ((item
->GetType() == wxT("")) || wxStrcmp(item
->GetType(), wxT("wxIcon")) != 0)
2240 wxLogWarning(_("%s not an icon resource specification."), (const wxChar
*) resource
);
2243 int thisDepth
= wxDisplayDepth();
2244 long thisNoColours
= (long)pow(2.0, (double)thisDepth
);
2246 wxItemResource
*optResource
= (wxItemResource
*) NULL
;
2248 // Try to find optimum icon for this platform/colour depth
2249 wxNode
*node
= item
->GetChildren().First();
2252 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2253 int platform
= (int)child
->GetValue2();
2254 int noColours
= (int)child
->GetValue3();
2256 char *name = child->GetName();
2257 int bitmapType = (int)child->GetValue1();
2258 int xRes = child->GetWidth();
2259 int yRes = child->GetHeight();
2264 case RESOURCE_PLATFORM_ANY
:
2266 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2267 optResource
= child
;
2270 // Maximise the number of colours.
2271 // If noColours is zero (unspecified), then assume this
2272 // is the right one.
2273 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2274 optResource
= child
;
2279 case RESOURCE_PLATFORM_WINDOWS
:
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
;
2293 case RESOURCE_PLATFORM_X
:
2295 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2296 optResource
= child
;
2299 // Maximise the number of colours
2300 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2301 optResource
= child
;
2307 case RESOURCE_PLATFORM_MAC
:
2309 if (!optResource
&& ((noColours
== 0) || (noColours
<= thisNoColours
)))
2310 optResource
= child
;
2313 // Maximise the number of colours
2314 if ((noColours
== 0) || ((noColours
<= thisNoColours
) && (noColours
> optResource
->GetValue3())))
2315 optResource
= child
;
2323 node
= node
->Next();
2325 // If no matching resource, fail.
2329 wxString name
= optResource
->GetName();
2330 int bitmapType
= (int)optResource
->GetValue1();
2333 case wxBITMAP_TYPE_XBM_DATA
:
2336 wxItemResource
*item
= table
->FindResource(name
);
2339 wxLogWarning(_("Failed to find XBM resource %s.\n"
2340 "Forgot to use wxResourceLoadIconData?"), (const wxChar
*) name
);
2343 return wxIcon((const char **)item
->GetValue1(), (int)item
->GetValue2(), (int)item
->GetValue3());
2345 wxLogWarning(_("No XBM facility available!"));
2349 case wxBITMAP_TYPE_XPM_DATA
:
2351 // *** XPM ICON NOT YET IMPLEMENTED IN WXWINDOWS ***
2353 #if (defined(__WXGTK__)) || (defined(__WXMSW__) && wxUSE_XPM_IN_MSW)
2354 wxItemResource *item = table->FindResource(name);
2358 sprintf(buf, _("Failed to find XPM resource %s.\nForgot to use wxResourceLoadIconData?"), name);
2362 return wxIcon((char **)item->GetValue1());
2364 wxLogWarning(_("No XPM facility available!"));
2367 wxLogWarning(_("No XPM icon facility available!"));
2373 wxLogWarning(_("Icon resource specification %s not found."), (const wxChar
*) resource
);
2375 return wxIcon(name
, bitmapType
);
2384 wxLogWarning(_("Icon resource specification %s not found."), (const wxChar
*) resource
);
2389 wxMenu
*wxResourceCreateMenu(wxItemResource
*item
)
2391 wxMenu
*menu
= new wxMenu
;
2392 wxNode
*node
= item
->GetChildren().First();
2395 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2396 if ((child
->GetType() != wxT("")) && (child
->GetType() == wxT("wxMenuSeparator")))
2397 menu
->AppendSeparator();
2398 else if (child
->GetChildren().Number() > 0)
2400 wxMenu
*subMenu
= wxResourceCreateMenu(child
);
2402 menu
->Append((int)child
->GetValue1(), child
->GetTitle(), subMenu
, child
->GetValue4());
2406 menu
->Append((int)child
->GetValue1(), child
->GetTitle(), child
->GetValue4(), (child
->GetValue2() != 0));
2408 node
= node
->Next();
2413 wxMenuBar
*wxResourceCreateMenuBar(const wxString
& resource
, wxResourceTable
*table
, wxMenuBar
*menuBar
)
2416 table
= wxDefaultResourceTable
;
2418 wxItemResource
*menuResource
= table
->FindResource(resource
);
2419 if (menuResource
&& (menuResource
->GetType() != wxT("")) && (menuResource
->GetType() == wxT("wxMenu")))
2422 menuBar
= new wxMenuBar
;
2423 wxNode
*node
= menuResource
->GetChildren().First();
2426 wxItemResource
*child
= (wxItemResource
*)node
->Data();
2427 wxMenu
*menu
= wxResourceCreateMenu(child
);
2429 menuBar
->Append(menu
, child
->GetTitle());
2430 node
= node
->Next();
2434 return (wxMenuBar
*) NULL
;
2437 wxMenu
*wxResourceCreateMenu(const wxString
& resource
, wxResourceTable
*table
)
2440 table
= wxDefaultResourceTable
;
2442 wxItemResource
*menuResource
= table
->FindResource(resource
);
2443 if (menuResource
&& (menuResource
->GetType() != wxT("")) && (menuResource
->GetType() == wxT("wxMenu")))
2444 // if (menuResource && (menuResource->GetType() == wxTYPE_MENU))
2445 return wxResourceCreateMenu(menuResource
);
2446 return (wxMenu
*) NULL
;
2449 // Global equivalents (so don't have to refer to default table explicitly)
2450 bool wxResourceParseData(const wxString
& resource
, wxResourceTable
*table
)
2453 table
= wxDefaultResourceTable
;
2455 return table
->ParseResourceData(resource
);
2458 bool wxResourceParseFile(const wxString
& filename
, wxResourceTable
*table
)
2461 table
= wxDefaultResourceTable
;
2463 return table
->ParseResourceFile(filename
);
2466 // Register XBM/XPM data
2467 bool wxResourceRegisterBitmapData(const wxString
& name
, char bits
[], int width
, int height
, wxResourceTable
*table
)
2470 table
= wxDefaultResourceTable
;
2472 return table
->RegisterResourceBitmapData(name
, bits
, width
, height
);
2475 bool wxResourceRegisterBitmapData(const wxString
& name
, char **data
, wxResourceTable
*table
)
2478 table
= wxDefaultResourceTable
;
2480 return table
->RegisterResourceBitmapData(name
, data
);
2483 void wxResourceClear(wxResourceTable
*table
)
2486 table
= wxDefaultResourceTable
;
2488 table
->ClearTable();
2495 bool wxResourceAddIdentifier(const wxString
& name
, int value
, wxResourceTable
*table
)
2498 table
= wxDefaultResourceTable
;
2500 table
->identifiers
.Put(name
, (wxObject
*)(long)value
);
2504 int wxResourceGetIdentifier(const wxString
& name
, wxResourceTable
*table
)
2507 table
= wxDefaultResourceTable
;
2509 return (int)(long)table
->identifiers
.Get(name
);
2513 * Parse #include file for #defines (only)
2516 bool wxResourceParseIncludeFile(const wxString
& f
, wxResourceTable
*table
)
2519 table
= wxDefaultResourceTable
;
2521 FILE *fd
= fopen(f
.fn_str(), "r");
2526 while (wxGetResourceToken(fd
))
2528 if (strcmp(wxResourceBuffer
, "#define") == 0)
2530 wxGetResourceToken(fd
);
2531 wxChar
*name
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
2532 wxGetResourceToken(fd
);
2533 wxChar
*value
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
2534 if (wxIsdigit(value
[0]))
2536 int val
= (int)wxAtol(value
);
2537 wxResourceAddIdentifier(name
, val
, table
);
2548 * Reading strings as if they were .wxr files
2551 static int getc_string(char *s
)
2553 int ch
= s
[wxResourceStringPtr
];
2558 wxResourceStringPtr
++;
2563 static int ungetc_string()
2565 wxResourceStringPtr
--;
2569 bool wxEatWhiteSpaceString(char *s
)
2573 while ((ch
= getc_string(s
)) != EOF
)
2585 ch
= getc_string(s
);
2596 while ((ch
= getc_string(s
)) != EOF
)
2598 if (ch
== '/' && prev_ch
== '*')
2620 bool wxGetResourceTokenString(char *s
)
2622 if (!wxResourceBuffer
)
2623 wxReallocateResourceBuffer();
2624 wxResourceBuffer
[0] = 0;
2625 wxEatWhiteSpaceString(s
);
2627 int ch
= getc_string(s
);
2631 wxResourceBufferCount
= 0;
2632 ch
= getc_string(s
);
2638 wxResourceBuffer
[wxResourceBufferCount
] = 0;
2641 // Escaped characters
2642 else if (ch
== '\\')
2644 int newCh
= getc_string(s
);
2647 else if (newCh
== 10)
2655 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
2656 wxReallocateResourceBuffer();
2657 wxResourceBuffer
[wxResourceBufferCount
] = (char)actualCh
;
2658 wxResourceBufferCount
++;
2659 ch
= getc_string(s
);
2661 wxResourceBuffer
[wxResourceBufferCount
] = 0;
2665 wxResourceBufferCount
= 0;
2667 while (ch
!= ' ' && ch
!= EOF
&& ch
!= ' ' && ch
!= 13 && ch
!= 9 && ch
!= 10)
2669 if (wxResourceBufferCount
>= wxResourceBufferSize
-1)
2670 wxReallocateResourceBuffer();
2671 wxResourceBuffer
[wxResourceBufferCount
] = (char)ch
;
2672 wxResourceBufferCount
++;
2674 ch
= getc_string(s
);
2676 wxResourceBuffer
[wxResourceBufferCount
] = 0;
2684 * Files are in form:
2685 static char *name = "....";
2686 with possible comments.
2689 bool wxResourceReadOneResourceString(char *s
, wxExprDatabase
& db
, bool *eof
, wxResourceTable
*table
)
2692 table
= wxDefaultResourceTable
;
2694 // static or #define
2695 if (!wxGetResourceTokenString(s
))
2701 if (strcmp(wxResourceBuffer
, "#define") == 0)
2703 wxGetResourceTokenString(s
);
2704 wxChar
*name
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
2705 wxGetResourceTokenString(s
);
2706 wxChar
*value
= copystring(wxConvCurrent
->cMB2WX(wxResourceBuffer
));
2707 if (wxIsdigit(value
[0]))
2709 int val
= (int)wxAtol(value
);
2710 wxResourceAddIdentifier(name
, val
, table
);
2714 wxLogWarning(_("#define %s must be an integer."), name
);
2725 else if (strcmp(wxResourceBuffer, "#include") == 0)
2727 wxGetResourceTokenString(s);
2728 char *name = copystring(wxResourceBuffer);
2729 char *actualName = name;
2731 actualName = name + 1;
2732 int len = strlen(name);
2733 if ((len > 0) && (name[len-1] == '"'))
2735 if (!wxResourceParseIncludeFile(actualName, table))
2738 sprintf(buf, _("Could not find resource include file %s."), actualName);
2745 else if (strcmp(wxResourceBuffer
, "static") != 0)
2748 wxStrcpy(buf
, _("Found "));
2749 wxStrncat(buf
, wxConvCurrent
->cMB2WX(wxResourceBuffer
), 30);
2750 wxStrcat(buf
, _(", expected static, #include or #define\nwhilst parsing resource."));
2756 if (!wxGetResourceTokenString(s
))
2758 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2763 if (strcmp(wxResourceBuffer
, "char") != 0)
2765 wxLogWarning(_("Expected 'char' whilst parsing resource."));
2770 if (!wxGetResourceTokenString(s
))
2772 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2777 if (wxResourceBuffer
[0] != '*')
2779 wxLogWarning(_("Expected '*' whilst parsing resource."));
2782 wxChar nameBuf
[100];
2783 wxMB2WX(nameBuf
, wxResourceBuffer
+1, 99);
2787 if (!wxGetResourceTokenString(s
))
2789 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2794 if (strcmp(wxResourceBuffer
, "=") != 0)
2796 wxLogWarning(_("Expected '=' whilst parsing resource."));
2801 if (!wxGetResourceTokenString(s
))
2803 wxLogWarning(_("Unexpected end of file whilst parsing resource."));
2809 if (!db
.ReadPrologFromString(wxResourceBuffer
))
2811 wxLogWarning(_("%s: ill-formed resource file syntax."), nameBuf
);
2816 if (!wxGetResourceTokenString(s
))
2823 bool wxResourceParseString(char *s
, wxResourceTable
*table
)
2826 table
= wxDefaultResourceTable
;
2831 // Turn backslashes into spaces
2834 int len
= strlen(s
);
2836 for (i
= 0; i
< len
; i
++)
2837 if (s
[i
] == 92 && s
[i
+1] == 13)
2845 wxResourceStringPtr
= 0;
2848 while (wxResourceReadOneResourceString(s
, db
, &eof
, table
) && !eof
)
2852 return wxResourceInterpretResources(*table
, db
);
2856 * resource loading facility
2859 bool wxWindowBase::LoadFromResource(wxWindow
*parent
, const wxString
& resourceName
, const wxResourceTable
*table
)
2862 table
= wxDefaultResourceTable
;
2864 wxItemResource
*resource
= table
->FindResource((const wxChar
*)resourceName
);
2865 // if (!resource || (resource->GetType() != wxTYPE_DIALOG_BOX))
2866 if (!resource
|| (resource
->GetType() == wxT("")) ||
2867 ! ((resource
->GetType() == wxT("wxDialog")) || (resource
->GetType() == wxT("wxPanel"))))
2870 wxString
title(resource
->GetTitle());
2871 long theWindowStyle
= resource
->GetStyle();
2872 bool isModal
= (resource
->GetValue1() != 0);
2873 int x
= resource
->GetX();
2874 int y
= resource
->GetY();
2875 int width
= resource
->GetWidth();
2876 int height
= resource
->GetHeight();
2877 wxString name
= resource
->GetName();
2879 if (IsKindOf(CLASSINFO(wxDialog
)))
2881 wxDialog
*dialogBox
= (wxDialog
*)this;
2882 long modalStyle
= isModal
? wxDIALOG_MODAL
: 0;
2883 if (!dialogBox
->Create(parent
, -1, title
, wxPoint(x
, y
), wxSize(width
, height
), theWindowStyle
|modalStyle
, name
))
2886 // Only reset the client size if we know we're not going to do it again below.
2887 if ((resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) == 0)
2888 dialogBox
->SetClientSize(width
, height
);
2890 else if (IsKindOf(CLASSINFO(wxPanel
)))
2892 wxPanel
* panel
= (wxPanel
*)this;
2893 if (!panel
->Create(parent
, -1, wxPoint(x
, y
), wxSize(width
, height
), theWindowStyle
, name
))
2898 if (!((wxWindow
*)this)->Create(parent
, -1, wxPoint(x
, y
), wxSize(width
, height
), theWindowStyle
, name
))
2902 if ((resource
->GetResourceStyle() & wxRESOURCE_USE_DEFAULTS
) != 0)
2904 // No need to do this since it's done in wxPanel or wxDialog constructor.
2905 // SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
2909 if (resource
->GetFont().Ok())
2910 SetFont(resource
->GetFont());
2911 if (resource
->GetBackgroundColour().Ok())
2912 SetBackgroundColour(resource
->GetBackgroundColour());
2915 // Should have some kind of font at this point
2916 if (!GetFont().Ok())
2917 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
2918 if (!GetBackgroundColour().Ok())
2919 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
2921 // Only when we've created the window and set the font can we set the correct size,
2922 // if based on dialog units.
2923 if ((resource
->GetResourceStyle() & wxRESOURCE_DIALOG_UNITS
) != 0)
2925 wxSize sz
= ConvertDialogToPixels(wxSize(width
, height
));
2926 SetClientSize(sz
.x
, sz
.y
);
2928 wxPoint pt
= ConvertDialogToPixels(wxPoint(x
, y
));
2932 // Now create children
2933 wxNode
*node
= resource
->GetChildren().First();
2936 wxItemResource
*childResource
= (wxItemResource
*)node
->Data();
2938 (void) CreateItem(childResource
, resource
, table
);
2940 node
= node
->Next();
2945 wxControl
*wxWindowBase::CreateItem(const wxItemResource
*resource
, const wxItemResource
* parentResource
, const wxResourceTable
*table
)
2948 table
= wxDefaultResourceTable
;
2949 return table
->CreateItem((wxWindow
*)this, resource
, parentResource
);
2953 #pragma warning(default:4706) // assignment within conditional expression
2959 #endif // wxUSE_WX_RESOURCES