~dandrader/qtubuntu/useApplicationStateAPI

« back to all changes in this revision

Viewing changes to src/ubuntumirclient/window.h

  • Committer: CI Train Bot
  • Author(s): Nick Dedekind
  • Date: 2015-11-09 22:43:16 UTC
  • mfrom: (286.1.1 qtubuntu)
  • Revision ID: ci-train-bot@canonical.com-20151109224316-7jccpq94kvpcokpt
Reverted occlusion detection (lp#1514556)
Approved by: PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    void setGeometry(const QRect&) override;
41
41
    void setWindowState(Qt::WindowState state) override;
42
42
    void setVisible(bool visible) override;
43
 
    bool isExposed() const override;
44
43
    void setWindowTitle(const QString &title) override;
45
44
 
46
45
    // New methods.
47
46
    void* eglSurface() const;
48
47
    void handleSurfaceResize(int width, int height);
49
48
    void handleSurfaceFocusChange(bool focused);
50
 
    void handleSurfaceExposeChange(bool visible);
51
49
    void onBuffersSwapped_threadSafe(int newBufferWidth, int newBufferHeight);
52
50
 
53
51
    UbuntuWindowPrivate* priv() { return d; }