added dialog to add urls

This commit is contained in:
Thomas Frauendorfer 2008-02-10 10:35:57 +01:00
parent 4c7317f71d
commit e1e809d8fb
9 changed files with 219 additions and 4 deletions

41
src/dialogs/urlopen.h Normal file
View file

@ -0,0 +1,41 @@
/**
* This file is a part of Promoe, an XMMS2 client
*
* Copyright (C) 2008 Thomas Frauendorfer
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __URLOPEN_H__
#define __URLOPEN_H__
#include "ui_urlopen.h"
#include <QDialog>
class XCollection;
class UrlOpen : public QDialog, private Ui::UrlOpen {
Q_OBJECT
public:
UrlOpen (QWidget *parent, XCollection *coll);
private slots:
// autoconnect slots
void on_openButton_clicked ();
private:
XCollection *m_collection;
};
#endif