Loading [MathJax]/jax/output/HTML-CSS/config.js
Radium Engine
1.5.20
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
z
Functions
a
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
b
d
f
i
m
s
v
w
Typedefs
a
b
c
f
g
i
k
o
r
s
t
v
Enumerations
Enumerator
Related Symbols
Files
File List
File Members
All
Macros
▼
Radium Engine
►
Radium Basics
►
Radium Concepts
►
Developer manual
►
Licenses
Todo List
Deprecated List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
src
►
Core
►
Engine
►
Gui
►
Headless
►
IO
▼
PluginBase
PluginContext.hpp
RadiumPluginInterface.cpp
RadiumPluginInterface.hpp
RaPluginBase.hpp
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
PluginContext.hpp
1
#pragma once
2
3
#include <PluginBase/RaPluginBase.hpp>
4
#include <QObject>
5
6
namespace
Ra
{
7
namespace
Engine {
8
class
RadiumEngine;
9
}
10
namespace
Gui {
11
class
SelectionManager;
12
class
Timeline;
13
}
// namespace Gui
14
namespace
Gui {
15
class
PickingManager;
16
class
Viewer;
17
}
// namespace Gui
18
19
namespace
Plugins {
20
22
class
RA_PLUGINBASE_API
Context
:
public
QObject
23
{
24
Q_OBJECT
25
26
public
:
27
explicit
Context
( QObject* parent =
nullptr
) : QObject( parent ) {}
28
29
Engine::RadiumEngine
* m_engine {
nullptr
};
30
Gui::SelectionManager* m_selectionManager {
nullptr
};
31
Gui::Timeline
* m_timeline {
nullptr
};
32
Gui::PickingManager* m_pickingManager {
nullptr
};
33
Gui::Viewer
* m_viewer {
nullptr
};
34
std::string
m_exportDir {
"."
};
35
36
signals:
58
void
setContinuousUpdate
(
bool
b );
59
63
void
askForUpdate
();
64
};
22
class
RA_PLUGINBASE_API
Context
:
public
QObject {
…
};
65
}
// namespace Plugins
66
}
// namespace Ra
std::string
Ra::Engine::RadiumEngine
Definition
RadiumEngine.hpp:55
Ra::Gui::Timeline
The Timeline class provides display and management of time, as well as keyframes.
Definition
Timeline.hpp:38
Ra::Gui::Viewer
Definition
Viewer.hpp:54
Ra::Plugins::Context
Data passed to the plugin constructor.
Definition
PluginContext.hpp:23
Ra::Plugins::Context::askForUpdate
void askForUpdate()
ask for single-shot rendering update
Ra::Plugins::Context::setContinuousUpdate
void setContinuousUpdate(bool b)
enable continuous rendering update
Ra
hepler function to manage enum as underlying types in VariableSet
Definition
Cage.cpp:3
src
PluginBase
PluginContext.hpp
Generated by
1.12.0