mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 21:20:07 -05:00
0fbea60026
-Edits will not save back to the file in memory on render completion when preview renderer is running. --Bug fixes -dc_perlin was crashing on Nvidia when using SP. -Duplicate images were randomly getting added to the file in memory. -Crash when opening an Xml with less than 2 flames in it. --Code changes -Use raw array of floats in OpenCL for perlin noise, rather than float3/double3. -Add some default cases to dc_perlin. -Redo singleton pattern yet again. Deriving from a templated Singleton<T> class was creating a separate instance per module. Now only one instance of each type will ever be created and it will be wrapped in a shared_ptr which guarantees its deletion as main() exits.
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "ui_VariationsDialog.h"
|
|
#include "FractoriumSettings.h"
|
|
|
|
/// <summary>
|
|
/// FractoriumVariationsDialog class.
|
|
/// </summary>
|
|
|
|
/// <summary>
|
|
/// The variations filter dialog displays several columns
|
|
/// with the different types of variations shown as checkboxes.
|
|
/// This is used to filter the variations that are shown in the main window
|
|
/// because the list is very long.
|
|
/// The results are stored in a map and returned.
|
|
/// These are used in conjunction with the filter edit box to filter what's shown.
|
|
/// </summary>
|
|
class FractoriumVariationsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
FractoriumVariationsDialog(FractoriumSettings* settings, QWidget* p = nullptr, Qt::WindowFlags f = nullptr);
|
|
void ForEachCell(std::function<void(QTableWidgetItem* cb)> func);
|
|
void ForEachSelectedCell(std::function<void(QTableWidgetItem* cb)> func);
|
|
void SyncSettings();
|
|
const QMap<QString, QVariant>& Map();
|
|
|
|
public slots:
|
|
void OnSelectAllButtonClicked(bool checked);
|
|
void OnInvertSelectionButtonClicked(bool checked);
|
|
void OnSelectNoneButtonClicked(bool checked);
|
|
void OnVariationsTableItemChanged(QTableWidgetItem* item);
|
|
virtual void accept() override;
|
|
virtual void reject() override;
|
|
|
|
protected:
|
|
virtual void showEvent(QShowEvent* e) override;
|
|
|
|
private:
|
|
void DataToGui();
|
|
void GuiToData();
|
|
void Populate();
|
|
void SetCheckFromMap(QTableWidgetItem* cb, const Variation<float>* var);
|
|
shared_ptr<VariationList<float>> m_VariationList;
|
|
QMap<QString, QVariant> m_Vars;
|
|
FractoriumSettings* m_Settings;
|
|
Ui::VariationsDialog ui;
|
|
};
|