|
|
/*************************************************************************** extlistview.h - description ------------------- begin : Thu Jun 1 2000 copyright : (C) 2000 by jade email : donoghue@chariot.net.au ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef EXTLISTVIEW_H #define EXTLISTVIEW_H #include <qwidget.h> #include <qlistview.h> /**list view with functionality to save its column widths and reload them as needed *@author jade */ class ExtListView : public QListView { Q_OBJECT public: ExtListView(QWidget *parent=0, const char *name=0); virtual ~ExtListView(); bool saveWidths(); bool loadWidths(); }; #endif
Generated by: jade@lost on Sat Jun 10 14:35:26 2000, using kdoc 2.0a22. |