Bumped copyright dates for 2013
[barry.git] / desktop / src / Mode_MainMenu.h
blob3697f544825540f1e766cb176a21f2e37eaf2660
1 ///
2 /// \file Mode_MainMenu.h
3 /// Mode derived class for the main menu buttons
4 ///
6 /*
7 Copyright (C) 2009-2013, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRYDESKTOP_MODE_MAINMENU_H__
23 #define __BARRYDESKTOP_MODE_MAINMENU_H__
25 #include <wx/wx.h>
26 #include <memory>
27 #include "Mode.h"
28 #include "wxi18n.h"
30 class BaseButtons;
31 namespace Barry {
32 class Pin;
35 class MainMenuMode : public Mode
37 std::auto_ptr<BaseButtons> m_basebuttons;
38 wxBitmap m_screenshot;
40 public:
41 MainMenuMode(wxWindow *parent);
42 ~MainMenuMode();
44 void UpdateScreenshot(const Barry::Pin &pin);
46 // events (called from BaseFrame)
47 wxString GetTitleText() const
49 return _W("Barry Desktop Control Panel");
52 void OnPaint(wxDC &dc);
53 void OnMouseMotion(wxDC &dc, int x, int y);
54 void OnLeftDown(wxDC &dc, int x, int y);
55 void OnLeftUp(wxDC &dc, int x, int y);
58 #endif