OSDN Git Service

Implemented the DropBox widget.
[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 //Class declarations
27 class QFileSystemModelEx;
28 class WorkingBanner;
29 class MessageHandlerThread;
30 class AudioFileModel;
31 class MetaInfoModel;
32 class SettingsModel;
33 class QButtonGroup;
34 class FileListModel;
35 class AbstractEncoder;
36 class QMenu;
37 class DropBox;
38
39 class MainWindow: public QMainWindow, private Ui::MainWindow
40 {
41         Q_OBJECT
42
43 public:
44         MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, SettingsModel *settingsModel, QWidget *parent = 0);
45         ~MainWindow(void);
46
47         bool isAccepted() { return m_accepted; }
48
49 private slots:
50         void windowShown(void);
51         void aboutButtonClicked(void);
52         void encodeButtonClicked(void);
53         void closeButtonClicked(void);
54         void addFilesButtonClicked(void);
55         void clearFilesButtonClicked(void);
56         void removeFileButtonClicked(void);
57         void fileDownButtonClicked(void);
58         void fileUpButtonClicked(void);
59         void showDetailsButtonClicked(void);
60         void tabPageChanged(int idx);
61         void tabActionActivated(QAction *action);
62         void styleActionActivated(QAction *action);
63         void outputFolderViewClicked(const QModelIndex &index);
64         void makeFolderButtonClicked(void);
65         void gotoHomeFolderButtonClicked(void);
66         void gotoDesktopButtonClicked(void);
67         void gotoMusicFolderButtonClicked(void);
68         void checkUpdatesActionActivated(void);
69         void visitHomepageActionActivated(void);
70         void openFolderActionActivated(void);
71         void notifyOtherInstance(void);
72         void addFileDelayed(const QString &filePath);
73         void handleDelayedFiles(void);
74         void editMetaButtonClicked(void);
75         void clearMetaButtonClicked(void);
76         void updateEncoder(int id);
77         void updateRCMode(int id);
78         void updateBitrate(int value);
79         void sourceModelChanged(void);
80         void metaTagsEnabledChanged(void);
81         void playlistEnabledChanged(void);
82         void saveToSourceFolderChanged(void);
83         void prependRelativePathChanged(void);
84         void restoreCursor(void);
85         void sourceFilesContextMenu(const QPoint &pos);
86         void previewContextActionTriggered(void);
87         void findFileContextActionTriggered(void);
88         void disableUpdateReminderActionTriggered(bool checked);
89         void disableSoundsActionTriggered(bool checked);
90         void outputFolderContextMenu(const QPoint &pos);
91         void showFolderContextActionTriggered(void);
92         void installWMADecoderActionTriggered(bool checked);
93         void disableNeroAacNotificationsActionTriggered(bool checked);
94         void disableWmaDecoderNotificationsActionTriggered(bool checked);
95         void showDropBoxWidgetActionTriggered(bool checked);
96
97 protected:
98         void showEvent(QShowEvent *event);
99         void dragEnterEvent(QDragEnterEvent *event);
100         void dropEvent(QDropEvent *event);
101         void closeEvent(QCloseEvent *event);
102         void resizeEvent(QResizeEvent *event);
103         bool eventFilter(QObject *obj, QEvent *event);
104
105 private:
106         void addFiles(const QStringList &files);
107
108         bool m_accepted;
109         bool m_firstTimeShown;
110         FileListModel *m_fileListModel;
111         QFileSystemModelEx *m_fileSystemModel;
112         QActionGroup *m_tabActionGroup;
113         QActionGroup *m_styleActionGroup;
114         QButtonGroup *m_encoderButtonGroup;
115         QButtonGroup *m_modeButtonGroup;
116         WorkingBanner *m_banner;
117         MessageHandlerThread *m_messageHandler;
118         QStringList *m_delayedFileList;
119         QTimer *m_delayedFileTimer;
120         AudioFileModel *m_metaData;
121         MetaInfoModel *m_metaInfoModel;
122         SettingsModel *m_settings;
123         QLabel *m_dropNoteLabel;
124         QMenu *m_sourceFilesContextMenu;
125         QMenu *m_outputFolderContextMenu;
126         DropBox *m_dropBox;
127 };