mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
46 lines
714 B
C++
46 lines
714 B
C++
#ifndef _PREVIEW_H_
|
|
#define _PREVIEW_H_
|
|
|
|
#include "lc_glwidget.h"
|
|
|
|
class PieceInfo;
|
|
|
|
class PiecePreview : public lcGLWidget
|
|
{
|
|
public:
|
|
PiecePreview();
|
|
virtual ~PiecePreview();
|
|
|
|
void OnDraw();
|
|
void OnLeftButtonDown();
|
|
void OnLeftButtonUp();
|
|
void OnLeftButtonDoubleClick();
|
|
void OnRightButtonDown();
|
|
void OnRightButtonUp();
|
|
void OnMouseMove();
|
|
|
|
PieceInfo* GetCurrentPiece() const
|
|
{
|
|
return m_PieceInfo;
|
|
}
|
|
|
|
void SetCurrentPiece(PieceInfo* Info);
|
|
void SetDefaultPiece();
|
|
|
|
protected:
|
|
PieceInfo* m_PieceInfo;
|
|
|
|
// Mouse tracking.
|
|
int m_Tracking;
|
|
int m_DownX;
|
|
int m_DownY;
|
|
|
|
// Current camera settings.
|
|
float m_Distance;
|
|
float m_RotateX;
|
|
float m_RotateZ;
|
|
bool m_AutoZoom;
|
|
};
|
|
|
|
#endif // _PREVIEW_H_
|
|
|