author | larspson |
Thu, 14 Oct 2010 12:01:13 +0200 | |
branch | podcatcher_qt_symbian4 |
changeset 238 | ee20bf01bc84 |
parent 235 | f0b8582ef9ac |
permissions | -rw-r--r-- |
216 | 1 |
#ifndef PODCATCHERWIN_H |
2 |
#define PODCATCHERWIN_H |
|
3 |
||
4 |
#include <QMainWindow> |
|
235 | 5 |
#include <QModelIndex> |
216 | 6 |
namespace Ui { |
7 |
class PodcatcherWin; |
|
8 |
} |
|
9 |
||
10 |
class PodcatcherWin : public QMainWindow |
|
11 |
{ |
|
12 |
Q_OBJECT |
|
13 |
||
14 |
public: |
|
15 |
explicit PodcatcherWin(QWidget *parent = 0); |
|
16 |
~PodcatcherWin(); |
|
17 |
||
18 |
private: |
|
19 |
Ui::PodcatcherWin *ui; |
|
235 | 20 |
|
21 |
private slots: |
|
22 |
void on_Settings_clicked(); |
|
23 |
void on_Update_clicked(); |
|
238
ee20bf01bc84
Removed SYMBIAN statement from app pro file. Clear the UI and slots not used
larspson
parents:
235
diff
changeset
|
24 |
void on_Add_clicked(); |
235 | 25 |
void on_listView_clicked(QModelIndex index); |
26 |
void on_listView_customContextMenuRequested(QPoint pos); |
|
216 | 27 |
}; |
28 |
||
29 |
#endif // PODCATCHERWIN_H |