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.
tdepim/kmail/tdelistboxdialog.h

38 lines
788 B

#ifndef TDELISTBOXDIALOG_H
#define TDELISTBOXDIALOG_H
#include <kdialogbase.h>
class TQLabel;
class TQListBox;
class TDEListBoxDialog : public KDialogBase
{
TQ_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