add rightbutton only can dray

This commit is contained in:
chenshijie
2020-11-02 19:07:49 +08:00
parent 85a577fe90
commit 7b9079d279
3 changed files with 32 additions and 8 deletions

View File

@@ -34,12 +34,15 @@ private:
QPoint lastPoint; //最后按下的坐标
bool pressed; //鼠标是否按下
bool leftButton; //限定鼠标左键
bool rightButton; //限定鼠标右键
bool inControl; //限定在容器内
QWidget *widget; //移动的控件
public Q_SLOTS:
//设置是否限定鼠标左键
void setLeftButton(bool leftButton);
//设置是否限定鼠标右键
void setRightButton(bool rightButton);
//设置是否限定不能移出容器外面
void setInControl(bool inControl);
//设置要移动的控件