1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
//##########################################################################
//# #
//# CLOUDCOMPARE #
//# #
//# 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; version 2 or later of the License. #
//# #
//# 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. #
//# #
//# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#ifndef CC_CAMERA_PARAM_EDIT_DLG_HEADER
#define CC_CAMERA_PARAM_EDIT_DLG_HEADER
//Local
#include "ccOverlayDialog.h"
#include "ccPickingListener.h"
//qCC_db
#include <ccGLMatrix.h>
//qCC_gl
#include <ccGLUtils.h>
//system
#include <map>
class QMdiSubWindow;
class ccGLWindow;
class ccHObject;
class ccPickingHub;
namespace Ui
{
class CameraParamDlg;
}
//! Dialog to interactively edit the camera pose parameters
class ccCameraParamEditDlg : public ccOverlayDialog, public ccPickingListener
{
Q_OBJECT
public:
//! Default constructor
explicit ccCameraParamEditDlg(QWidget* parent, ccPickingHub* pickingHub);
//! Destructor
~ccCameraParamEditDlg() override;
//! Makes this dialog frameless
void makeFrameless();
//! Returns matrix corresponding to dialog values
ccGLMatrixd getMatrix();
//inherited from ccOverlayDialog
bool start() override;
bool linkWith(ccGLWindow* win) override;
//inherited from ccPickingListener
void onItemPicked(const PickedItem& pi) override;
public slots:
//! Links this dialog with a given sub-window
void linkWith(QMdiSubWindow* qWin);
//! Inits dialog values with matrix
void initWithMatrix(const ccGLMatrixd& mat);
//! Updates dialog values with pivot point
void updatePivotPoint(const CCVector3d& P);
//! Updates dialog values with camera center
void updateCameraCenter(const CCVector3d& P);
//! Updates current view mode
void updateViewMode();
//! Updates view f.o.v.
void updateWinFov(float fov_deg);
//! Update the zNear coef.
void updateZNearCoef(float zNearCoef);
void setFrontView();
void setBottomView();
void setTopView();
void setBackView();
void setLeftView();
void setRightView();
void setIso1View();
void setIso2View();
void iThetaValueChanged(int);
void iPsiValueChanged(int);
void iPhiValueChanged(int);
void dThetaValueChanged(double);
void dPsiValueChanged(double);
void dPhiValueChanged(double);
void zNearSliderMoved(int);
void pivotChanged();
void cameraCenterChanged();
void fovChanged(double);
void pickPointAsPivot(bool);
void processPickedItem(ccHObject*, unsigned, int, int, const CCVector3&, const CCVector3d&);
protected slots:
//! Reflects any dialog parameter change
void reflectParamChange();
//! Places the camera in a given prefedined orientation
void setView(CC_VIEW_ORIENTATION orientation);
//! Pushes current matrix
void pushCurrentMatrix();
//! Reverts to pushed matrix
void revertToPushedMatrix();
protected:
//! Inits dialog values with specified window
void initWith(ccGLWindow* win);
//! Type of the pushed matrices map structure
using PushedMatricesMapType = std::map<ccGLWindow*,ccGLMatrixd>;
//! Type of an element of the pushed matrices map structure
using PushedMatricesMapElement = std::pair<ccGLWindow*,ccGLMatrixd>;
//! Pushed camera matrices (per window)
PushedMatricesMapType pushedMatrices;
//! Picking hub
ccPickingHub* m_pickingHub;
private:
Ui::CameraParamDlg* m_ui;
};
#endif //CC_CAMERA_PARAM_EDIT_DLG_HEADER
|