Version: 6.3.1

src/SVTK/SVTK_ComboAction.h

Go to the documentation of this file.
00001 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
00002 //
00003 // This library is free software; you can redistribute it and/or
00004 // modify it under the terms of the GNU Lesser General Public
00005 // License as published by the Free Software Foundation; either
00006 // version 2.1 of the License.
00007 //
00008 // This library is distributed in the hope that it will be useful,
00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011 // Lesser General Public License for more details.
00012 //
00013 // You should have received a copy of the GNU Lesser General Public
00014 // License along with this library; if not, write to the Free Software
00015 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
00016 //
00017 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
00018 //
00019 
00020 //  SALOME VTKViewer : build VTK viewer into Salome desktop
00021 //  File   : 
00022 //  Author : 
00023 //  Module : SALOME
00024 //  $Header:
00025 //
00026 #ifndef SVTK_COMBOACTION_H
00027 #define SVTK_COMBOACTION_H
00028 
00029 #include "SVTK.h"
00030 
00031 #include <QWidgetAction>
00032 
00033 class QComboBox;
00034 class SVTK_EXPORT SVTK_ComboAction : public QWidgetAction
00035 {
00036   Q_OBJECT
00037 
00038 public:
00039   SVTK_ComboAction( QObject* = 0 );
00040   SVTK_ComboAction( const QString&, QObject* = 0 );
00041   virtual ~SVTK_ComboAction();
00042 
00043   void insertItem( const QIcon&, const int = -1  );
00044   void clear();
00045 
00046   void setCurrentIndex( const int );
00047   int  currentIndex() const;
00048 
00049 signals:
00050   void triggered( int );
00051 
00052 protected:
00053   virtual QWidget* createWidget( QWidget* );
00054 
00055   virtual void update();
00056   virtual void updateCombo( QComboBox* );
00057 
00058 private:
00059   QList<QIcon> myIcons;
00060   int myCurId;
00061 };
00062 
00063 #endif // SVTK_COMBOACTION_H
Copyright © 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
Copyright © 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS