mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-11 18:54:53 -04:00
--User changes
-Add backward compatibility option for the following variations: cos, cosh, cot, coth, csc, csch, sec, sech, sin, sinh, tan, tanh. -Add the ability to re-order variations by dragging them in the Info tab.
This commit is contained in:
@ -26,4 +26,29 @@ protected:
|
||||
virtual void dropEvent(QDropEvent* de) override;
|
||||
|
||||
Fractorium* m_Fractorium = nullptr;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
class InfoTreeWidget : public QTreeWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
/// <summary>
|
||||
/// Constructor that passes p to the parent.
|
||||
/// </summary>
|
||||
/// <param name="p">The parent widget</param>
|
||||
explicit InfoTreeWidget(QWidget* p = nullptr)
|
||||
: QTreeWidget(p)
|
||||
{
|
||||
}
|
||||
|
||||
void SetMainWindow(Fractorium* f);
|
||||
const QString& LastNonVarField() const { return m_LastNonVarField; }
|
||||
|
||||
protected:
|
||||
virtual void dropEvent(QDropEvent* de) override;
|
||||
virtual void dragMoveEvent(QDragMoveEvent* dme) override;
|
||||
|
||||
Fractorium* m_Fractorium = nullptr;
|
||||
QString m_LastNonVarField = "Direct color";//It is critical to update this if any more fields are ever added before the variations start.
|
||||
};
|
||||
|
Reference in New Issue
Block a user