summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qt-namespace
ModeNameSize
-rw-r--r--main.cpp1560logstatsplain
-rw-r--r--qt-namespace.pro19logstatsplain
//! [1] setKey(0); // no signal emitted setKey(QKeySequence()); // no signal emitted setKey(0x3b1); // Greek letter alpha setKey(Qt::Key_D); // 'd', e.g. to delete setKey('q'); // 'q', e.g. to quit setKey(Qt::CTRL + Qt::Key_P); // Ctrl+P, e.g. to print document setKey("Ctrl+P"); // Ctrl+P, e.g. to print document //! [1]