author | alwin <alwin> | 2005-03-21 21:38:11 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-21 21:38:11 (UTC) |
commit | c941b705b5eac2d2d2e9f4e3e3879227c344a42c (patch) (unidiff) | |
tree | 10971a1b423727fbca34183e0d4559295d1d58e9 | |
parent | 8f8689e0c0dea8e331128324164405f9dc2b0872 (diff) | |
download | opie-c941b705b5eac2d2d2e9f4e3e3879227c344a42c.zip opie-c941b705b5eac2d2d2e9f4e3e3879227c344a42c.tar.gz opie-c941b705b5eac2d2d2e9f4e3e3879227c344a42c.tar.bz2 |
variable declared as slot - fixed.
visibility changed from private to protected
-rw-r--r-- | noncore/graphics/opie-eye/impl/doc/doc_lister.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/graphics/opie-eye/impl/doc/doc_lister.h b/noncore/graphics/opie-eye/impl/doc/doc_lister.h index 3f8825f..d7c02eb 100644 --- a/noncore/graphics/opie-eye/impl/doc/doc_lister.h +++ b/noncore/graphics/opie-eye/impl/doc/doc_lister.h | |||
@@ -1,55 +1,55 @@ | |||
1 | /* | 1 | /* |
2 | * GPLv2 zecke@handhelds.org | 2 | * GPLv2 zecke@handhelds.org |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #ifndef DOC_LISTER_INTERFACE_LISTER_H | 5 | #ifndef DOC_LISTER_INTERFACE_LISTER_H |
6 | #define DOC_LISTER_INTERFACE_LISTER_H | 6 | #define DOC_LISTER_INTERFACE_LISTER_H |
7 | 7 | ||
8 | #include <iface/dirlister.h> | 8 | #include <iface/dirlister.h> |
9 | 9 | ||
10 | #include <qpe/applnk.h> | 10 | #include <qpe/applnk.h> |
11 | 11 | ||
12 | #include <qstring.h> | 12 | #include <qstring.h> |
13 | #include <qmap.h> | 13 | #include <qmap.h> |
14 | 14 | ||
15 | class Config; | 15 | class Config; |
16 | class AppLnk; | 16 | class AppLnk; |
17 | class QCopChannel; | 17 | class QCopChannel; |
18 | 18 | ||
19 | class Doc_DirLister : public PDirLister { | 19 | class Doc_DirLister : public PDirLister { |
20 | Q_OBJECT | 20 | Q_OBJECT |
21 | public: | 21 | public: |
22 | Doc_DirLister(); | 22 | Doc_DirLister(); |
23 | virtual ~Doc_DirLister(); | 23 | virtual ~Doc_DirLister(); |
24 | 24 | ||
25 | QString defaultPath()const; | 25 | QString defaultPath()const; |
26 | QString setStartPath( const QString& ); | 26 | QString setStartPath( const QString& ); |
27 | QString currentPath()const; | 27 | QString currentPath()const; |
28 | QStringList folders()const; | 28 | QStringList folders()const; |
29 | QStringList files()const; | 29 | QStringList files()const; |
30 | 30 | ||
31 | void deleteImage( const QString& ); | 31 | void deleteImage( const QString& ); |
32 | void thumbNail( const QString&, int, int ); | 32 | void thumbNail( const QString&, int, int ); |
33 | QImage image( const QString&, Factor, int ); | 33 | QImage image( const QString&, Factor, int ); |
34 | void imageInfo( const QString& ); | 34 | void imageInfo( const QString& ); |
35 | void fullImageInfo( const QString& ); | 35 | void fullImageInfo( const QString& ); |
36 | virtual QString nameToFname(const QString&name)const; | 36 | virtual QString nameToFname(const QString&name)const; |
37 | QString dirUp( const QString& )const; | 37 | QString dirUp( const QString& )const; |
38 | QWidget* widget(QWidget*parent); | 38 | QWidget* widget(QWidget*parent); |
39 | 39 | ||
40 | private: | 40 | protected: |
41 | int m_catFilter; | 41 | int m_catFilter; |
42 | bool matchCat(const AppLnk* app)const; | 42 | bool matchCat(const AppLnk* app)const; |
43 | bool m_docreads; | 43 | bool m_docreads; |
44 | DocLnkSet m_ds; | 44 | DocLnkSet m_ds; |
45 | QCopChannel *syschannel; | ||
45 | 46 | ||
46 | protected slots: | 47 | protected slots: |
47 | virtual void slotFullInfo(const QString&, const QString&); | 48 | virtual void slotFullInfo(const QString&, const QString&); |
48 | virtual void slotThumbInfo(const QString&, const QString&); | 49 | virtual void slotThumbInfo(const QString&, const QString&); |
49 | virtual void slotThumbNail(const QString&, const QPixmap&); | 50 | virtual void slotThumbNail(const QString&, const QPixmap&); |
50 | virtual void showCategory(int); | 51 | virtual void showCategory(int); |
51 | void systemMsg(const QCString &, const QByteArray &); | 52 | void systemMsg(const QCString &, const QByteArray &); |
52 | QCopChannel *syschannel; | ||
53 | }; | 53 | }; |
54 | 54 | ||
55 | #endif | 55 | #endif |