summaryrefslogtreecommitdiffstats
path: root/kmail/klistboxdialog.h
blob: 1ef8ce28d17214720b699814ca2a9c482edc4750 (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 KLISTBOXDIALOG_H
#define KLISTBOXDIALOG_H

#include <kdialogbase.h>

class TQLabel;
class TQListBox;

class KListBoxDialog : public KDialogBase
{
    Q_OBJECT
  

public:
    KListBoxDialog( TQString& _selectedString,
                    const TQString& caption,
                    const TQString& labelText,
                    TQWidget*    parent = 0,
                    const char* name   = 0,
                    bool        modal  = true );
    ~KListBoxDialog();

    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