![]() |
Tulip
4.6.0
Better Visualization Through Research
|
00001 /* 00002 * 00003 * This file is part of Tulip (www.tulip-software.org) 00004 * 00005 * Authors: David Auber and the Tulip development Team 00006 * from LaBRI, University of Bordeaux 00007 * 00008 * Tulip is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU Lesser General Public License 00010 * as published by the Free Software Foundation, either version 3 00011 * of the License, or (at your option) any later version. 00012 * 00013 * Tulip is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00016 * See the GNU General Public License for more details. 00017 * 00018 */ 00019 ///@cond DOXYGEN_HIDDEN 00020 00021 00022 #ifndef SCENECONFIGWIDGET_H 00023 #define SCENECONFIGWIDGET_H 00024 00025 #include <QWidget> 00026 00027 #include <tulip/tulipconf.h> 00028 00029 namespace Ui { 00030 class SceneConfigWidget; 00031 } 00032 00033 namespace tlp { 00034 class GlMainWidget; 00035 00036 class TLP_QT_SCOPE SceneConfigWidget : public QWidget { 00037 Q_OBJECT 00038 00039 Ui::SceneConfigWidget* _ui; 00040 tlp::GlMainWidget* _glMainWidget; 00041 00042 bool _resetting; 00043 00044 public: 00045 explicit SceneConfigWidget(QWidget *parent = NULL); 00046 ~SceneConfigWidget(); 00047 00048 signals: 00049 void settingsApplied(); 00050 00051 public slots: 00052 void setGlMainWidget(tlp::GlMainWidget*); 00053 void resetChanges(); 00054 void applySettings(); 00055 void dynamicFontRBToggled(bool); 00056 void updateSliderRangeLabels(); 00057 00058 00059 protected: 00060 bool eventFilter(QObject *, QEvent *); 00061 00062 }; 00063 } 00064 00065 #endif // SCENECONFIGWIDGET_H 00066 ///@endcond