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