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

#include "podcatcherwin.h"
#include "ui/ui_podcatcherwin.h"
#include <QModelIndex>

PodcatcherWin::PodcatcherWin(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::PodcatcherWin)
{
    ui->setupUi(this); 
}

PodcatcherWin::~PodcatcherWin()
{
    delete ui;
}

void PodcatcherWin::on_listView_customContextMenuRequested(QPoint pos)
{

}

void PodcatcherWin::on_listView_clicked(QModelIndex index)
{

}


void PodcatcherWin::on_Add_clicked()
{

}

void PodcatcherWin::on_Update_clicked()
{

}

void PodcatcherWin::on_Settings_clicked()
{

}