summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/torrentcreatordlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ktorrent/torrentcreatordlg.h')
-rw-r--r--apps/ktorrent/torrentcreatordlg.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/apps/ktorrent/torrentcreatordlg.h b/apps/ktorrent/torrentcreatordlg.h
new file mode 100644
index 0000000..3dec45d
--- /dev/null
+++ b/apps/ktorrent/torrentcreatordlg.h
@@ -0,0 +1,39 @@
+//
+// C++ Interface: $MODULE$
+//
+// Description:
+//
+//
+// Author: Joris Guisson <joris.guisson@gmail.com>, (C) 2005
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef TORENTCREATORDLG_H
+#define TORENTCREATORDLG_H
+
+#include "torrentcreatordlgbase.h"
+
+class KTorrentCore;
+
+class TorrentCreatorDlg: public TorrentCreatorDlgBase
+{
+ Q_OBJECT
+public:
+ TorrentCreatorDlg(KTorrentCore* core,QWidget *parent = 0, const char *name = 0);
+ virtual ~TorrentCreatorDlg();
+
+public slots:
+ void onCreate();
+ virtual void btnAddNode_clicked();
+ virtual void btnRemoveNode_clicked();
+ virtual void m_nodeList_selectionChanged(QListViewItem*);
+ virtual void m_node_textChanged(const QString&);
+private:
+ void errorMsg(const QString & text);
+
+private:
+ KTorrentCore* core;
+};
+
+#endif