blob: 3590c691dde9de235e3e44a20d668f5bb6e9f4be (
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
|
#ifndef NEW_WINDOW_DIALOG_H
#define NEW_WINDOW_DIALOG_H
#include <kdialogbase.h>
#include "ksircchannel.h"
class KHistoryCombo;
class KLineEdit;
class NewWindowDialog : public KDialogBase
{
Q_OBJECT
public:
NewWindowDialog(const KSircChannel &, TQWidget * parent = 0, const char * name = 0);
~NewWindowDialog();
protected slots:
void slotOk();
void slotTextChanged( const TQString &);
signals:
void openTopLevel(const KSircChannel &);
private:
KHistoryCombo * m_combo;
KLineEdit * m_le;
KSircChannel m_channelInfo;
};
#endif
|