1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : PyConsole_Console.h
24 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
26 #ifndef SALOMEPYCONSOLE_CONSOLE_H
27 #define SALOMEPYCONSOLE_CONSOLE_H
29 #include "SalomePyConsole.h"
30 #include <PyConsole_ConsoleBase.h>
31 #include <SUIT_PopupClient.h>
35 class SalomePyConsole_Interp;
36 class SalomePyConsole_Editor;
38 class SALOMEPYCONSOLE_EXPORT SalomePyConsole_Console : public PyConsole_ConsoleBase, public SUIT_PopupClient
43 struct SalomePyConsole_Interp_Creator : public PyConsole_Interp_CreatorBase
45 virtual PyConsole_EditorBase *createEditor( PyConsole_Interp *interp, PyConsole_ConsoleBase *console ) const;
46 virtual PyConsole_Interp *createInterp( ) const;
50 SalomePyConsole_Console( QWidget* parent, PyConsole_Interp* interp = 0 );
51 virtual ~SalomePyConsole_Console();
52 //! \brief Get popup client symbolic name
53 virtual QString popupClientType() const { return QString( "PyConsole" ); }
54 virtual void contextMenuPopup( QMenu* );
55 virtual bool eventFilter( QObject*, QEvent* );
57 SalomePyConsole_Console( QWidget* parent, PyConsole_Interp*, SalomePyConsole_Editor*);
61 * Enhance console object providing auto-completion.
62 * Similar to PyConsole_Console except that an enhanced interpreter and enhanced editor
65 class PYCONSOLE_EXPORT SalomePyConsole_EnhConsole : public SalomePyConsole_Console
70 struct SalomePyConsole_Interp_EnhCreator : public PyConsole_Interp_CreatorBase
72 virtual PyConsole_EditorBase *createEditor( PyConsole_Interp *interp, PyConsole_ConsoleBase *console ) const;
73 virtual PyConsole_Interp *createInterp( ) const;
77 SalomePyConsole_EnhConsole( QWidget* parent, PyConsole_Interp* interp = 0 );
78 virtual ~SalomePyConsole_EnhConsole() {}
81 #endif // SALOMEPYCONSOLE_CONSOLE_H