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.
37 lines
586 B
37 lines
586 B
#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
|