【Qt】Qt之Tab鍵切換焦點順序【轉】

簡介

Qt的窗口部件按用戶的習慣來處理鍵盤焦點。也就是說,其出發點是用戶的焦點能定向到任何一個窗口,或者窗口中任何一個部件。css

焦點獲取方式比較多,例如:鼠標點擊、Tab鍵切換、快捷鍵、鼠標滾輪等。markdown

習慣性的,咱們常常會使用Tab鍵來控制焦點順序,好比:用戶註冊時,我的信息輸入框焦點的切換、執行按鈕焦點的切換等。this

效果

這裏寫圖片描述

實現方式

接口說明:spa

static void QWidget::setTabOrder(QWidget * first, QWidget * second).net

Puts the second widget after the first widget in the focus order.code

也就是說,按下Tan鍵後,焦點會從第一個控件切換到第二個控件。blog

注意,若是第二個控件Tab順序改變,則應該這樣設置一個順序鏈:接口

//設置a、b、c、d順序
setTabOrder(a, b);  //a->b
setTabOrder(b, c);  //a->b->c
setTabOrder(c, d);  //a->b->c->d

而不是這樣:圖片

//錯誤
setTabOrder(c, d);  // c->d
setTabOrder(a, b);  // a->b 和 c->d
setTabOrder(b, c);  // a->b->c, 但不是c->d

源碼

這裏以三個按鈕如三個輸入框爲例,來講明Tab的順序。get

設置獲取焦點時的樣式,以便咱們更清楚的觀看效果。

QPushButton *pButton1 = new QPushButton(this);
QPushButton *pButton2 = new QPushButton(this);
QPushButton *pButton3 = new QPushButton(this);

QLineEdit *pLineEdit1 = new QLineEdit(this);
QLineEdit *pLineEdit2 = new QLineEdit(this);
QLineEdit *pLineEdit3 = new QLineEdit(this);

pButton1->setText("1");
pButton2->setText("3");
pButton3->setText("5");

pLineEdit1->setText("6");
pLineEdit2->setText("4");
pLineEdit3->setText("2");

pButton1->setStyleSheet("QPushButton:focus{border:none; background: green; color: white;}");
pButton2->setStyleSheet("QPushButton:focus{border:none; background: green; color: white;}");
pButton3->setStyleSheet("QPushButton:focus{border:none; background: green; color: white;}");

pLineEdit1->setStyleSheet("QLineEdit:focus{border:2px solid green;}");
pLineEdit2->setStyleSheet("QLineEdit:focus{border:2px solid green;}");
pLineEdit3->setStyleSheet("QLineEdit:focus{border:2px solid green;}");

QWidget::setTabOrder(pButton1, pLineEdit3);
QWidget::setTabOrder(pLineEdit3, pButton2);
QWidget::setTabOrder(pButton2, pLineEdit2);
QWidget::setTabOrder(pLineEdit2, pButton3);
QWidget::setTabOrder(pButton3, pLineEdit1);

就這樣,簡簡單單的一個接口解決了咱們的問題。有興趣的小夥伴能夠看下focusNextChild

 


原文做者:一去丶二三裏
做者博客:去做者博客空間
相關文章
相關標籤/搜索