00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 ***************************************************************************/ 00009 00010 // (c) 2002 Patrick S. Vogtp <tille@handhelds.org> 00011 00012 #ifndef LISTVIEWCONFDIR_H 00013 #define LISTVIEWCONFDIR_H 00014 00015 #include <qwidget.h> 00016 #include <qlistview.h> 00017 #include <qdir.h> 00018 00019 class QDir; 00020 00021 class OListView : public QListView { 00022 Q_OBJECT 00023 public: 00024 OListView(QWidget *parent=0, const char *name=0); 00025 ~OListView(); 00026 protected slots: 00027 void expand(QListViewItem*); 00028 }; 00029 00030 #endif
1.4.2