mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 05:00:06 -05:00
1dfbd4eff2
-Add new preset dimensions to the right click menu of the width and height fields in the editor. -Change QSS stylesheets to properly handle tabs. -Make tabs rectangular by default. For some reason, they had always been triangular. --Bug fixes -Incremental rendering times in the editor were wrong. --Code changes -Migrate to Qt6. There is probably more work to be done here. -Migrate to VS2022. -Migrate to Wix 4 installer. -Change installer to install to program files for all users. -Fix many VS2022 code analysis warnings. -No longer use byte typedef, because std::byte is now a type. Revert all back to unsigned char. -Upgrade OpenCL headers to version 3.0 and keep locally now rather than trying to look for system files. -No longer link to Nvidia or AMD specific OpenCL libraries. Use the generic installer located at OCL_ROOT too. -Add the ability to change OpenCL grid dimensions. This was attempted for investigating possible performance improvments, but made no difference. This has not been verified on Linux or Mac yet.
63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "FractoriumPch.h"
|
|
#include "DoubleSpinBox.h"
|
|
|
|
/// <summary>
|
|
/// SpinBox class.
|
|
/// </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 SpinBox : public QSpinBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SpinBox(QWidget* p = nullptr, int height = 16, int step = 1);
|
|
virtual ~SpinBox() { }
|
|
void SetValueStealth(int d);
|
|
void SetValueStealth(size_t d);
|
|
void DoubleClick(bool b);
|
|
void DoubleClickLowVal(int val);
|
|
int DoubleClickLowVal();
|
|
void DoubleClickZero(int val);
|
|
int DoubleClickZero();
|
|
void DoubleClickNonZero(int val);
|
|
int DoubleClickNonZero();
|
|
void SmallStep(int step);
|
|
QLineEdit* lineEdit();
|
|
std::function<void(SpinBox*, int)> m_DoubleClickZeroEvent = [&](SpinBox*, int) {};
|
|
std::function<void(SpinBox*, int)> m_DoubleClickNonZeroEvent = [&](SpinBox*, int) {};
|
|
|
|
public slots:
|
|
void onSpinBoxValueChanged(int i);
|
|
void OnTimeout();
|
|
|
|
protected:
|
|
bool eventFilter(QObject* o, QEvent* e) override;
|
|
void keyPressEvent(QKeyEvent* event) override;
|
|
void focusInEvent(QFocusEvent* e) override;
|
|
void focusOutEvent(QFocusEvent* e) override;
|
|
void enterEvent(QEnterEvent* e) override;
|
|
void leaveEvent(QEvent* e) override;
|
|
|
|
private:
|
|
void StartTimer();
|
|
void StopTimer();
|
|
|
|
bool m_DoubleClick;
|
|
int m_DoubleClickLowVal;
|
|
int m_DoubleClickNonZero;
|
|
int m_DoubleClickZero;
|
|
int m_Step;
|
|
int m_SmallStep;
|
|
QPoint m_MouseDownPoint;
|
|
QPoint m_MouseMovePoint;
|
|
shared_ptr<FractoriumSettings> m_Settings;
|
|
static QTimer s_Timer;
|
|
};
|