wxWidgets/contrib/utils/wxrcedit/preview.h
Václav Slavík 26607f41ae wxrcedit bugfixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8807 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2000-11-24 17:19:48 +00:00

64 lines
1.5 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);
void MakeDirty();
// current node updated, needs preview refresh
// (will be done once mouse enters preview win)
static PreviewFrame *Get();
private:
void PreviewMenu();
void PreviewToolbar();
void PreviewPanel();
private:
static PreviewFrame *ms_Instance;
wxXmlNode *m_Node;
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