mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-12 03:04:51 -04:00
Add scrollbars
Add scrollbars to various UI areas to be more friendly to low resolution monitors. This works well down to vertical resolutions of 960. Below that, things will get scrunched.
This commit is contained in:
@ -64,7 +64,7 @@ public:
|
||||
unsigned int ThreadCount();
|
||||
unsigned int Width();
|
||||
unsigned int Height();
|
||||
unsigned int Quality();
|
||||
double Quality();
|
||||
unsigned int TemporalSamples();
|
||||
unsigned int Supersample();
|
||||
FinalRenderGuiState State();
|
||||
@ -81,7 +81,7 @@ public Q_SLOTS:
|
||||
void OnScaleRadioButtonChanged(bool checked);
|
||||
void OnWidthChanged(int d);
|
||||
void OnHeightChanged(int d);
|
||||
void OnQualityChanged(int d);
|
||||
void OnQualityChanged(double d);
|
||||
void OnTemporalSamplesChanged(int d);
|
||||
void OnSupersampleChanged(int d);
|
||||
void OnFileButtonClicked(bool checked);
|
||||
@ -101,7 +101,7 @@ private:
|
||||
Timing m_RenderTimer;
|
||||
SpinBox* m_WidthSpin;
|
||||
SpinBox* m_HeightSpin;
|
||||
SpinBox* m_QualitySpin;
|
||||
DoubleSpinBox* m_QualitySpin;
|
||||
SpinBox* m_TemporalSamplesSpin;
|
||||
SpinBox* m_SupersampleSpin;
|
||||
QLineEdit* m_PrefixEdit;
|
||||
|
Reference in New Issue
Block a user