Files
wxWidgets/utils/screenshotgen/src/screenshot_main.h
2009-01-14 13:26:37 +00:00

32 lines
944 B
C++

/////////////////////////////////////////////////////////////////////////////
// Name: screenshot_main.h
// Purpose: Defines the Application Frame
// Author: Utensil Candel (UtensilCandel@@gmail.com)
// RCS-ID: $Id$
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef _SCREENSHOT_MAIN_H_
#define _SCREENSHOT_MAIN_H_
#include "guiframe.h"
class ScreenshotFrame : public GUIFrame
{
public:
ScreenshotFrame(wxFrame *frame);
~ScreenshotFrame() {}
protected: // event handlers
virtual void OnClose(wxCloseEvent& event);
virtual void OnQuit(wxCommandEvent& event);
virtual void OnAbout(wxCommandEvent& event);
virtual void OnSeeScreenshots( wxCommandEvent& event);
virtual void OnCaptureFullScreen( wxCommandEvent& event );
virtual void OnCaptureAllControls( wxCommandEvent& event );
};
#endif // _SCREENSHOT_MAIN_H_