43ef6d9ec7
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Purpose: XML resources editor
|
|
// Author: Vaclav Slavik
|
|
// Created: 2000/05/05
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "preview.h"
|
|
#endif
|
|
|
|
#ifndef _PREVIEW_H_
|
|
#define _PREVIEW_H_
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxXmlNode;
|
|
class WXDLLEXPORT wxScrolledWindow;
|
|
class WXDLLEXPORT wxTextCtrl;
|
|
class WXDLLEXPORT wxSplitterWindow;
|
|
class WXDLLEXPORT wxXmlResource;
|
|
class WXDLLEXPORT wxXmlDocument;
|
|
#include "wx/frame.h"
|
|
|
|
|
|
class PreviewFrame : public wxFrame
|
|
{
|
|
public:
|
|
PreviewFrame();
|
|
~PreviewFrame();
|
|
|
|
void Preview(wxXmlNode *node,const wxString &version);
|
|
void MakeDirty();
|
|
// current node updated, needs preview refresh
|
|
// (will be done once mouse enters preview win)
|
|
|
|
static PreviewFrame *Get();
|
|
void ResetResource();
|
|
|
|
private:
|
|
void PreviewMenu();
|
|
void PreviewToolbar();
|
|
void PreviewPanel();
|
|
|
|
private:
|
|
static PreviewFrame *ms_Instance;
|
|
wxXmlNode *m_Node;
|
|
wxString m_Version;
|
|
wxScrolledWindow *m_ScrollWin;
|
|
wxTextCtrl *m_LogCtrl;
|
|
wxSplitterWindow *m_Splitter;
|
|
|
|
wxXmlResource *m_RC;
|
|
wxString m_TmpFile;
|
|
|
|
bool m_Dirty;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
void OnMouseEnter(wxMouseEvent& event);
|
|
};
|
|
|
|
|
|
#endif
|