LightJoystickSwitchPage.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. void resizeSingleUI();
  31. public slots:
  32. void on_move_Button_clicked();
  33. void on_moveTo_Button_clicked();
  34. void on_up_Button_clicked();
  35. void on_left_Button_clicked();
  36. void on_right_Button_clicked();
  37. void on_down_Button_clicked();
  38. public:
  39. /**拿到指针对界面操作
  40. */
  41. void InitMainCameraBind(CameraBind* pCameraBind, bool bUpdate = true);
  42. void UpdatemPageGroup(Group* pGroup);
  43. /**切换摇杆
  44. */
  45. void SwitchJoystickPage(bool bSwitch);
  46. /**显示或者隐藏当前页面
  47. */
  48. void HideOrShowPage(bool isHide);
  49. /**设置移动摇杆信息
  50. */
  51. void SetMoveJoystickInfo(const ST_MOVE_AXIS& movInfo);
  52. protected:
  53. void timerEvent(QTimerEvent* event) override;
  54. private:
  55. /**组合字符串
  56. */
  57. QString CombiningStr(bool isUpdate = false);
  58. /**实时更新
  59. */
  60. void RealTimeUpdatesToU();
  61. /**重置时间
  62. */
  63. void ResetIdleTimer(bool bStart = false);
  64. /**移动摇杆
  65. */
  66. void MoveJoystick();
  67. /**更新当前灯光值
  68. */
  69. void UpdataLightVal();
  70. /**匹配选中灯光索引
  71. */
  72. EN_LIGHT_INDEX MatchSelectedLightIndex(QLineEdit* lineEdit);
  73. void InitForm();
  74. void BondSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit);
  75. void SliderBind();
  76. void InitLineEdits();
  77. private:
  78. Ui::LightJoystickSwitchPage *ui;
  79. /**硬件指针
  80. */
  81. QPointer<CameraBind> m_pCameraBind;
  82. /**当前页面的Group
  83. */
  84. Group* m_pPageSwitchGroup = nullptr;
  85. /**移动轴信息
  86. */
  87. ST_MOVE_AXIS m_moveAxisInfo;
  88. /**用作定时使用,后面移动到整个类里面,目前先实现功能
  89. */
  90. int m_idleTimer = -1;
  91. int m_nTimeShowPos = -1;
  92. };
  93. #endif // SWITCHTABBASEWIDGET_H