diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-08-05 17:44:25 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-08-05 17:44:25 +0000 |
| commit | fa4764c9e4d86fdfa976bb9fa9f6976e82c496d5 (patch) | |
| tree | 3137a434b832ddf321723297f5b4b1ed75bc4fc0 /pokemodr/ScriptWidget.h | |
| parent | cf49a16b29ac412cfea125f7216a0e51e79aa4de (diff) | |
| download | sigen-fa4764c9e4d86fdfa976bb9fa9f6976e82c496d5.tar.gz sigen-fa4764c9e4d86fdfa976bb9fa9f6976e82c496d5.tar.xz sigen-fa4764c9e4d86fdfa976bb9fa9f6976e82c496d5.zip | |
[FIX] ScriptWidget editing now works a lot better
[FIX] Kate settings saved
[FIX] Assertions within TeamMember removed
[FIX] Arenas inherit from Config now
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@238 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/ScriptWidget.h')
| -rw-r--r-- | pokemodr/ScriptWidget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pokemodr/ScriptWidget.h b/pokemodr/ScriptWidget.h index fffa4a03..eb07bfbc 100644 --- a/pokemodr/ScriptWidget.h +++ b/pokemodr/ScriptWidget.h @@ -30,6 +30,7 @@ // Forward declarations namespace KTextEditor { +class Editor; class Document; class View; } @@ -54,8 +55,12 @@ class ScriptWidget : public QWidget, private Ui::formScript void on_varInterpreter_activated(); void scriptChanged(); + + void focused(KTextEditor::View* view); + void unfocused(KTextEditor::View* view); private: Pokemod::Script m_value; + KTextEditor::Editor* m_editor; KTextEditor::Document* m_document; KTextEditor::View* m_view; }; |
