simplescripteditor.h
changeset 434 c585be63ec69
parent 432 f867269ab8a1
child 438 eae9abe70d7c
     1.1 --- a/simplescripteditor.h	Mon Mar 05 23:22:51 2007 +0000
     1.2 +++ b/simplescripteditor.h	Tue Mar 06 19:37:39 2007 +0000
     1.3 @@ -3,6 +3,8 @@
     1.4  
     1.5  #include "ui_simplescripteditor.h"
     1.6  
     1.7 +#include "highlighter.h"
     1.8 +
     1.9  class SimpleScriptEditor:public QDialog
    1.10  {
    1.11      Q_OBJECT
    1.12 @@ -10,6 +12,7 @@
    1.13  public:
    1.14      SimpleScriptEditor (QWidget* parent = 0);
    1.15  	void saveScript ();
    1.16 +	void setScript(const QString &);
    1.17  
    1.18  public slots:
    1.19  	void saveScriptClicked();
    1.20 @@ -22,6 +25,7 @@
    1.21  private:
    1.22      Ui::SimpleScriptEditor ui;
    1.23  	QString filename;
    1.24 +	Highlighter *highlighter;
    1.25  };
    1.26  
    1.27