Files
qad/qglview/material_editor.h
Пелипенко Иван fd4ffc3677 x64 fixICU fixes
git-svn-id: svn://db.shs.com.ru/libs@6 a8b55f48-bf90-11e4-a774-851b48703e85
2015-04-15 07:42:34 +00:00

72 lines
2.0 KiB
C++

/*
QGLView
Copyright (C) 2012 Ivan Pelipenko peri4ko@gmail.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MATERIAL_EDITOR_H
#define MATERIAL_EDITOR_H
#include <QFileDialog>
#include "gltypes.h"
namespace Ui {
class MaterialEditor;
};
class MaterialEditor: public QWidget
{
Q_OBJECT
public:
explicit MaterialEditor(QWidget * parent = 0);
void setMaterial(const Material & m);
Material material();
protected:
void changeEvent(QEvent * e);
bool active;
Ui::MaterialEditor * ui;
private slots:
void materialChanged() {if (active) emit changed();}
void on_buttonDiffuseSelect_clicked();
void on_buttonDiffuseClear_clicked();
void on_buttonBumpSelect_clicked();
void on_buttonBumpClear_clicked();
void on_buttonReliefSelect_clicked();
void on_buttonReliefClear_clicked();
void on_buttonReflFrontSelect_clicked();
void on_buttonReflFrontClear_clicked();
void on_buttonReflBackSelect_clicked();
void on_buttonReflBackClear_clicked();
void on_buttonReflLeftSelect_clicked();
void on_buttonReflLeftClear_clicked();
void on_buttonReflRightSelect_clicked();
void on_buttonReflRightClear_clicked();
void on_buttonReflTopSelect_clicked();
void on_buttonReflTopClear_clicked();
void on_buttonReflBottomSelect_clicked();
void on_buttonReflBottomClear_clicked();
void on_buttonLoadCubeDir_clicked();
signals:
void changed();
};
#endif // MATERIAL_EDITOR_H