00001 /*************************************************************************** 00002 * * 00003 * publoverview.h * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * Read the file COPYING for details. * 00011 * * 00012 * copyright: (C) 2003 by Jan Mueller * 00013 * email: janmueller7@hotmail.com * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef PublOverview_h 00018 #define PublOverview_h 00019 #include "readonlyformbase.h" 00020 #include "overviewform.h" 00021 00022 class PublOverview: public ReadOnlyFormBase { 00023 Q_OBJECT 00024 00025 private: 00026 PublOverview(const PublOverview&); 00027 PublOverview& operator=(const PublOverview&); 00028 OverviewForm *publoverviewform; 00029 bool setData(); 00030 00031 public: 00032 PublOverview(LitUrl u, QObject *receiver, QString slot, QWidget *parent=0, const char *name=0); 00033 ~PublOverview(); 00034 }; 00035 00036 #endif