]> git.saurik.com Git - wxWidgets.git/blob - contrib/utils/wxrcedit/preview.h
added QueryRawValue() to wxRegKey and test code for it in the sample
[wxWidgets.git] / contrib / utils / wxrcedit / preview.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Purpose: XML resources editor
3 // Author: Vaclav Slavik
4 // Created: 2000/05/05
5 // RCS-ID: $Id$
6 // Copyright: (c) 2000 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifdef __GNUG__
11 #pragma interface "preview.h"
12 #endif
13
14 #ifndef _PREVIEW_H_
15 #define _PREVIEW_H_
16
17
18
19 class WXDLLEXPORT wxXmlNode;
20 class WXDLLEXPORT wxScrolledWindow;
21 class WXDLLEXPORT wxTextCtrl;
22 class WXDLLEXPORT wxSplitterWindow;
23 class WXDLLEXPORT wxXmlResource;
24 class WXDLLEXPORT wxXmlDocument;
25 #include "wx/frame.h"
26
27
28 class PreviewFrame : public wxFrame
29 {
30 public:
31 PreviewFrame();
32 ~PreviewFrame();
33
34 void Preview(wxXmlNode *node);
35
36 static PreviewFrame *Get();
37
38 private:
39 void PreviewMenu();
40 void PreviewToolbar();
41 void PreviewPanel();
42
43 private:
44 static PreviewFrame *ms_Instance;
45 wxXmlNode *m_Node;
46 wxScrolledWindow *m_ScrollWin;
47 wxTextCtrl *m_LogCtrl;
48 wxSplitterWindow *m_Splitter;
49
50 wxXmlResource *m_RC;
51 wxString m_TmpFile;
52 };
53
54
55 #endif