blob: ce8b956cf78b00ff5319b4fbcf20fba2d85951a1 (
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
|
#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
TQ_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
|