Wespo  2.2
An unofficial tool to create a .po file for your wesnoth add-on
 All Classes Functions Variables
frmMain.h
1 /*
2  * wesPO - Unofficial wesnoth tool to create a basic .po for your own addon
3  *
4  * Made by Nobun
5  * www.mugenation.com
6  *
7  * Written with: Gcc-c++ (g++) / QT4
8  *
9  *------
10  *
11  * Copyright (C) 2009 Nobun
12  *
13  * This program is free software: you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation, either version 3 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program (GPL.txt). If not, see <http://www.gnu.org/licenses/>.
25  *
26  ******************************************************/
27 
28 #ifndef FRMMAIN_H
29 #define FRMMAIN_H
30 
31 #include <QString>
32 #include "ui_frmMain.h"
33 
35 
39 class frmMain : public QMainWindow
40 {
41  Q_OBJECT
42 
43 public:
44  frmMain(QWidget *parent = 0);
45  Ui::frmMainDLG ui;
46 
47 private slots:
48  void About();
49  void browse1();
50  void newPO();
51  void enable_btn(const QString &value);
52 private:
53  QString wespocfg;
54  QString last_dir;
55  int last_check;
56 private:
57  //void saveConfig(QString &mydir);
58 };
59 
60 
61 #endif
62 
The user interface class.
Definition: frmMain.h:39