3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
923 B
C++
31 lines
923 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: screenshot_main.h
|
|
// Purpose: Defines the Application Frame
|
|
// Author: Utensil Candel (UtensilCandel@@gmail.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#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_
|