TazGraph Project
v0.1.0
Loading...
Searching...
No Matches
TazGraph
Src
EditorIMGUI
Components
GraphRightPanel
CustomFunctions
CustomFunctions.h
1
#pragma once
2
3
#include "../../../UIElement.h"
4
5
struct
CustomFunctionsConfig
{
6
IScene
* scene;
7
};
8
9
10
class
CustomFunctions
:
public
UIElement
11
{
12
private
:
13
std::vector<SelectedInfo>* selectedEntities =
nullptr
;
14
CustomFunctionsConfig
config;
15
16
public
:
17
18
void
OnImGuiRender()
override
;
19
20
bool
isScriptResultsOpen =
false
;
21
int
activatedScriptShown = 0;
22
23
void
default_renderUI();
24
25
void
CalculateDegree();
26
void
CalculateSignals();
27
void
CalculateHeatMap();
28
void
DrawCandlestickChart();
29
30
void
setSelectedEntities(std::vector<SelectedInfo>& m_selectedEntities);
31
void
setConfig(
const
CustomFunctionsConfig
& cfg) { config = cfg; }
32
};
CustomFunctions
Definition
CustomFunctions.h:11
IScene
Definition
IScene.h:25
UIElement
Definition
UIElement.h:16
CustomFunctionsConfig
Definition
CustomFunctions.h:5
Generated by
1.9.8