You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
476 B
35 lines
476 B
|
|
#ifndef _DCCTOPLEVEL_H_
|
|
#define _DCCTOPLEVEL_H_
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
class dccManager;
|
|
|
|
|
|
class dccTopLevel : public TDEMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
dccTopLevel(TQWidget *parent = 0, const char *name = 0);
|
|
virtual ~dccTopLevel();
|
|
|
|
dccManager *mgr() { return m_mgr; }
|
|
|
|
signals:
|
|
void changeChannel(const TQString&,const TQString&);
|
|
void changed(bool, TQString);
|
|
|
|
|
|
public slots:
|
|
void close(void);
|
|
|
|
private:
|
|
dccManager *m_mgr;
|
|
};
|
|
|
|
#endif
|
|
|