// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "xh_frame.h"
#endif
#pragma hdrstop
#endif
+#if wxUSE_XRC
+
#include "wx/xrc/xh_frame.h"
#include "wx/frame.h"
+#include "wx/dialog.h" // to get wxDEFAULT_DIALOG_STYLE
#include "wx/log.h"
#include "wx/intl.h"
XRC_ADD_STYLE(wxNO_3D);
XRC_ADD_STYLE(wxTAB_TRAVERSAL);
XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY);
- XRC_ADD_STYLE(wxCLIP_CHILDREN);
+ XRC_ADD_STYLE(wxFRAME_EX_METAL);
AddWindowStyles();
}
GetName());
if (HasParam(wxT("size")))
- frame->SetClientSize(GetSize());
+ frame->SetClientSize(GetSize(wxT("size"), frame));
if (HasParam(wxT("pos")))
frame->Move(GetPosition());
+ if (HasParam(wxT("icon")))
+ frame->SetIcon(GetIcon(wxT("icon"), wxART_FRAME_ICON));
SetupWindow(frame);
CreateChildren(frame);
- if (GetBool(wxT("centered"), FALSE))
+ if (GetBool(wxT("centered"), false))
frame->Centre();
return frame;
{
return IsOfClass(node, wxT("wxFrame"));
}
+
+#endif // wxUSE_XRC