summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-gutenbrowser/SearchResults.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-gutenbrowser/SearchResults.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-gutenbrowser/SearchResults.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/noncore/apps/opie-gutenbrowser/SearchResults.h b/noncore/apps/opie-gutenbrowser/SearchResults.h
new file mode 100644
index 0000000..bab8e48
--- a/dev/null
+++ b/noncore/apps/opie-gutenbrowser/SearchResults.h
@@ -0,0 +1,51 @@
1
2/****************************************************************************
3** Created: Sat Feb 24 23:32:10 2001
4 copyright : (C) 2000 -2004 by llornkcor
5 email : ljp@llornkcor.com
6
7****************************************************************************/
8#ifndef SEARCHRESULTSDLG_H
9#define SEARCHRESULTSDLG_H
10
11//#include "gutenbrowser.h"
12#include <qdialog.h>
13#include <qlabel.h>
14#include <qstringlist.h>
15#include <qlistbox.h>
16
17class QVBoxLayout;
18class QHBoxLayout;
19class QGridLayout;
20//class QListBox;
21class QListBoxItem;
22class QPushButton;
23
24class SearchResultsDlg : public QDialog
25{
26 Q_OBJECT
27
28public:
29 SearchResultsDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0, QStringList stringList=0);
30 ~SearchResultsDlg();
31
32 QLabel* statusLabel, *outPutLabel;
33 QPushButton* buttonOk;
34 QPushButton* buttonCancel;
35 QListBox* ListBox1;
36 QString selText;
37 QStringList resultsList;
38 int numListItems;
39
40protected:
41 QHBoxLayout* hbox;
42public slots:
43 void slotListClicked(QListBoxItem *);
44
45protected slots:
46 void dwnLd();
47 void downloadButtonSlot();
48
49};
50
51#endif // SEARCHRESULTSDLG_H