podcatcher_qt/inc/podcatcherwin.h
author mapo
Mon, 18 Oct 2010 09:39:31 +0200
branchpodcatcher_qt_symbian4
changeset 251 f65d5001844b
parent 238 ee20bf01bc84
permissions -rw-r--r--
Fixed build issue in pro file on Symbian^3 SDK.

#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