podcatcher_qt/src/podcatcherwin.cpp
author larspson
Wed, 13 Oct 2010 20:15:36 +0200
branchpodcatcher_qt_symbian4
changeset 235 f0b8582ef9ac
parent 216 1f5e22508b46
permissions -rw-r--r--
Started some basic UI stuff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
216
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
     1
#include "podcatcherwin.h"
235
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
     2
#include "ui/ui_podcatcherwin.h"
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
     3
#include <QModelIndex>
216
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
     4
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
     5
PodcatcherWin::PodcatcherWin(QWidget *parent) :
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
     6
    QMainWindow(parent),
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
     7
    ui(new Ui::PodcatcherWin)
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
     8
{
235
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
     9
    ui->setupUi(this); 
216
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
    10
}
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
    11
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
    12
PodcatcherWin::~PodcatcherWin()
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
    13
{
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
    14
    delete ui;
1f5e22508b46 Adding dummy qt app - base of podcatcher for QT.
mapo
parents:
diff changeset
    15
}
235
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    16
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    17
void PodcatcherWin::on_listView_customContextMenuRequested(QPoint pos)
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    18
{
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    19
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    20
}
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    21
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    22
void PodcatcherWin::on_listView_clicked(QModelIndex index)
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    23
{
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    24
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    25
}
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    26
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    27
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    28
void PodcatcherWin::on_Add_clicked()
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    29
{
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    30
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    31
}
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    32
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    33
void PodcatcherWin::on_Update_clicked()
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    34
{
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    35
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    36
}
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    37
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    38
void PodcatcherWin::on_Settings_clicked()
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    39
{
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    40
f0b8582ef9ac Started some basic UI stuff
larspson
parents: 216
diff changeset
    41
}