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/MaterialLibraryPanel.h | |
| parent | Updated to CL 22661993: (diff) | |
| download | blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.tar.xz blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.zip | |
Removing ArtistTools and CurveEditor projects
Diffstat (limited to 'tools/ArtistTools/source/BlastPlugin/Window/MaterialLibraryPanel.h')
| -rw-r--r-- | tools/ArtistTools/source/BlastPlugin/Window/MaterialLibraryPanel.h | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/tools/ArtistTools/source/BlastPlugin/Window/MaterialLibraryPanel.h b/tools/ArtistTools/source/BlastPlugin/Window/MaterialLibraryPanel.h deleted file mode 100644 index 9012294..0000000 --- a/tools/ArtistTools/source/BlastPlugin/Window/MaterialLibraryPanel.h +++ /dev/null @@ -1,65 +0,0 @@ -#ifndef MATERIALLIBRARYPANEL_H -#define MATERIALLIBRARYPANEL_H - -#include <QtWidgets/QWidget> -#include "ProjectParams.h" - -class RenderMaterial; - -namespace Ui { -class MaterialLibraryPanel; -} - -class MaterialLibraryPanel : public QWidget -{ - Q_OBJECT - -public: - explicit MaterialLibraryPanel(QWidget *parent = 0); - ~MaterialLibraryPanel(); - void updateValues(); - - static MaterialLibraryPanel* ins(); - -private slots: - void on_btnAddMat_clicked(); - - void on_btnModifyMat_clicked(); - - void on_btnRemoveMat_clicked(); - - void on_listWidget_currentRowChanged(int currentRow); - - void on_btnDiffuseColor_clicked(); - - void on_btnDiffuseColorTex_clicked(); - - void on_btnDiffuseColorTexReload_clicked(); - - void on_btnDiffuseColorTexClear_clicked(); - - void on_btnSpecularColor_clicked(); - - void on_btnSpecularColorTex_clicked(); - - void on_btnSpecularColorTexReload_clicked(); - - void on_btnSpecularColorTexClear_clicked(); - - void on_spinSpecularShin_valueChanged(double arg1); - - void on_btnNormalColorTex_clicked(); - - void on_btnNormalColorTexReload_clicked(); - - void on_btnNormalColorTexClear_clicked(); - -private: - void _refreshMaterialValues(int idx); - BPPGraphicsMaterial* _getSelectedMaterial(); - -private: - Ui::MaterialLibraryPanel *ui; -}; - -#endif // MATERIALLIBRARYPANEL_H |