00001 /*************************************************************************** 00002 * * 00003 * state.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 STATE_H 00018 #define STATE_H 00019 00020 #include "readonlyformbase.h" 00021 #include "stateform.h" 00022 00023 class State: public ReadOnlyFormBase { 00024 Q_OBJECT 00025 00026 private: 00027 State(const State&); 00028 State& operator=(const State&); 00029 StateForm *stateform; 00030 bool setData(); 00031 00032 public: 00033 State(LitUrl u, QObject *receiver, QString slot, QWidget *parent=0, const char *name=0); 00034 ~State(); 00035 }; 00036 #endif