diff -r 05075131dd6a -r f0b8582ef9ac podcatcher_qt/src/podcatcherwin.cpp --- a/podcatcher_qt/src/podcatcherwin.cpp Wed Oct 13 20:14:00 2010 +0200 +++ b/podcatcher_qt/src/podcatcherwin.cpp Wed Oct 13 20:15:36 2010 +0200 @@ -1,14 +1,41 @@ #include "podcatcherwin.h" -#include "ui_podcatcherwin.h" +#include "ui/ui_podcatcherwin.h" +#include PodcatcherWin::PodcatcherWin(QWidget *parent) : QMainWindow(parent), ui(new Ui::PodcatcherWin) { - ui->setupUi(this); + 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() +{ + +}