OSDN Git Service

first commit
[lamexp/LameXP.git] / src / Dialog_MainWindow.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2010 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include "../tmp/UIC_MainWindow.h"
25
26 #include "Model_FileList.h"
27
28 //Class declarations
29 class QFileSystemModel;
30 class WorkingBanner;
31
32 class MainWindow: public QMainWindow, private Ui::MainWindow
33 {
34         Q_OBJECT
35
36 public:
37         MainWindow(QWidget *parent = 0);
38         ~MainWindow(void);
39
40 private slots:
41         void aboutButtonClicked(void);
42         void encodeButtonClicked(void);
43         void addFilesButtonClicked(void);
44         void clearFilesButtonClicked(void);
45         void removeFileButtonClicked(void);
46         void fileDownButtonClicked(void);
47         void fileUpButtonClicked(void);
48         void editMetaButtonClicked(void);
49         void tabPageChanged(int idx);
50         void tabActionActivated(QAction *action);
51         void outputFolderViewClicked(const QModelIndex &index);
52         void makeFolderButtonClicked(void);
53         void gotoHomeFolderButtonClicked(void);
54         void gotoDesktopButtonClicked(void);
55         void gotoMusicFolderButtonClicked(void);
56         void checkUpdatesActionActivated(void);
57         void visitHomepageActionActivated(void);
58         void openFolderActionActivated(void);
59
60 private:
61         FileListModel *m_fileListModel;
62         QFileSystemModel *m_fileSystemModel;
63         QActionGroup *m_tabActionGroup;
64         WorkingBanner *m_banner;
65 };