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.
38 lines
783 B
38 lines
783 B
15 years ago
|
#ifndef KLISTBOXDIALOG_H
|
||
|
#define KLISTBOXDIALOG_H
|
||
|
|
||
|
#include <kdialogbase.h>
|
||
|
|
||
15 years ago
|
class TQLabel;
|
||
|
class TQListBox;
|
||
15 years ago
|
|
||
12 years ago
|
class TDEListBoxDialog : public KDialogBase
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
|
||
|
public:
|
||
12 years ago
|
TDEListBoxDialog( TQString& _selectedString,
|
||
15 years ago
|
const TQString& caption,
|
||
|
const TQString& labelText,
|
||
13 years ago
|
TQWidget* parent = 0,
|
||
15 years ago
|
const char* name = 0,
|
||
|
bool modal = true );
|
||
12 years ago
|
~TDEListBoxDialog();
|
||
15 years ago
|
|
||
15 years ago
|
void setLabelAbove( const TQString& label );
|
||
|
void setCommentBelow(const TQString& comment);
|
||
15 years ago
|
|
||
15 years ago
|
TQListBox* entriesLB;
|
||
15 years ago
|
|
||
|
private slots:
|
||
15 years ago
|
void highlighted( const TQString& );
|
||
15 years ago
|
|
||
|
protected:
|
||
15 years ago
|
TQString& selectedString;
|
||
|
TQLabel* labelAboveLA;
|
||
|
TQLabel* commentBelowLA;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|