score
Home
Classes
Namespaces
Files
UndoPanelFactory.hpp
1
#pragma once
2
#include <score/plugins/panel/PanelDelegateFactory.hpp>
3
4
namespace
score
5
{
6
7
class
UndoPanelDelegateFactory
final :
public
PanelDelegateFactory
8
{
9
SCORE_CONCRETE(
"293c0f8b-fcb4-4554-8425-4bc03d803c75"
)
10
11
std::unique_ptr<PanelDelegate> make(
const
score::GUIApplicationContext
& ctx)
override
;
12
};
13
}
score::PanelDelegateFactory
Reimplement this interface to register new panels.
Definition:
PanelDelegateFactory.hpp:10
score::UndoPanelDelegateFactory
Definition:
UndoPanelFactory.hpp:8
score
Base toolkit upon which the software is built.
Definition:
Application.cpp:90
score::GUIApplicationContext
Specializes ApplicationContext with the QMainWindow.
Definition:
GUIApplicationContext.hpp:15