2014-07-08 03:11:14 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "FractoriumPch.h"
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// DoubleSpinBox and VariationTreeDoubleSpinBox classes.
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A derivation to prevent the spin box from selecting its own text
|
|
|
|
/// when editing. Also to prevent multiple spin boxes from all having
|
|
|
|
/// selected text at once.
|
|
|
|
/// </summary>
|
|
|
|
class DoubleSpinBox : public QDoubleSpinBox
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit DoubleSpinBox(QWidget* parent = 0, int height = 16, double step = 0.05);
|
|
|
|
virtual ~DoubleSpinBox() { }
|
|
|
|
void SetValueStealth(double d);
|
|
|
|
void DoubleClick(bool b);
|
|
|
|
void DoubleClickZero(double val);
|
|
|
|
void DoubleClickNonZero(double val);
|
2015-02-03 20:11:16 -05:00
|
|
|
double Step();
|
2014-07-08 03:11:14 -04:00
|
|
|
void Step(double step);
|
2015-02-03 20:11:16 -05:00
|
|
|
double SmallStep();
|
2014-07-08 03:11:14 -04:00
|
|
|
void SmallStep(double step);
|
|
|
|
QLineEdit* lineEdit();
|
|
|
|
|
|
|
|
public slots:
|
2015-05-15 21:45:15 -04:00
|
|
|
void OnSpinBoxValueChanged(double d);
|
|
|
|
void OnTimeout();
|
2014-07-08 03:11:14 -04:00
|
|
|
|
|
|
|
protected:
|
2014-12-12 03:54:03 -05:00
|
|
|
virtual bool eventFilter(QObject* o, QEvent* e) override;
|
2014-07-08 03:11:14 -04:00
|
|
|
virtual void focusInEvent(QFocusEvent* e);
|
|
|
|
virtual void focusOutEvent(QFocusEvent* e);
|
|
|
|
virtual void enterEvent(QEvent* e);
|
|
|
|
virtual void leaveEvent(QEvent* e);
|
|
|
|
|
|
|
|
private:
|
2015-05-15 21:45:15 -04:00
|
|
|
void StartTimer();
|
|
|
|
void StopTimer();
|
|
|
|
|
2014-07-08 03:11:14 -04:00
|
|
|
bool m_Select;
|
|
|
|
bool m_DoubleClick;
|
|
|
|
double m_DoubleClickNonZero;
|
|
|
|
double m_DoubleClickZero;
|
|
|
|
double m_Step;
|
|
|
|
double m_SmallStep;
|
2015-05-15 21:45:15 -04:00
|
|
|
QPoint m_MouseDownPoint;
|
|
|
|
QPoint m_MouseMovePoint;
|
|
|
|
static QTimer m_Timer;
|
2014-07-08 03:11:14 -04:00
|
|
|
};
|
|
|
|
|
2014-07-28 01:25:38 -04:00
|
|
|
/// <summary>
|
|
|
|
/// VariationTreeWidgetItem and VariationTreeDoubleSpinBox need each other, but each can't include the other.
|
|
|
|
/// So VariationTreeWidgetItem includes this file, and use a forward declaration here.
|
|
|
|
/// </summary>
|
2015-06-28 17:04:30 -04:00
|
|
|
class VariationTreeWidgetItem;
|
2014-07-28 01:25:38 -04:00
|
|
|
|
2014-07-08 03:11:14 -04:00
|
|
|
/// <summary>
|
|
|
|
/// Derivation for the double spin boxes that are in the
|
|
|
|
/// variations tree.
|
|
|
|
/// </summary>
|
|
|
|
class VariationTreeDoubleSpinBox : public DoubleSpinBox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// <summary>
|
|
|
|
/// Constructor that passes agruments to the base and assigns the m_Param and m_Variation members.
|
|
|
|
/// </summary>
|
2014-12-11 00:50:15 -05:00
|
|
|
/// <param name="p">The parent widget</param>
|
2014-07-28 01:25:38 -04:00
|
|
|
/// <param name="widgetItem">The widget item this spinner is contained in</param>
|
2015-06-28 17:04:30 -04:00
|
|
|
/// <param name="id">The variation this spinner is for</param>
|
2014-07-08 03:11:14 -04:00
|
|
|
/// <param name="param">The name of the parameter this is for</param>
|
2014-12-11 00:50:15 -05:00
|
|
|
/// <param name="h">The height of the spin box. Default: 16.</param>
|
2014-07-08 03:11:14 -04:00
|
|
|
/// <param name="step">The step used to increment/decrement the spin box when using the mouse wheel. Default: 0.05.</param>
|
2015-06-28 17:04:30 -04:00
|
|
|
explicit VariationTreeDoubleSpinBox(QWidget* p, VariationTreeWidgetItem* widgetItem, eVariationId id, string param, int h = 16, double step = 0.05)
|
2014-12-11 00:50:15 -05:00
|
|
|
: DoubleSpinBox(p, h, step)
|
2014-07-08 03:11:14 -04:00
|
|
|
{
|
2014-07-28 01:25:38 -04:00
|
|
|
m_WidgetItem = widgetItem;
|
2014-07-08 03:11:14 -04:00
|
|
|
m_Param = param;
|
2015-06-28 17:04:30 -04:00
|
|
|
m_Id = id;
|
2014-07-08 03:11:14 -04:00
|
|
|
setDecimals(3);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~VariationTreeDoubleSpinBox() { }
|
|
|
|
bool IsParam() { return !m_Param.empty(); }
|
|
|
|
string ParamName() { return m_Param; }
|
2015-06-28 17:04:30 -04:00
|
|
|
eVariationId GetVariationId() { return m_Id; }
|
|
|
|
VariationTreeWidgetItem* WidgetItem() { return m_WidgetItem; }
|
2014-07-08 03:11:14 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
string m_Param;
|
2015-06-28 17:04:30 -04:00
|
|
|
eVariationId m_Id;
|
|
|
|
VariationTreeWidgetItem* m_WidgetItem;
|
2014-07-08 03:11:14 -04:00
|
|
|
};
|