Salome HOME
0996263f5e09129470dd25d130d9f44861142b9a
[modules/gui.git] / src / Qtx / QtxListAction.h
1 // Copyright (C) 2007-2023  CEA, EDF, 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, or (at your option) any later version.
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
23 // File:      QtxListAction.h
24 // Author:    Sergey TELKOV
25 //
26 #ifndef QTXLISTACTION_H
27 #define QTXLISTACTION_H
28
29 #include "Qtx.h"
30 #include "QtxAction.h"
31 #include <QStringList>
32
33 #ifdef WIN32
34 #pragma warning( disable:4251 )
35 #endif
36
37 class QTX_EXPORT QtxListAction : public QtxAction
38 {
39   Q_OBJECT
40
41   class ListFrame;
42   class ListWidget;
43   class ScrollEvent;
44
45 public:
46   //! Popup mode
47   enum { 
48     Item,         //!< action is added to popup menu as menu item
49     SubMenu       //!< action is added to popup menu as sub menu with list of items
50   } PopupMode;
51
52 public:
53   QtxListAction( QObject* = 0 );
54   QtxListAction( const QString&, int, QObject* );
55   QtxListAction( const QString&, const QString&, int, QObject* );
56   QtxListAction( const QIcon&, const QString&, int, QObject* );
57   QtxListAction( const QString&, const QIcon&, const QString&, int, QObject* );
58   virtual ~QtxListAction();
59
60   int              popupMode() const;
61   void             setPopupMode( const int );
62
63   QStringList      names() const;
64   void             addNames( const QStringList&, bool = true );
65   void             setComment( const QString&, const QString& = QString() );
66
67   int              linesNumber() const;
68   int              charsNumber() const;
69
70   void             setLinesNumber( const int );
71   void             setCharsNumber( const int );
72
73 signals:
74   void             triggered( int );
75
76 private slots:
77   void             onChanged();
78   void             onMultiple( const int );
79   void             onSingle( bool = false );
80   void             onTriggered( bool = false );
81
82 protected:
83   virtual QWidget* createWidget( QWidget* );
84   virtual void     deleteWidget( QWidget* );
85
86 private:
87   void             initialize();
88
89 private:
90   ListFrame*       myFrame;   //!< list of actions shown as submenu
91
92   friend class QtxListAction::ListFrame;
93 };
94
95 #ifdef WIN32
96 #pragma warning( default:4251 )
97 #endif
98
99 #endif