blob: 37449e0e400cb2e1e11ec357e971a863bfdc6d34 (
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 &, QWidget * parent = 0, const char * name = 0);
~NewWindowDialog();
protected slots:
void slotOk();
void slotTextChanged( const QString &);
signals:
void openTopLevel(const KSircChannel &);
private:
KHistoryCombo * m_combo;
KLineEdit * m_le;
KSircChannel m_channelInfo;
};
#endif
|