這篇文章給大家分享的是有關(guān)Qt如何實(shí)現(xiàn)通用控件移動(dòng)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
成都創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括衛(wèi)濱網(wǎng)站建設(shè)、衛(wèi)濱網(wǎng)站制作、衛(wèi)濱網(wǎng)頁(yè)制作以及衛(wèi)濱網(wǎng)絡(luò)營(yíng)銷策劃等。多年來(lái),我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,衛(wèi)濱網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到衛(wèi)濱省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
在做一些項(xiàng)目的過(guò)程中,有一種應(yīng)用場(chǎng)景是需要拖動(dòng)設(shè)備在一個(gè)容器中,自由拖動(dòng)擺放到合適的位置,然后保存對(duì)應(yīng)設(shè)備的坐標(biāo)位置信息,在軟件啟動(dòng)好以后自動(dòng)加載配置好的坐標(biāo)位置信息,將每個(gè)設(shè)備移動(dòng)到對(duì)應(yīng)的位置,最好背景圖在來(lái)個(gè)3D鳥瞰圖,或者來(lái)點(diǎn)三維實(shí)景,搞得很炫。這就是這個(gè)控件的來(lái)由,還有一種場(chǎng)景比如組態(tài)軟件,自由拖動(dòng)設(shè)計(jì)自定義控件和圖片等,也需要在容器中拖來(lái)拖去的,如果有一個(gè)通用的控件移動(dòng)類,直接new出來(lái)傳入需要移動(dòng)的widget,這樣就方便多了,不需要每個(gè)控件或者窗體自身去實(shí)現(xiàn)這種通用的重復(fù)的功能。
#include "movewidget.h" #include "qevent.h" #include "qdebug.h" MoveWidget::MoveWidget(QObject *parent) : QObject(parent) { lastPoint = QPoint(0, 0); pressed = false; leftButton = true; inControl = true; widget = 0; } bool MoveWidget::eventFilter(QObject *watched, QEvent *event) { if (widget != 0 && watched == widget) { QMouseEvent *mouseEvent = (QMouseEvent *)event; if (mouseEvent->type() == QEvent::MouseButtonPress) { //如果限定了只能鼠標(biāo)左鍵拖動(dòng)則判斷當(dāng)前是否是鼠標(biāo)左鍵 if (leftButton && mouseEvent->button() != Qt::LeftButton) { return false; } //判斷控件的區(qū)域是否包含了當(dāng)前鼠標(biāo)的坐標(biāo) if (widget->rect().contains(mouseEvent->pos())) { lastPoint = mouseEvent->pos(); pressed = true; } } else if (mouseEvent->type() == QEvent::MouseMove && pressed) { //計(jì)算坐標(biāo)偏移值,調(diào)用move函數(shù)移動(dòng)過(guò)去 int offsetX = mouseEvent->pos().x() - lastPoint.x(); int offsetY = mouseEvent->pos().y() - lastPoint.y(); int x = widget->x() + offsetX; int y = widget->y() + offsetY; if (inControl) { //可以自行調(diào)整限定在容器中的范圍,這里默認(rèn)保留20個(gè)像素在里面 int offset = 20; bool xyOut = (x + widget->width() < offset || y + widget->height() < offset); bool whOut = false; QWidget *w = (QWidget *)widget->parent(); if (w != 0) { whOut = (w->width() - x < offset || w->height() - y < offset); } if (xyOut || whOut) { return false; } } widget->move(x, y); } else if (mouseEvent->type() == QEvent::MouseButtonRelease && pressed) { pressed = false; } } return QObject::eventFilter(watched, event); } void MoveWidget::setLeftButton(bool leftButton) { this->leftButton = leftButton; } void MoveWidget::setInControl(bool inControl) { this->inControl = inControl; } void MoveWidget::setWidget(QWidget *widget) { if (this->widget == 0) { this->widget = widget; this->widget->installEventFilter(this); } }
感謝各位的閱讀!關(guān)于“Qt如何實(shí)現(xiàn)通用控件移動(dòng)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!