123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- #ifndef SWITCHTABBASEWIDGET_H
- #define SWITCHTABBASEWIDGET_H
- #include <QWidget>
- #include <QWidget>
- #include <QSlider>
- #include <QLineEdit>
- #include <QIntValidator>
- #include <QProgressBar>
- #include <QLabel>
- #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);
- void resizeSingleUI();
- 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, bool bUpdate = true);
- 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;
- /**硬件指针
- */
- QPointer<CameraBind> m_pCameraBind;
-
- /**当前页面的Group
- */
- Group* m_pPageSwitchGroup = nullptr;
- /**移动轴信息
- */
- ST_MOVE_AXIS m_moveAxisInfo;
- /**用作定时使用,后面移动到整个类里面,目前先实现功能
- */
- int m_idleTimer = -1;
- int m_nTimeShowPos = -1;
- };
- #endif // SWITCHTABBASEWIDGET_H
|