score-plugin-remotecontrol/RemoteControl/ApplicationPlugin.hpp
1 #pragma once
2 #include <score/plugins/application/GUIApplicationPlugin.hpp>
3 
4 namespace RemoteControl
5 {
7 {
8 public:
10 
11 protected:
12  void on_createdDocument(score::Document& doc) override;
13 };
14 }
Definition: score-plugin-remotecontrol/RemoteControl/ApplicationPlugin.hpp:7
void on_createdDocument(score::Document &doc) override
on_createdDocument Will be called after either on_newDocument or on_loadedDocument was called on ever...
Definition: score-plugin-remotecontrol/RemoteControl/ApplicationPlugin.cpp:15
The Document class is the central part of the software.
Definition: Document.hpp:51
Used to extend the software with application-wide data.
Definition: GUIApplicationPlugin.hpp:89
Specializes ApplicationContext with the QMainWindow.
Definition: GUIApplicationContext.hpp:15