Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-02-25 16:56:25 +0000
committerStijn Buys <ingar@osirion.org>2012-02-25 16:56:25 +0000
commite10c0a7602c612993e6b99348bab507b7def0881 (patch)
tree2d863e946024fc3560221bedcddb149b253b4918 /src/sidebar.h
parent01f671303b75f3e4c683e3ff47b7ee120f0cda12 (diff)
Add entity manipulator widget, added support for editing entity angles.
Diffstat (limited to 'src/sidebar.h')
-rw-r--r--src/sidebar.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sidebar.h b/src/sidebar.h
index e731327..0ed8d2a 100644
--- a/src/sidebar.h
+++ b/src/sidebar.h
@@ -57,6 +57,12 @@ private slots:
void updateEntityLocationZ(const QString &value);
+ void updateEntityAnglesYaw(const QString &value);
+
+ void updateEntityAnglesPitch(const QString &value);
+
+ void updateEntityAnglesRoll(const QString &value);
+
void updateEntityRadius(const QString &value);
void updateEntityValues();
@@ -77,6 +83,9 @@ 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;
QLineEdit *edit_entityradius;
QTextEdit *text_entityvalues;
QTextEdit *text_subsections;