diff options
| author | Bryan Galdrikian <[email protected]> | 2017-08-23 11:24:32 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2017-08-23 11:24:32 -0700 |
| commit | f1e539cadfb085cedc32f9773cfb9d14bfcdf138 (patch) | |
| tree | 7ca74e06a4386dd22fd850a8417a31a85d282a30 /tools/ArtistTools/source/BlastPlugin/Window/FractureGeneralPanel.h | |
| parent | Updated to CL 22661993: (diff) | |
| download | archived-blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.tar.xz archived-blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.zip | |
Removing ArtistTools and CurveEditor projects
Diffstat (limited to 'tools/ArtistTools/source/BlastPlugin/Window/FractureGeneralPanel.h')
| -rw-r--r-- | tools/ArtistTools/source/BlastPlugin/Window/FractureGeneralPanel.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/tools/ArtistTools/source/BlastPlugin/Window/FractureGeneralPanel.h b/tools/ArtistTools/source/BlastPlugin/Window/FractureGeneralPanel.h deleted file mode 100644 index 1ab9f24..0000000 --- a/tools/ArtistTools/source/BlastPlugin/Window/FractureGeneralPanel.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef FRACTUREGENERALPANEL_H -#define FRACTUREGENERALPANEL_H - -#include <QtWidgets/QWidget> -#include "ProjectParams.h" - -namespace Ui { -class FractureGeneralPanel; -} - -class FractureVoronoiSettingsPanel; -class FractureSliceSettingsPanel; -class FractureVisualizersPanel; -class ExpandablePanel; - -class FractureGeneralPanel : public QWidget -{ - Q_OBJECT - -public: - static FractureGeneralPanel* ins(); - - explicit FractureGeneralPanel(QWidget *parent = 0); - ~FractureGeneralPanel(); - void updateValues(); - void setFracturePanels(FractureVoronoiSettingsPanel* voronoiPanel, FractureSliceSettingsPanel* slicePanel, FractureVisualizersPanel* visulizersPanel); - void setFractureExpandablePanels(ExpandablePanel* voronoiPanel, ExpandablePanel* slicePanel); - - FracturePreset* getCurrentFracturePreset(); - -private slots: - void on_comboBoxFracturePreset_currentIndexChanged(int index); - - void on_btnAddPreset_clicked(); - - void on_btnModifyPreset_clicked(); - - void on_btnSavePreset_clicked(); - - void on_comboBoxFractureType_currentIndexChanged(int index); - - void on_comboBoxApplyMaterial_currentIndexChanged(int index); - - void on_checkBoxAutoSelectNewChunks_stateChanged(int arg1); - -private: - FracturePreset* _getFracturePreset(const char* name); - void _updateFractureUIs(); - void _showFracturePanel(const QString& fractireType); - -private: - Ui::FractureGeneralPanel *ui; - bool m_bValid; - bool _updateData; - FractureVoronoiSettingsPanel* _voronoiPanel; - FractureSliceSettingsPanel* _slicePanel; - FractureVisualizersPanel* _visualizersPanel; - ExpandablePanel* _fractureVoronoiSettingsExpandlePanel; - ExpandablePanel* _fractureSliceSettingsExpandlePanel; -}; - -#endif // FRACTUREGENERALPANEL_H |