summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/dir/dir_dirview.h
blob: 89cf6c911e2b14c2c81f53cd51491347c1dae175 (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 DIR_DIR_VIEW_H
#define DIR_DIR_VIEW_H

#include <iface/dirview.h>


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

    PInterfaceInfo* interfaceInfo()const;
    PDirLister* dirLister()const;
private:
    bool m_cfg : 1;
    bool m_recursive:1;
    int m_recursive_depth;
    mutable PDirLister* m_lister;
    mutable PInterfaceInfo *m_info;
};


#endif