]> git.saurik.com Git - wxWidgets.git/blame - utils/screenshotgen/src/screenshot_main.h
Further refine of #15226: wxRichTextCtrl: Implement setting properties with undo...
[wxWidgets.git] / utils / screenshotgen / src / screenshot_main.h
CommitLineData
0d5eda9c
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: screenshot_main.h
3// Purpose: Defines the Application Frame
4// Author: Utensil Candel (UtensilCandel@@gmail.com)
526954c5 5// Licence: wxWindows licence
0d5eda9c
FM
6/////////////////////////////////////////////////////////////////////////////
7
f978831f
BP
8#ifndef _SCREENSHOT_MAIN_H_
9#define _SCREENSHOT_MAIN_H_
0d5eda9c
FM
10
11#include "guiframe.h"
12
51d48751 13class ScreenshotFrame : public GUIFrame
0d5eda9c
FM
14{
15public:
4bae10bd 16 ScreenshotFrame(wxFrame *frame);
ecba92ec 17 ~ScreenshotFrame() {}
0d5eda9c
FM
18
19protected: // event handlers
20
21 virtual void OnClose(wxCloseEvent& event);
22 virtual void OnQuit(wxCommandEvent& event);
23 virtual void OnAbout(wxCommandEvent& event);
24 virtual void OnSeeScreenshots( wxCommandEvent& event);
25
26 virtual void OnCaptureFullScreen( wxCommandEvent& event );
0d5eda9c 27 virtual void OnCaptureAllControls( wxCommandEvent& event );
0d5eda9c
FM
28};
29
f978831f 30#endif // _SCREENSHOT_MAIN_H_