The rounded corners look really dumb at this size.
[wxWidgets.git] / utils / screenshotgen / src / screenshot_main.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: screenshot_main.h
3 // Purpose: Defines the Application Frame
4 // Author: Utensil Candel (UtensilCandel@@gmail.com)
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
7
8 #ifndef _SCREENSHOT_MAIN_H_
9 #define _SCREENSHOT_MAIN_H_
10
11 #include "guiframe.h"
12
13 class ScreenshotFrame : public GUIFrame
14 {
15 public:
16 ScreenshotFrame(wxFrame *frame);
17 ~ScreenshotFrame() {}
18
19 protected: // 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 );
27 virtual void OnCaptureAllControls( wxCommandEvent& event );
28 };
29
30 #endif // _SCREENSHOT_MAIN_H_