// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "propframe.h"
#endif
public:
PropertiesFrame();
~PropertiesFrame();
-
+
void ShowProps(wxXmlNode *node);
-
+
void ClearProps();
void AddProps(PropertyInfoArray& plist);
- void AddSingleProp(const PropertyInfo& pinfo);
-
+ void AddSingleProp(const PropertyInfo& pinfo, wxTreeItemId *root = NULL);
+
static PropertiesFrame *Get();
-
+
private:
static PropertiesFrame *ms_Instance;
wxRemotelyScrolledTreeCtrl *m_tree;
wxThinSplitterWindow *m_splitter;
- wxSplitterScrolledWindow *m_scrolledWindow;
+ wxSplitterScrolledWindow *m_scrolledWindow;
wxTreeCompanionWindow *m_valueWindow;
-
+
wxHashTable m_EditCtrls;
-
+
friend class PropEditCtrl;
};