~ubuntu-branches/ubuntu/wily/qtgain/wily

« back to all changes in this revision

Viewing changes to src/QtGain.h

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2010-06-13 11:17:58 UTC
  • Revision ID: james.westby@ubuntu.com-20100613111758-ik88zi6416x7ropf
Tags: upstream-0.8.2
ImportĀ upstreamĀ versionĀ 0.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2007-2010 by Vegeta                                     *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
18
 ***************************************************************************/
 
19
 
 
20
#ifndef QTGAIN_H
 
21
#define QTGAIN_H
 
22
 
 
23
#include <QtGui>
 
24
#include "ui_QtGain.h"
 
25
#include "Core.h"
 
26
 
 
27
class QtGain : public QMainWindow, private Core
 
28
{
 
29
    Q_OBJECT
 
30
 
 
31
public:
 
32
    QtGain(QWidget *parent = 0, Qt::WFlags flags = 0);
 
33
    ~QtGain();
 
34
 
 
35
private:
 
36
    Ui::QtGainClass ui;
 
37
 
 
38
    QTimer   *Timer;
 
39
    QProcess *myProcess;
 
40
    QAction  *actionAbout;
 
41
    QAction  *actionCancelOperation;
 
42
    QAction  *actionShowSettings;
 
43
    QAction  *actionQuit;
 
44
 
 
45
    void startupInitiations();
 
46
    void processOutput();
 
47
    void findFiles(const QString &dirName);
 
48
    void openDirectoryDialog();
 
49
    void loadSettings();
 
50
    void saveSettings();
 
51
    void ContextmenuSetModus(bool isIdle);
 
52
    void showErrors();
 
53
 
 
54
public slots:
 
55
    void processFiles();
 
56
    void showPreferencesDialog();
 
57
    void Quit();
 
58
    void cancelOperation(){Core::setOperationCanceled(true);}
 
59
    void showAboutDialog();
 
60
    void updateGUI();
 
61
 
 
62
protected:
 
63
    void dragEnterEvent(QDragEnterEvent *event);
 
64
    void dropEvent(QDropEvent *event);
 
65
    void closeEvent(QCloseEvent *event);
 
66
};
 
67
 
 
68
#endif // QTGAIN_H