00001 /**************************************************************************** 00002 * VCGLib o o * 00003 * Visual and Computer Graphics Library o o * 00004 * _ O _ * 00005 * Copyright(C) 2004 \/)\/ * 00006 * Visual Computing Lab /\/| * 00007 * ISTI - Italian National Research Council | * 00008 * \ * 00009 * All rights reserved. * 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 * This program is distributed in the hope that it will be useful, * 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00019 * GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * 00020 * for more details. * 00021 * * 00022 ****************************************************************************/ 00023 /**************************************************************************** 00024 History 00025 00026 $Log: not supported by cvs2svn $ 00027 Revision 1.2 2006/12/10 22:17:18 ganovelli 00028 cvs problem during frist committ. repeated 00029 00030 */ 00031 #ifndef WINDOW_H_POS_DEMO 00032 #define WINDOW_H_POS_DEMO 00033 00034 #include <QWidget> 00035 #include <QPushButton> 00036 00037 class QSlider; 00038 class GLWidget; 00039 00040 class Window : public QWidget 00041 { 00042 Q_OBJECT 00043 00044 public: 00045 Window(); 00046 00047 private: 00048 QPushButton *createButton(const char *changedSignal, const char *setterSlot); 00049 00050 GLWidget *glWidget; 00051 QPushButton * fvButton,*feButton,*ffButton,*neButton,*ldButton,*nbButton,*vfButton; 00052 }; 00053 00054 #endif