podcatcher_qt/inc/podcatcherwin.h
author larspson
Thu, 14 Oct 2010 09:49:09 +0200
branchpodcatcher_qt_symbian4
changeset 237 c85b889b0d4b
parent 235 f0b8582ef9ac
child 238 ee20bf01bc84
permissions -rw-r--r--
Remove Symbian platform definition.

#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