|
| bool | checkbox (const String &label, bool &value) |
| |
| bool | colorEditor (const String &label, Vector3f &value) |
| |
| bool | colorEditor (const String &label, Vector4f &value) |
| |
| template<typename T > |
| bool | drag (const String &label, T &value, const float velocity, T min, T max) |
| |
| template<typename T > |
| bool | drag (const String &label, T &value, const double velocity, T min, T max) |
| |
| template<typename T > |
| bool | drag (const String &label, T &value, const float velocity, T min) |
| |
| template<typename T > |
| bool | drag (const String &label, T &value, const double velocity, T min) |
| |
| template<typename T > |
| bool | drag (const String &label, T &value, const float velocity) |
| |
| template<typename T > |
| bool | drag (const String &label, T &value, const double velocity) |
| |
| template<typename T , int D> |
| bool | drag (const String &label, TVector< D, T > &value, const float velocity, T min, T max) |
| |
| template<typename T , int D> |
| bool | drag (const String &label, TVector< D, T > &value, const double velocity, T min, T max) |
| |
| template<typename T , int D> |
| bool | drag (const String &label, TVector< D, T > &value, const float velocity) |
| |
| template<typename T , int D> |
| bool | drag (const String &label, TVector< D, T > &value, const double velocity) |
| |
| template<typename T , int C, int R> |
| bool | drag (const String &label, TMatrix< C, R, T > &value, const double velocity, T min, T max) |
| |
| template<typename T > |
| bool | slider (const String &label, T &value, const T min, const T max) |
| |
| template<typename Builder > |
| bool | window (const String &title, Builder &&builder) |
| |