summaryrefslogtreecommitdiffstats
path: root/kmail/tdelistboxdialog.h
blob: a9e949accdd3663a19b371c34122006bd25d5b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#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