summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/torrentcreatordlg.h
blob: 76ce111d0f52f4d1ce979e124a586610c130d213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// 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
{
	TQ_OBJECT
  
public:
	TorrentCreatorDlg(KTorrentCore* core,TQWidget *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(TQListViewItem*);
    virtual void m_node_textChanged(const TQString&);
private:
	void errorMsg(const TQString & text);

private:
	KTorrentCore* core;
};

#endif