mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
14 lines
299 B
C++
Executable File
14 lines
299 B
C++
Executable File
#include <QDialog>
|
|
#include <QWidget>
|
|
#include <AIS_InteractiveContext.hxx>
|
|
|
|
class DialogTransparency : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DialogTransparency ( QWidget * parent=0, Qt::WindowFlags f=0, bool modal=true );
|
|
~DialogTransparency();
|
|
signals:
|
|
void sendTransparencyChanged(int value);
|
|
};
|