summaryrefslogtreecommitdiffstats
path: root/kmail/tdelistboxdialog.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 17:25:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 17:25:43 -0600
commit6cc5f72b33f1d281de3e1bf809b1b5e77d5c96cf (patch)
treeb90f9ba234d5a04288c37fe3ef65fd9e936c363f /kmail/tdelistboxdialog.h
parentfd5d099065a748cac49e20a13481f85666c53c71 (diff)
downloadtdepim-6cc5f72b33f1d281de3e1bf809b1b5e77d5c96cf.tar.gz
tdepim-6cc5f72b33f1d281de3e1bf809b1b5e77d5c96cf.zip
Fix FTBFS
Diffstat (limited to 'kmail/tdelistboxdialog.h')
-rw-r--r--kmail/tdelistboxdialog.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/kmail/tdelistboxdialog.h b/kmail/tdelistboxdialog.h
new file mode 100644
index 00000000..30a67286
--- /dev/null
+++ b/kmail/tdelistboxdialog.h
@@ -0,0 +1,37 @@
+#ifndef KLISTBOXDIALOG_H
+#define KLISTBOXDIALOG_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