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