00001 /* 00002 * GPLv2 only zecke@handhelds.org 00003 */ 00004 00005 #ifndef DIR_DIR_VIEW_H 00006 #define DIR_DIR_VIEW_H 00007 00008 #include <iface/dirview.h> 00009 00010 00011 struct Dir_DirView : public PDirView { 00012 Dir_DirView( const Config& ); 00013 ~Dir_DirView(); 00014 00015 PInterfaceInfo* interfaceInfo()const; 00016 PDirLister* dirLister()const; 00017 virtual QWidget* widget(QWidget*); 00018 private: 00019 bool m_cfg : 1; 00020 bool m_recursive:1; 00021 int m_recursive_depth; 00022 mutable PDirLister* m_lister; 00023 mutable PInterfaceInfo *m_info; 00024 }; 00025 00026 00027 #endif
1.4.2