~w-shackleton/droidpad-pc/trunk

« back to all changes in this revision

Viewing changes to src/if-gui/preferences.hpp

  • Committer: William Shackleton
  • Date: 2013-04-02 20:08:51 UTC
  • Revision ID: w.shackleton@gmail.com-20130402200851-ta2inum60ayg9esr
Added preferences GUI allowing slideshow keys to be changed. More preferences coming soon. Completely untested.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of DroidPad.
 
3
 * DroidPad lets you use an Android mobile to control a joystick or mouse
 
4
 * on a Windows or Linux computer.
 
5
 *
 
6
 * DroidPad is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * DroidPad is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with DroidPad, in the file COPYING.
 
18
 * If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
#ifndef PREFERENCES_H
 
21
#define PREFERENCES_H
 
22
 
 
23
#include <wx/dialog.h>
 
24
#include <wx/textctrl.h>
 
25
#include "droidpadCallbacks.hpp"
 
26
 
 
27
class Preferences : public wxDialog {
 
28
        public:
 
29
                Preferences(wxWindow *parent);
 
30
 
 
31
                DECLARE_EVENT_TABLE()
 
32
        protected:
 
33
                void onDone(wxCommandEvent &evt);
 
34
                void onCancel(wxCommandEvent &evt);
 
35
 
 
36
                void handleXMLError(wxString name);
 
37
        private:
 
38
                wxTextCtrl *blackKey, *whiteKey;
 
39
};
 
40
 
 
41
#endif