DialPad
-
[quote author="Revu" date="1298978718"]@Andre:Thank you for your support but,one request please be polite to me.
[/quote]You're wasting peoples time with comments like this:
bq. Sorry I could not do that.. :(
So, step back and think about yourself before crying!
-
Here is the code to create a button with the digits(found in calculator example)
@ for (int i = 0; i < NumDigitButtons; ++i) {
digitButtons[i] = createButton(QString::number(i), SLOT(digitClicked()));
}
@to create buttons with alphabets,I tried using QString::QChar ch in place of QString::number(i).Is that right way to proceed further or any other idea?
-
Hi, I posted a reply to a similar question in the Qt Center, see this "link":http://www.qtcentre.org/threads/31501-Making-a-KeyBoard-into-LCD-connected-with-the-ARM-board.how-can-i?p=149618&highlight=#post149618. I am using QGraphicsView with QGraphicsItems.