Lines Matching full:button
55 foreach (QPushButton *button, btns) { in QKeyBoard()
56 connect(button, SIGNAL(clicked()), this, SLOT(btn_clicked())); in QKeyBoard()
57 button->setFont(font); in QKeyBoard()
72 foreach (QPushButton *button, buttons) { in changeInputType()
73 if (button->property("btnLetter").toBool()) { in changeInputType()
75 button->setText(button->text().toUpper()); in changeInputType()
77 button->setText(button->text().toLower()); in changeInputType()
78 } else if(! button->objectName().compare("btnApostrophe")){ in changeInputType()
79 button->setText(on?"\"":"\'"); in changeInputType()
80 } else if(! button->objectName().compare("btnBackslash")){ in changeInputType()
81 button->setText(on?"|":"\\"); in changeInputType()
82 } else if(! button->objectName().compare("btnComma")){ in changeInputType()
83 button->setText(on?"<":","); in changeInputType()
84 } else if(! button->objectName().compare("btnDash")){ in changeInputType()
85 button->setText(on?"_":"-"); in changeInputType()
86 } else if(! button->objectName().compare("btnDot")){ in changeInputType()
87 button->setText(on?">":"."); in changeInputType()
88 } else if(! button->objectName().compare("btnEquals")){ in changeInputType()
89 button->setText(on?"+":"="); in changeInputType()
90 } else if(! button->objectName().compare("btnSemicolon")){ in changeInputType()
91 button->setText(on?":":";"); in changeInputType()
92 } else if(! button->objectName().compare("btnSlash")){ in changeInputType()
93 button->setText(on?"?":"/"); in changeInputType()
94 } else if(! button->objectName().compare("btnOther1")){ in changeInputType()
95 button->setText(on?"~":"`"); in changeInputType()
96 } else if(! button->objectName().compare("btnOther2")){ in changeInputType()
97 button->setText(on?"{":"["); in changeInputType()
98 } else if(! button->objectName().compare("btnOther3")){ in changeInputType()
99 button->setText(on?"}":"]"); in changeInputType()
100 } else if(! button->objectName().compare("btn1")){ in changeInputType()
101 button->setText(on?"!":"1"); in changeInputType()
102 } else if(! button->objectName().compare("btn2")){ in changeInputType()
103 button->setText(on?"@":"2"); in changeInputType()
104 } else if(! button->objectName().compare("btn3")){ in changeInputType()
105 button->setText(on?"#":"3"); in changeInputType()
106 } else if(! button->objectName().compare("btn4")){ in changeInputType()
107 button->setText(on?"$":"4"); in changeInputType()
108 } else if(! button->objectName().compare("btn5")){ in changeInputType()
109 button->setText(on?"%":"5"); in changeInputType()
110 } else if(! button->objectName().compare("btn6")){ in changeInputType()
111 button->setText(on?"^":"6"); in changeInputType()
112 } else if(! button->objectName().compare("btn7")){ in changeInputType()
113 button->setText(on?"&":"7"); in changeInputType()
114 } else if(! button->objectName().compare("btn8")){ in changeInputType()
115 button->setText(on?"*":"8"); in changeInputType()
116 } else if(! button->objectName().compare("btn9")){ in changeInputType()
117 button->setText(on?"(":"9"); in changeInputType()
118 } else if(! button->objectName().compare("btn0")){ in changeInputType()
119 button->setText(on?")":"0"); in changeInputType()
157 QPushButton *button = (QPushButton*)sender(); in btn_clicked() local
158 QString objectName = button->objectName(); in btn_clicked()
172 insertValue(button->text()); in btn_clicked()
184 if (event->button() == Qt::LeftButton) { in mousePressEvent()