| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- #pragma once
- //##########################################################################
- //# #
- //# 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) #
- //# #
- //##########################################################################
- #include "CCAppCommon.h"
- //Local
- #include "ccOverlayDialog.h"
- #include "ccPickingListener.h"
- //qCC_db
- #include <ccGLMatrix.h>
- //qCC_gl
- #include <ccGLUtils.h>
- //system
- #include <map>
- class QMdiSubWindow;
- class ccGLWindowInterface;
- class ccHObject;
- class ccPickingHub;
- namespace Ui
- {
- class CameraParamDlg;
- }
- //! Dialog to interactively edit the camera pose parameters
- class CCAPPCOMMON_LIB_API 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(ccGLWindowInterface* win) override;
- //inherited from ccPickingListener
- void onItemPicked(const PickedItem& pi) override;
- public:
- //! 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 near clipping depth
- void updateNearClippingDepth(double depth);
- //! Update the far clipping depth
- void updateFarClippingDepth(double depth);
- 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 nearClippingDepthChanged(double);
- void nearClippingCheckBoxToggled(bool);
- void farClippingDepthChanged(double);
- void farClippingCheckBoxToggled(bool);
- void pivotChanged();
- void cameraCenterChanged();
- void fovChanged(double);
- void pickPointAsPivot(bool);
- void processPickedItem(ccHObject*, unsigned, int, int, const CCVector3&, const CCVector3d&);
- protected:
- //! 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(ccGLWindowInterface* win);
- //! Type of the pushed matrices map structure
- using PushedMatricesMapType = std::map<ccGLWindowInterface*, ccGLMatrixd>;
- //! Type of an element of the pushed matrices map structure
- using PushedMatricesMapElement = std::pair<ccGLWindowInterface*, ccGLMatrixd>;
- //! Pushed camera matrices (per window)
- PushedMatricesMapType pushedMatrices;
- //! Picking hub
- ccPickingHub* m_pickingHub;
-
- private:
- Ui::CameraParamDlg* m_ui;
- };
|