]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/richedit/wxLayout.h
Removed obsolete files from richedit sample directory
[wxWidgets.git] / samples / richedit / wxLayout.h
diff --git a/samples/richedit/wxLayout.h b/samples/richedit/wxLayout.h
deleted file mode 100644 (file)
index 8d8a594..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/* -*- c++ -*- */
-
-#ifndef __WXLAYOUTH__
-#define __WXLAYOUTH__
-
-#include "wx/wx.h"
-
-#include "wxllist.h"
-#include "wxlwindow.h"
-#include "wxlparser.h"
-
-//-----------------------------------------------------------------------------
-// derived classes
-//-----------------------------------------------------------------------------
-
-class MyFrame;
-class MyApp;
-
-//-----------------------------------------------------------------------------
-// MyFrame
-//-----------------------------------------------------------------------------
-
-class MyFrame: public wxFrame
-{
-
-public:
-
-    MyFrame();
-    void AddSampleText(wxLayoutList *llist);
-    void Clear();
-    void OnCommand( wxCommandEvent &event );
-
-    void OnPrint(wxCommandEvent& event);
-    void OnPrintPreview(wxCommandEvent& event);
-    void OnPrintSetup(wxCommandEvent& event);
-    void OnPageSetup(wxCommandEvent& event);
-    void OnPrintPS(wxCommandEvent& event);
-    void OnPrintPreviewPS(wxCommandEvent& event);
-    void OnPrintSetupPS(wxCommandEvent& event);
-    void OnPageSetupPS(wxCommandEvent& event);
-
-
-private:
-    wxLayoutWindow  *m_lwin;
-    wxPrintData m_PrintData;
-
-    DECLARE_DYNAMIC_CLASS(MyFrame)
-
-    DECLARE_EVENT_TABLE()
-};
-
-//-----------------------------------------------------------------------------
-// MyApp
-//-----------------------------------------------------------------------------
-
-class MyApp: public wxApp
-{
-public:
-
-    MyApp();
-
-    virtual bool OnInit();
-
-};
-
-#endif // __WXCONVERTH__
-