Salome HOME
f5198af1b50e8cb138b21254bc0cfd0205637987
[modules/gui.git] / tools / PyConsole / src / PyConsole_Console.h
1 // Copyright (C) 2007-2022  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, 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 // File   : PyConsole_Console.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24
25 #ifndef PYCONSOLE_CONSOLE_H
26 #define PYCONSOLE_CONSOLE_H
27
28 #include "PyConsole.h"
29
30 #include <QWidget>
31 #include <QMap>
32
33 class QMenu;
34
35 class PyConsole_Interp;
36 class PyConsole_Editor;
37
38 class PYCONSOLE_EXPORT PyConsole_Console : public QWidget
39 {
40   Q_OBJECT
41
42 public:
43   //! Context popup menu actions flags
44   enum
45   {
46     CopyId         = 0x01,  //!< "Copy" menu action
47     PasteId        = 0x02,  //!< "Paste" menu action
48     ClearId        = 0x04,  //!< "Clear" menu action
49     SelectAllId    = 0x08,  //!< "Select All" menu action
50     DumpCommandsId = 0x10,  //!< "DumpCommands" menu action
51     StartLogId     = 0x20,  //!< "Start log" menu action
52     StopLogId      = 0x40,  //!< "Stop log" menu action
53     All            = 0xFF,  //!< all menu actions 
54   };
55
56 public:
57   PyConsole_Console( QWidget* = 0 );
58   PyConsole_Console( QWidget*, PyConsole_Editor* );
59   virtual ~PyConsole_Console();
60
61   PyConsole_Interp*   getInterp() const;
62
63   QFont               font() const;
64   virtual void        setFont( const QFont& );
65
66   bool                isSync() const;
67   void                setIsSync( const bool );
68
69   bool                isSuppressOutput() const;
70   void                setIsSuppressOutput( const bool );
71
72   bool                isShowBanner() const;
73   void                setIsShowBanner( const bool );
74
75   void                setAutoCompletion( bool );
76   bool                autoCompletion() const;
77
78   void                exec( const QString& );
79   void                execAndWait( const QString& );
80
81   void                setMenuActions( const int );
82   int                 menuActions() const;
83
84   void                startLog( const QString& );
85   void                stopLog();
86
87 protected:
88   void                createActions();
89   void                updateActions();
90
91   virtual void        contextMenuEvent( QContextMenuEvent* );
92
93 private:
94   void                init( PyConsole_Editor* );
95
96 protected:
97   PyConsole_Editor*   myEditor;    //!< python console editor widget
98   QMap<int, QAction*> myActions;   //!< menu actions list
99 };
100
101 #endif // PYCONSOLE_CONSOLE_H