podcatcher_qt/inc/podcatcherwin.h
author larspson
Thu, 14 Oct 2010 12:01:13 +0200
branchpodcatcher_qt_symbian4
changeset 238 ee20bf01bc84
parent 235 f0b8582ef9ac
permissions -rw-r--r--
Removed SYMBIAN statement from app pro file. Clear the UI and slots not used

#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_listView_clicked(QModelIndex index);
    void on_listView_customContextMenuRequested(QPoint pos);
};

#endif // PODCATCHERWIN_H