00001 /***************************************************************** 00002 * 00003 * This file is part of the FLIRTLib project 00004 * 00005 * FLIRTLib Copyright (c) 2010 Gian Diego Tipaldi and Kai O. Arras 00006 * 00007 * This software is licensed under the "Creative Commons 00008 * License (Attribution-NonCommercial-ShareAlike 3.0)" 00009 * and is copyrighted by Gian Diego Tipaldi and Kai O. Arras 00010 * 00011 * Further information on this license can be found at: 00012 * http://creativecommons.org/licenses/by-nc-sa/3.0/ 00013 * 00014 * FLIRTLib is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied 00016 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00017 * PURPOSE. 00018 * 00019 *****************************************************************/ 00020 00021 00022 00023 #ifndef TABBEDPARAMETERWIDGET_H_ 00024 #define TABBEDPARAMETERWIDGET_H_ 00025 00026 #include <QtGui/QTabWidget> 00027 #include <gui/ParameterWidget.h> 00028 00029 class TabbedParameterWidget: public ParameterWidget { 00030 public: 00031 TabbedParameterWidget(const QString &name, QTabWidget *parent = 0, int position = -1); 00032 00033 virtual void activate(); 00034 00035 virtual void deactivate(); 00036 00037 protected: 00038 QTabWidget* m_tabWidget; 00039 int m_tabPosition; 00040 00041 00042 }; 00043 00044 #endif