summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/doc/doc_dirview.h
blob: 55ba6f217cd2e3d08b9bfba6e9c66393ff854f5b (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
/*
 * GPLv2 only zecke@handhelds.org
 */

#ifndef DOC_DIR_VIEW_H
#define DOC_DIR_VIEW_H

#include <iface/dirview.h>

class Doc_DirLister;

struct Doc_DirView : public PDirView {
    Doc_DirView(  const Config& );
    ~Doc_DirView();

    PInterfaceInfo* interfaceInfo()const;
    PDirLister* dirLister()const;
    QWidget* widget(QWidget*parent);
private:
    bool m_cfg : 1;
    mutable Doc_DirLister* m_lister;
    mutable PInterfaceInfo *m_info;
};


#endif