summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/fileBrowser.h
blob: a5274f83b19ae46e5c8aebb1c60d14cef2cab17d (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
Derived from the file browser published by ljp@llornkcor.com but extensively
modified to work in rotated views on the Zaurus
*/

/****************************************************************************
** Form interface generated from reading ui file 'fileBrowzer.ui'
**
** Created: Fri Dec 14 08:16:02 2001
**      by:  The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
blah,blah,blah
****************************************************************************/
#ifndef FILEBROWSER_H
#define FILEBROWSER_H

//#include <qvariant.h>
#include <qdialog.h>
#include <qfile.h> 
#include <qdir.h> 
#include <qstringlist.h> 
#include <qlabel.h>
#include <qstring.h>

class QVBoxLayout; 
class QHBoxLayout; 
class QGridLayout; 
class QtrListView;
class QListViewItem;
class QPushButton;
class QLineEdit;

class fileBrowser : public QDialog
{ 
    Q_OBJECT

public:
  void populateList();
    fileBrowser( bool allownew, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0, const QString iPath=0);
    ~fileBrowser();

    QPushButton* buttonOk;
    QPushButton* buttonShowHidden;
    QtrListView* ListView;
    QPushButton* buttonCancel;
    QLabel *dirLabel;
    QString selectedFileName, filterStr;
    QDir currentDir;
    QFile file;
    QString getCurrentFile();
    QLineEdit* m_filename;
    int filterspec;
//    QDir::FilterSpec filterspec;
 
//QListViewItem * item;
public slots:

private:
 QString filename; 
private slots: 
        void upDir();
        void listDoubleClicked(QListViewItem *);
        void listClicked(QListViewItem *);
	void OnRoot();
	void OnCancel();
	void setHidden(bool);
	void onReturn();

protected slots: 

protected:
        void OnOK();
 virtual void resizeEvent(QResizeEvent* e); 
};

#endif // FILEBROWSER_H