Avoid polluting debug output in eglfs and linuxfb
Size hints will not be implemented. Grabs maybe some day but the warnings should be silenced for now. Change-Id: I1f4861454d45e668c4d758c7f82940cd1136d0c8 Reviewed-by: Jørgen Lind <jorgen.lind@digia.com>bb10
parent
77024a62fe
commit
b0d7e7b282
|
|
@ -55,17 +55,17 @@ public:
|
|||
QFbWindow(QWindow *window);
|
||||
~QFbWindow();
|
||||
|
||||
virtual void raise();
|
||||
virtual void lower();
|
||||
void raise() Q_DECL_OVERRIDE;
|
||||
void lower() Q_DECL_OVERRIDE;
|
||||
|
||||
virtual void setGeometry(const QRect &rect);
|
||||
virtual void setVisible(bool visible);
|
||||
void setGeometry(const QRect &rect) Q_DECL_OVERRIDE;
|
||||
void setVisible(bool visible) Q_DECL_OVERRIDE;
|
||||
|
||||
virtual void setWindowState(Qt::WindowState state);
|
||||
virtual void setWindowFlags(Qt::WindowFlags type);
|
||||
virtual Qt::WindowFlags windowFlags() const;
|
||||
void setWindowState(Qt::WindowState state) Q_DECL_OVERRIDE;
|
||||
void setWindowFlags(Qt::WindowFlags type) Q_DECL_OVERRIDE;
|
||||
Qt::WindowFlags windowFlags() const;
|
||||
|
||||
WId winId() const { return mWindowId; }
|
||||
WId winId() const Q_DECL_OVERRIDE { return mWindowId; }
|
||||
|
||||
void setBackingStore(QFbBackingStore *store) { mBackingStore = store; }
|
||||
QFbBackingStore *backingStore() const { return mBackingStore; }
|
||||
|
|
@ -74,6 +74,10 @@ public:
|
|||
|
||||
virtual void repaint(const QRegion&);
|
||||
|
||||
void propagateSizeHints() Q_DECL_OVERRIDE { }
|
||||
bool setKeyboardGrabEnabled(bool) Q_DECL_OVERRIDE { return false; }
|
||||
bool setMouseGrabEnabled(bool) Q_DECL_OVERRIDE { return false; }
|
||||
|
||||
protected:
|
||||
friend class QFbScreen;
|
||||
|
||||
|
|
|
|||
|
|
@ -65,6 +65,10 @@ public:
|
|||
void raise() Q_DECL_OVERRIDE;
|
||||
void lower() Q_DECL_OVERRIDE;
|
||||
|
||||
void propagateSizeHints() Q_DECL_OVERRIDE { }
|
||||
bool setKeyboardGrabEnabled(bool) Q_DECL_OVERRIDE { return false; }
|
||||
bool setMouseGrabEnabled(bool) Q_DECL_OVERRIDE { return false; }
|
||||
|
||||
QSurfaceFormat format() const Q_DECL_OVERRIDE;
|
||||
EGLNativeWindowType eglWindow() const Q_DECL_OVERRIDE;
|
||||
EGLSurface surface() const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue