1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/****************************************************************************
Copyright (C) 2005 - 2011 Filipe AZEVEDO & The Monkey Studio Team
http://monkeystudio.org licensing under the GNU GPL.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
****************************************************************************/
#ifndef PCONSOLE_H
#define PCONSOLE_H
#include "MonkeyExport.h"
#include "pConsoleCommand.h"
#include <QPlainTextEdit>
#include <QMap>
class Q_MONKEY_EXPORT pConsole : public QPlainTextEdit
{
Q_OBJECT
public:
enum ColorType
{
ctCommand,
ctError,
ctOutput,
ctCompletion
};
pConsole( QWidget* parent = 0 );
virtual ~pConsole();
QString prompt() const;
void setPrompt( const QString& prompt );
bool isPromptVisible() const;
void setPromptVisible( bool visible );
QStringList history() const;
void setHistory( const QStringList& history );
QColor color( ColorType type ) const;
void setColor( ColorType type, const QColor& color );
void executeCommand( const QString& command, bool writeCommand = true, bool showPrompt = true );
bool saveScript( const QString& fileName );
bool loadScript( const QString& fileName );
void clear();
void reset();
pConsoleCommandList availableCommands() const;
void setAvailableCommands( const pConsoleCommandList& commands );
void addAvailableCommand( pConsoleCommand* command );
void removeAvailableCommand( pConsoleCommand* command );
protected:
QString mPrompt;
QPoint mPromptPosition;
QStringList mHistory;
int mHistoryIndex;
QString mTypedCommand;
QMap<ColorType, QColor> mColors;
QStringList mRecordedScript;
pConsoleCommandList mAvailableCommands;
virtual void keyPressEvent( QKeyEvent* event );
virtual void mousePressEvent( QMouseEvent* event );
virtual void mouseReleaseEvent( QMouseEvent* event );
virtual bool isCommandComplete( const QString& command );
virtual QString interpretCommand( const QString& command, int* result );
virtual QStringList autocompleteCommand( const QString& command );
bool replaceCommand( const QString& command );
QString currentCommand() const;
void focusCommand();
void useColor( ColorType type );
void displayPrompt();
bool showHistoryItem( int index );
signals:
void commandExecuted( const QString& command, int result );
};
#endif // PCONSOLE_H
|