score
Home
Classes
Namespaces
Files
Loading...
Searching...
No Matches
DocumentDelegateView.hpp
1
#pragma once
2
#include <QObject>
3
4
#include <score_lib_base_export.h>
5
class
QWidget;
6
7
namespace
score
8
{
9
class
BackgroundRenderer;
10
class
SCORE_LIB_BASE_EXPORT
DocumentDelegateView
:
public
QObject
11
{
12
public
:
13
using
QObject::QObject;
14
virtual
~DocumentDelegateView
();
15
16
virtual
QWidget* getWidget() = 0;
17
18
virtual
void
ready() = 0;
19
22
virtual
BackgroundRenderer
* activeBackgroundRenderer()
const
noexcept
;
23
};
24
}
score::BackgroundRenderer
Definition
BackgroundRenderer.hpp:13
score::DocumentDelegateView
Definition
DocumentDelegateView.hpp:11
score
Base toolkit upon which the software is built.
Definition
Application.cpp:117