]> SALOME platform Git repositories - modules/gui.git/blob - src/Qtx/QtxListAction.h
Salome HOME
bcbf744944e81499bd44a20630dc150394f2b0b3
[modules/gui.git] / src / Qtx / QtxListAction.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:      QtxListAction.h
23 // Author:    Sergey TELKOV
24 //
25 #ifndef QTXLISTACTION_H
26 #define QTXLISTACTION_H
27
28 #include "Qtx.h"
29 #include "QtxAction.h"
30 #include <QStringList>
31
32 #ifdef WIN32
33 #pragma warning( disable:4251 )
34 #endif
35
36 class QTX_EXPORT QtxListAction : public QtxAction
37 {
38   Q_OBJECT
39
40   class ListFrame;
41   class ListWidget;
42   class ScrollEvent;
43
44 public:
45   //! Popup mode
46   enum { 
47     Item,         //!< action is added to popup menu as menu item
48     SubMenu       //!< action is added to popup menu as sub menu with list of items
49   } PopupMode;
50
51 public:
52   QtxListAction( QObject* = 0 );
53   QtxListAction( const QString&, int, QObject* );
54   QtxListAction( const QString&, const QString&, int, QObject* );
55   QtxListAction( const QIcon&, const QString&, int, QObject* );
56   QtxListAction( const QString&, const QIcon&, const QString&, int, QObject* );
57   virtual ~QtxListAction();
58
59   int              popupMode() const;
60   void             setPopupMode( const int );
61
62   QStringList      names() const;
63   void             addNames( const QStringList&, bool = true );
64   void             setComment( const QString&, const QString& = QString() );
65
66   int              linesNumber() const;
67   int              charsNumber() const;
68
69   void             setLinesNumber( const int );
70   void             setCharsNumber( const int );
71
72 signals:
73   void             triggered( int );
74
75 private slots:
76   void             onChanged();
77   void             onMultiple( const int );
78   void             onSingle( bool = false );
79   void             onTriggered( bool = false );
80
81 protected:
82   virtual QWidget* createWidget( QWidget* );
83   virtual void     deleteWidget( QWidget* );
84
85 private:
86   void             initialize();
87
88 private:
89   ListFrame*       myFrame;   //!< list of actions shown as submenu
90
91   friend class QtxListAction::ListFrame;
92 };
93
94 #ifdef WIN32
95 #pragma warning( default:4251 )
96 #endif
97
98 #endif