66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "StdTable.h"
|
|
|
|
class QMessageBox;
|
|
class MRUList;
|
|
class LineEditDialog;
|
|
|
|
class ScriptView : public StdTable
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ScriptView(StdTable* parent = 0);
|
|
|
|
// Configuration
|
|
void updateColors();
|
|
|
|
// Reimplemented Functions
|
|
QString paintContent(QPainter* painter, dsint rowBase, int rowOffset, int col, int x, int y, int w, int h);
|
|
void mouseDoubleClickEvent(QMouseEvent* event);
|
|
void keyPressEvent(QKeyEvent* event);
|
|
|
|
public slots:
|
|
void contextMenuSlot(const QPoint & pos);
|
|
void add(int count, const char** lines);
|
|
void clear();
|
|
void setIp(int line);
|
|
void error(int line, QString message);
|
|
void setTitle(QString title);
|
|
void setInfoLine(int line, QString info);
|
|
void openRecentFile(QString file);
|
|
void openFile();
|
|
void paste();
|
|
void reload();
|
|
void unload();
|
|
void edit();
|
|
void run();
|
|
void bpToggle();
|
|
void runCursor();
|
|
void step();
|
|
void abort();
|
|
void cmdExec();
|
|
void message(QString message);
|
|
void newIp();
|
|
void question(QString message);
|
|
void enableHighlighting(bool enable);
|
|
void messageResult(int result);
|
|
void shutdownSlot();
|
|
|
|
private:
|
|
//private functions
|
|
void setupContextMenu();
|
|
void setSelection(int line);
|
|
bool isScriptCommand(QString text, QString cmd, QString & mnemonic, QString & argument);
|
|
|
|
//private variables
|
|
int mIpLine;
|
|
bool mEnableSyntaxHighlighting;
|
|
QString filename;
|
|
|
|
MenuBuilder* mMenu;
|
|
QMessageBox* msg;
|
|
MRUList* mMRUList;
|
|
LineEditDialog* mCmdLineEdit;
|
|
};
|