Huggle  build:^490^dce1e5c
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
preferences.hpp
1 //This program is free software: you can redistribute it and/or modify
2 //it under the terms of the GNU General Public License as published by
3 //the Free Software Foundation, either version 3 of the License, or
4 //(at your option) any later version.
5 
6 //This program is distributed in the hope that it will be useful,
7 //but WITHOUT ANY WARRANTY; without even the implied warranty of
8 //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 //GNU General Public License for more details.
10 
11 #ifndef PREFERENCES_H
12 #define PREFERENCES_H
13 
14 #include <QDialog>
15 #include <QList>
16 #include "configuration.hpp"
17 #include "iextension.hpp"
18 #include "hugglequeuefilter.hpp"
19 
20 namespace Ui
21 {
22  class Preferences;
23 }
24 
25 namespace Huggle
26 {
27  class HuggleQueueFilter;
28  //! Preferences window
29  class Preferences : public QDialog
30  {
31  Q_OBJECT
32 
33  public:
34  explicit Preferences(QWidget *parent = 0);
35  ~Preferences();
36  void EnableQueues();
37  void Disable();
38 
39  private slots:
40  void on_pushButton_clicked();
41  void on_pushButton_2_clicked();
42  void on_listWidget_itemSelectionChanged();
43 
44  private:
45  Ui::Preferences *ui;
46  };
47 }
48 
49 #endif // PREFERENCES_H
Preferences(QWidget *parent=0)
Definition: preferences.cpp:16
Preferences window.
Definition: preferences.hpp:29