ccGBLSensorProjectionDlg.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #pragma once
  2. //##########################################################################
  3. //# #
  4. //# CLOUDCOMPARE #
  5. //# #
  6. //# This program is free software; you can redistribute it and/or modify #
  7. //# it under the terms of the GNU General Public License as published by #
  8. //# the Free Software Foundation; version 2 or later of the License. #
  9. //# #
  10. //# This program is distributed in the hope that it will be useful, #
  11. //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
  12. //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  13. //# GNU General Public License for more details. #
  14. //# #
  15. //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
  16. //# #
  17. //##########################################################################
  18. #include <ui_gblSensorProjectDlg.h>
  19. class ccGBLSensor;
  20. //! Ground-based (lidar) sensor parameters dialog
  21. class ccGBLSensorProjectionDlg : public QDialog, public Ui::GBLSensorProjectDialog
  22. {
  23. Q_OBJECT
  24. public:
  25. //! Default constructor
  26. explicit ccGBLSensorProjectionDlg(QWidget* parent = nullptr);
  27. void initWithPrevious();
  28. void saveForNextTime();
  29. void initWithGBLSensor(const ccGBLSensor* sensor);
  30. void updateGBLSensor(ccGBLSensor* sensor);
  31. };