#ifndef SWITCHTABBASEWIDGET_H #define SWITCHTABBASEWIDGET_H #include #include #include #include #include #include #include #include "../CameraBind.h" #include "CameraMaterialGroupWnd/Group.h" //移动轴 struct ST_MOVE_AXIS { std::string ModuleType; std::string AxisType; double pos; }; namespace Ui { class LightJoystickSwitchPage; } class LightJoystickSwitchPage : public QWidget { Q_OBJECT public: explicit LightJoystickSwitchPage(QWidget *parent = nullptr); ~LightJoystickSwitchPage(); void setLigthValue(int redLight,int greenLight,int blueLight,int dotLight); void setLightWidget(int value, QWidget *lightWidget, QLineEdit *lineEdit, QSlider *slider, QProgressBar *progressBar, QLabel *label); public slots: void on_move_Button_clicked(); void on_moveTo_Button_clicked(); void on_up_Button_clicked(); void on_left_Button_clicked(); void on_right_Button_clicked(); void on_down_Button_clicked(); public: /**拿到指针对界面操作 */ void InitMainCameraBind(CameraBind* pCameraBind); void UpdatemPageGroup(Group* pGroup); /**切换摇杆 */ void SwitchJoystickPage(bool bSwitch); /**显示或者隐藏当前页面 */ void HideOrShowPage(bool isHide); /**设置移动摇杆信息 */ void SetMoveJoystickInfo(const ST_MOVE_AXIS& movInfo); protected: void timerEvent(QTimerEvent* event) override; private: /**组合字符串 */ QString CombiningStr(bool isUpdate = false); /**实时更新 */ void RealTimeUpdatesToU(); /**重置时间 */ void ResetIdleTimer(bool bStart = false); /**移动摇杆 */ void MoveJoystick(); /**更新当前灯光值 */ void UpdataLightVal(); /**匹配选中灯光索引 */ EN_LIGHT_INDEX MatchSelectedLightIndex(QLineEdit* lineEdit); void InitForm(); void BondSliderAndLineEdit(QSlider* slider, QLineEdit* lineEdit); void SliderBind(); void InitLineEdits(); private: Ui::LightJoystickSwitchPage *ui; /**硬件指针 */ std::unique_ptr m_pCameraBind; /**当前页面的Group */ Group* m_pPageSwitchGroup = nullptr; /**移动轴信息 */ ST_MOVE_AXIS m_moveAxisInfo; /**用作定时使用,后面移动到整个类里面,目前先实现功能 */ int m_idleTimer = -1; int m_nTimeShowPos = -1; }; #endif // SWITCHTABBASEWIDGET_H