您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
tdepim/kmail/tdelistboxdialog.h

38 行
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