// Copyright (C) 2015 LG Electronics Ltd, author: // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef SHMWINDOW_H #define SHMWINDOW_H #include class ShmWindow : public QRasterWindow { Q_OBJECT public: explicit ShmWindow(QWindow *parent); protected: void paintEvent(QPaintEvent *event) override; void timerEvent(QTimerEvent *) override; private: int m_rotation; int m_timer; }; #endif // SHMWINDOW_H