No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
tdepim/kmail/tdelistboxdialog.h

38 líneas
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