LightJoystickSwitchPage.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. #ifndef SWITCHTABBASEWIDGET_H
  2. #define SWITCHTABBASEWIDGET_H
  3. #include <QWidget>
  4. #include <QWidget>
  5. #include <QSlider>
  6. #include <QLineEdit>
  7. #include <QIntValidator>
  8. #include <QProgressBar>
  9. #include <QLabel>
  10. #include "../CameraBind.h"
  11. #include "CameraMaterialGroupWnd/Group.h"
  12. //移动轴
  13. struct ST_MOVE_AXIS
  14. {
  15. std::string ModuleType;
  16. std::string AxisType;
  17. double pos;
  18. };
  19. namespace Ui {
  20. class LightJoystickSwitchPage;
  21. }
  22. class LightJoystickSwitchPage : public QWidget
  23. {
  24. Q_OBJECT
  25. public:
  26. explicit LightJoystickSwitchPage(QWidget *parent = nullptr);
  27. ~LightJoystickSwitchPage();
  28. void setLigthValue(int redLight,int greenLight,int blueLight,int dotLight);
  29. void setLightWidget(int value, QWidget *lightWidget, QLineEdit *lineEdit, QSlider *slider, QProgressBar *progressBar, QLabel *label);
  30. public slots:
  31. void on_move_Button_clicked();
  32. void on_moveTo_Button_clicked();
  33. void on_up_Button_clicked();
  34. void on_left_Button_clicked();
  35. void on_right_Button_clicked();
  36. void on_down_Button_clicked();
  37. public:
  38. /**拿到指针对界面操作
  39. */
  40. void InitMainCameraBind(CameraBind* pCameraBind);
  41. void UpdatemPageGroup(Group* pGroup);
  42. /**切换摇杆
  43. */
  44. void SwitchJoystickPage(bool bSwitch);
  45. /**显示或者隐藏当前页面
  46. */
  47. void HideOrShowPage(bool isHide);
  48. /**设置移动摇杆信息
  49. */
  50. void SetMoveJoystickInfo(const ST_MOVE_AXIS& movInfo);
  51. protected:
  52. void timerEvent(QTimerEvent* event) override;
  53. private:
  54. /**组合字符串
  55. */
  56. QString CombiningStr(bool isUpdate = false);
  57. /**实时更新
  58. */
  59. void RealTimeUpdatesToU();
  60. /**重置时间
  61. */
  62. void ResetIdleTimer(bool bStart = false);
  63. /**移动摇杆
  64. */
  65. void MoveJoystick();
  66. /**更新当前灯光值
  67. */
  68. void UpdataLightVal();
  69. /**匹配选中灯光索引
  70. */
  71. EN_LIGHT_INDEX MatchSelectedLightIndex(QLineEdit* lineEdit);
  72. void InitForm();
  73. void BondSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit);
  74. void SliderBind();
  75. void InitLineEdits();
  76. private:
  77. Ui::LightJoystickSwitchPage *ui;
  78. /**硬件指针
  79. */
  80. std::unique_ptr<CameraBind> m_pCameraBind;
  81. /**当前页面的Group
  82. */
  83. Group* m_pPageSwitchGroup = nullptr;
  84. /**移动轴信息
  85. */
  86. ST_MOVE_AXIS m_moveAxisInfo;
  87. /**用作定时使用,后面移动到整个类里面,目前先实现功能
  88. */
  89. int m_idleTimer = -1;
  90. int m_nTimeShowPos = -1;
  91. };
  92. #endif // SWITCHTABBASEWIDGET_H