00001 /*************************************************************************** 00002 * Copyright (C) 2007 by valter * 00003 * staroverovv@yandx.ru * 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 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 00021 00022 #ifndef _WGRWIDGET_H_ 00023 #define _WGRWIDGET_H_ 00024 00025 #include "wgrwidgetbase.h" 00026 00027 class wgrWidget : public wgrWidgetBase 00028 { 00029 Q_OBJECT 00030 00031 public: 00032 wgrWidget(QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 00033 ~wgrWidget(); 00034 /*$PUBLIC_FUNCTIONS$*/ 00035 00036 public slots: 00037 /*$PUBLIC_SLOTS$*/ 00038 virtual void button_clicked(); 00039 virtual void onSensorsTree(); 00040 virtual void onSensorsList(); 00041 virtual void FUpdateData(); 00042 virtual void onExit(); 00043 virtual void onEventsList(); 00044 virtual void onCommandsList(); 00045 00046 protected: 00047 /*$PROTECTED_FUNCTIONS$*/ 00048 00049 protected slots: 00050 /*$PROTECTED_SLOTS$*/ 00051 00052 }; 00053 00054 #endif 00055