Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/sidebar.h')
-rw-r--r--src/sidebar.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sidebar.h b/src/sidebar.h
index 0ed8d2a..644a733 100644
--- a/src/sidebar.h
+++ b/src/sidebar.h
@@ -15,6 +15,7 @@
class QLabel;
class QLineEdit;
class QTextEdit;
+class QComboBox;
namespace editor
{
@@ -65,6 +66,10 @@ private slots:
void updateEntityRadius(const QString &value);
+ void updateEntityTemplateType(int template_type);
+
+ void UpdateEntityTemplateLabel(const QString &template_label);
+
void updateEntityValues();
void updateEntitySubSections();
@@ -83,9 +88,14 @@ private:
QLineEdit *edit_entitylocation_x;
QLineEdit *edit_entitylocation_y;
QLineEdit *edit_entitylocation_z;
+
QLineEdit *edit_entityangles_yaw;
QLineEdit *edit_entityangles_pitch;
QLineEdit *edit_entityangles_roll;
+
+ QComboBox *combo_entitytemplate_type;
+ QLineEdit *edit_entitytemplate;
+
QLineEdit *edit_entityradius;
QTextEdit *text_entityvalues;
QTextEdit *text_subsections;