Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi All,
Iam developing scientific calculator.
I want to know how to handle my calculator to get input from my keyboard, including Ctrl+C and Ctrl+V also just like in windows calculator.
ThankQ
handle? QKeySequence() class. To work with that use QAction() class as in menu (look for example in MainWindow/Menu Example)...
You can use it , for example :
@ void MainWindow::on_actionCopy_triggered() { ui->textEdit->copy(); } @
[EDIT: code formatting, please wrap in @-tags, Volker]