Plasma Engine  2.0
Loading...
Searching...
No Matches
CompilerPreferencesWidget.moc.h
1#pragma once
2
3#include <EditorFramework/EditorFrameworkDLL.h>
4
5#include <GuiFoundation/PropertyGrid/PropertyBaseWidget.moc.h>
6
7class PL_EDITORFRAMEWORK_DLL plQtCompilerPreferencesWidget : public plQtPropertyTypeWidget
8{
9 Q_OBJECT;
10
11private Q_SLOTS:
12
13 void on_compiler_preset_changed(int index);
14
15public:
18
19 virtual void SetSelection(const plHybridArray<plPropertySelection, 8>& items) override;
20
21protected:
22 QComboBox* m_pCompilerPreset;
23};
A hybrid array uses in-place storage to handle the first few elements without any allocation....
Definition HybridArray.h:12
Definition CompilerPreferencesWidget.moc.h:8
Definition PropertyBaseWidget.moc.h:175
virtual void SetSelection(const plHybridArray< plPropertySelection, 8 > &items) override
This is called whenever the selection in the editor changes and thus the widget may need to display a...
Definition PropertyBaseWidget.cpp:912