]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/ogl/samples/studio/mainfrm.h
Removed utils/ogl
[wxWidgets.git] / utils / ogl / samples / studio / mainfrm.h
diff --git a/utils/ogl/samples/studio/mainfrm.h b/utils/ogl/samples/studio/mainfrm.h
deleted file mode 100644 (file)
index 9200fc2..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        mainfrm.h
-// Purpose:     Studio main window class
-// Author:      Julian Smart
-// Modified by:
-// Created:     27/7/98
-// RCS-ID:      $Id$
-// Copyright:   (c) Julian Smart
-// Licence:
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _STUDIO_MAINFRM_H_
-#define _STUDIO_MAINFRM_H_
-
-#include <wx/docmdi.h>
-
-class wxSashLayoutWindow;
-class wxSashEvent;
-
-class csFrame: public wxDocMDIParentFrame
-{
-  public:
-    csFrame(wxDocManager *manager, wxFrame *parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style);
-
-    void OnCloseWindow(wxCloseEvent& event);
-    void OnSize(wxSizeEvent& event);
-    void OnAbout(wxCommandEvent& event);
-    void OnNewWindow(wxCommandEvent& event);
-    void OnQuit(wxCommandEvent& event);
-    void OnSashDragPaletteWindow(wxSashEvent& event);
-    void OnSashDragProjectWindow(wxSashEvent& event);
-    void OnIdle(wxIdleEvent& event);
-    void OnHelp(wxCommandEvent& event);
-    void OnSettings(wxCommandEvent& event);
-
-    // General handler for disabling items
-    void OnUpdateDisable(wxUpdateUIEvent& event);
-    void OnSaveUpdate(wxUpdateUIEvent& event);
-
-DECLARE_EVENT_TABLE()
-};
-
-class csMDIChildFrame: public wxDocMDIChildFrame
-{
-  public:
-    csMDIChildFrame(wxDocument* doc, wxView* view, wxMDIParentFrame *parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style);
-
-    void OnActivate(wxActivateEvent& event);
-
-DECLARE_EVENT_TABLE()
-};
-
-#endif
-  // _STUDIO_MAINFRM_H_
-