C#include <QApplication>#include <QLabel> #include "shapedclock.h" int main(int argc, char *argv[]){ QApplication app(argc, argv); ShortCutter sc; ShapedClock clock; clock.show(); return app.exec();}
C#include <QApplication>#include <QEvent>#include <QObject> #include <QWidget> // глобальные клавиши#ifndef SHORTCUTTER_H_#define SHORTCUTTER_H_ class ShortCutter: public QObject{protected: bool eventFilter(QObject *obj, QEvent *ev) { //ловим и обрабатываем все события приложения return false; }public: ShortCutter() { QApplication::instance()->installEventFilter(this); }; virtual ~ShortCutter();}; #endif