podcatcher_qt/inc/podcatcherwin.h
author larspson
Wed, 13 Oct 2010 20:15:36 +0200
branchpodcatcher_qt_symbian4
changeset 235 f0b8582ef9ac
parent 216 1f5e22508b46
child 238 ee20bf01bc84
permissions -rw-r--r--
Started some basic UI stuff

#ifndef PODCATCHERWIN_H
#define PODCATCHERWIN_H

#include <QMainWindow>
#include <QModelIndex>
namespace Ui {
    class PodcatcherWin;
}

class PodcatcherWin : public QMainWindow
{
    Q_OBJECT

public:
    explicit PodcatcherWin(QWidget *parent = 0);
    ~PodcatcherWin();

private:
    Ui::PodcatcherWin *ui;

private slots:
    void on_Settings_clicked();
    void on_Update_clicked();
    void on_Add_clicked();
    void on_Add_clicked(bool checked);
    void on_listView_clicked(QModelIndex index);
    void on_listView_customContextMenuRequested(QPoint pos);
};

#endif // PODCATCHERWIN_H