mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
35 lines
733 B
C++
35 lines
733 B
C++
#pragma once
|
|
|
|
#include <QtWidgets>
|
|
|
|
class lcAutomateEdgeColorDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
lcAutomateEdgeColorDialog(QWidget *Parent);
|
|
quint32 mStudColor;
|
|
quint32 mStudEdgeColor;
|
|
float mPartEdgeContrast;
|
|
float mPartEdgeGamma;
|
|
float mPartColorValueLDIndex;
|
|
|
|
protected slots:
|
|
void SliderValueChanged(int);
|
|
void ColorButtonClicked();
|
|
void ResetColorButtonClicked();
|
|
|
|
protected:
|
|
QSlider* PartEdgeGammaSlider;
|
|
QSlider* PartColorValueLDIndexSlider;
|
|
QSlider* PartEdgeContrastSlider;
|
|
|
|
QToolButton* StudColorButton;
|
|
QToolButton* StudEdgeColorButton;
|
|
QToolButton* ResetStudColorButton;
|
|
QToolButton* ResetStudEdgeColorButton;
|
|
|
|
QLabel* PartEdgeContrast;
|
|
QLabel* PartEdgeGamma;
|
|
QLabel* PartColorValueLDIndex;
|
|
};
|
|
|