/[svn]/gigedit/trunk/src/gigedit/scripteditor.h
ViewVC logotype

Annotation of /gigedit/trunk/src/gigedit/scripteditor.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3364 - (hide annotations) (download) (as text)
Tue Nov 14 18:07:25 2017 UTC (6 years, 5 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 5203 byte(s)
* Added experimental support for upcoming GTK(MM)4
  (for now up to GTKMM 3.91.2 while still preserving backward compatibility
  down to GTKMM 2).
* Re-merged r2845 to compile now with and without Gtk "Stock ID" API
  (see also r3158).

1 schoenebeck 2604 /*
2 schoenebeck 3068 Copyright (c) 2014-2017 Christian Schoenebeck
3 schoenebeck 2604
4     This file is part of "gigedit" and released under the terms of the
5     GNU General Public License version 2.
6     */
7    
8     #ifndef GIGEDIT_SCRIPTEDITOR_H
9     #define GIGEDIT_SCRIPTEDITOR_H
10    
11 schoenebeck 3068 #ifdef LIBGIG_HEADER_FILE
12     # include LIBGIG_HEADER_FILE(gig.h)
13     #else
14     # include <gig.h>
15     #endif
16    
17 schoenebeck 3364 #ifdef GTKMM_HEADER_FILE
18     # include GTKMM_HEADER_FILE(gtkmm.h)
19     #else
20     # include <gtkmm.h>
21     #endif
22 schoenebeck 3068 #if HAVE_CONFIG_H
23     # include <config.h>
24     #endif
25 schoenebeck 2604 #include "compat.h"
26 schoenebeck 3364
27     #if USE_GTKMM_BUILDER
28     # include <gtkmm/builder.h>
29     #else
30     # include <gtkmm/uimanager.h> // deprecated in gtkmm >= 3.21.4
31     #endif
32    
33     #if USE_GLIB_ACTION
34     # include <giomm/simpleactiongroup.h>
35     #else
36     # include <gtkmm/actiongroup.h>
37     #endif
38    
39 schoenebeck 2893 #include "ManagedWindow.h"
40 schoenebeck 2604
41 schoenebeck 2886 // Should we use a very simple (and buggy) local NKSP syntax parser, or should
42 schoenebeck 2899 // we rather use the full featured NKSP syntax highlighting backend from
43 schoenebeck 2886 // liblinuxsampler for syntax highlighting of this text editor?
44     #if HAVE_LINUXSAMPLER
45     # define USE_LS_SCRIPTVM 1
46     #endif
47    
48     #if USE_LS_SCRIPTVM
49 schoenebeck 3068 # ifdef LIBLINUXSAMPLER_HEADER_FILE
50     # include LIBLINUXSAMPLER_HEADER_FILE(scriptvm/ScriptVM.h)
51     # include LIBLINUXSAMPLER_HEADER_FILE(scriptvm/ScriptVMFactory.h)
52     # else
53     # include <linuxsampler/scriptvm/ScriptVM.h>
54     # include <linuxsampler/scriptvm/ScriptVMFactory.h>
55     # endif
56 schoenebeck 2886 #endif
57    
58 schoenebeck 2893 class ScriptEditor : public ManagedWindow {
59 schoenebeck 2604 public:
60     ScriptEditor();
61     ~ScriptEditor();
62     void setScript(gig::Script* script);
63 schoenebeck 2893
64 schoenebeck 2903 sigc::signal<void, gig::Script*> signal_script_to_be_changed;
65     sigc::signal<void, gig::Script*> signal_script_changed;
66    
67 schoenebeck 2893 // implementation for abstract methods of interface class "ManagedWindow"
68     virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->scriptEditorWindowX; }
69     virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->scriptEditorWindowY; }
70     virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->scriptEditorWindowW; }
71     virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->scriptEditorWindowH; }
72    
73 schoenebeck 2604 protected:
74 schoenebeck 3364 VBox m_vbox;
75     HBox m_footerHBox;
76     HBox m_statusHBox;
77     HButtonBox m_buttonBox;
78 schoenebeck 2604 Gtk::ScrolledWindow m_scrolledWindow;
79 schoenebeck 3364 HBox m_textViewHBox;
80 schoenebeck 3310 Glib::RefPtr<Gtk::TextBuffer> m_lineNrBuffer;
81 schoenebeck 2604 Glib::RefPtr<Gtk::TextBuffer> m_textBuffer;
82     Glib::RefPtr<Gtk::TextBuffer::TagTable> m_tagTable;
83     Glib::RefPtr<Gtk::TextBuffer::Tag> m_keywordTag;
84     Glib::RefPtr<Gtk::TextBuffer::Tag> m_eventTag;
85 schoenebeck 2886 Glib::RefPtr<Gtk::TextBuffer::Tag> m_variableTag;
86     Glib::RefPtr<Gtk::TextBuffer::Tag> m_functionTag;
87     Glib::RefPtr<Gtk::TextBuffer::Tag> m_numberTag;
88     Glib::RefPtr<Gtk::TextBuffer::Tag> m_stringTag;
89     Glib::RefPtr<Gtk::TextBuffer::Tag> m_commentTag;
90     Glib::RefPtr<Gtk::TextBuffer::Tag> m_preprocTag;
91 schoenebeck 2890 Glib::RefPtr<Gtk::TextBuffer::Tag> m_errorTag;
92     Glib::RefPtr<Gtk::TextBuffer::Tag> m_warningTag;
93 schoenebeck 3286 Glib::RefPtr<Gtk::TextBuffer::Tag> m_preprocCommentTag;
94 schoenebeck 3310 Glib::RefPtr<Gtk::TextBuffer::Tag> m_lineNrTag;
95     Gtk::TextView m_lineNrView;
96     Gtk::TextView m_lineNrTextViewSpacer;
97 schoenebeck 2604 Gtk::TextView m_textView;
98 schoenebeck 2899 Gtk::Image m_statusImage;
99     Gtk::Label m_statusLabel;
100 schoenebeck 2604 Gtk::Button m_applyButton;
101     Gtk::Button m_cancelButton;
102    
103 schoenebeck 3364 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION >= 20)
104     Glib::RefPtr<Gtk::CssProvider> m_css;
105     #endif
106    
107 schoenebeck 2899 Glib::RefPtr<Gdk::Pixbuf> m_warningIcon;
108     Glib::RefPtr<Gdk::Pixbuf> m_errorIcon;
109     Glib::RefPtr<Gdk::Pixbuf> m_successIcon;
110    
111 schoenebeck 3364 #if USE_GLIB_ACTION
112     Glib::RefPtr<Gio::SimpleActionGroup> m_actionGroup;
113     #else
114 schoenebeck 2901 Glib::RefPtr<Gtk::ActionGroup> m_actionGroup;
115 schoenebeck 3364 #endif
116     #if USE_GTKMM_BUILDER
117     Glib::RefPtr<Gtk::Builder> m_uiManager;
118     #else
119 schoenebeck 2901 Glib::RefPtr<Gtk::UIManager> m_uiManager;
120 schoenebeck 3364 #endif
121 schoenebeck 2901
122 schoenebeck 2604 gig::Script* m_script;
123 schoenebeck 2886 #if USE_LS_SCRIPTVM
124     LinuxSampler::ScriptVM* m_vm;
125 schoenebeck 2896 std::vector<LinuxSampler::ParserIssue> m_issues;
126 schoenebeck 2899 std::vector<LinuxSampler::ParserIssue> m_errors;
127     std::vector<LinuxSampler::ParserIssue> m_warnings;
128 schoenebeck 3286 std::vector<LinuxSampler::CodeBlock> m_preprocComments;
129 schoenebeck 2886 #endif
130    
131 schoenebeck 2898 bool isModified() const;
132 schoenebeck 2604 void onButtonCancel();
133     void onButtonApply();
134     void onWindowHide();
135     void onTextInserted(const Gtk::TextBuffer::iterator& it, const Glib::ustring& txt, int length);
136     void onTextErased(const Gtk::TextBuffer::iterator& itStart, const Gtk::TextBuffer::iterator& itEnd);
137     void onModifiedChanged();
138 schoenebeck 2886 #if USE_LS_SCRIPTVM
139     void updateSyntaxHighlightingByVM();
140 schoenebeck 2890 void updateParserIssuesByVM();
141     LinuxSampler::ScriptVM* GetScriptVM();
142 schoenebeck 2897 void updateIssueTooltip(GdkEventMotion* e);
143 schoenebeck 2899 void updateStatusBar();
144 schoenebeck 2886 #endif
145 schoenebeck 2897 bool on_motion_notify_event(GdkEventMotion* e);
146 schoenebeck 3364 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
147     bool onWindowDelete(Gdk::Event& e);
148     #endif
149     bool onWindowDeleteP(GdkEventAny* e);
150 schoenebeck 2956 void onMenuChangeFontSize();
151     int currentFontSize() const;
152     void setFontSize(int size, bool save);
153 schoenebeck 3310 void updateLineNumbers();
154 schoenebeck 2604 };
155    
156     #endif // GIGEDIT_SCRIPTEDITOR_H

  ViewVC Help
Powered by ViewVC