~mir-team/qtmir/trunk

« back to all changes in this revision

Viewing changes to src/modules/Unity/Application/application.h

  • Committer: CI Train Bot
  • Author(s): Daniel d'Andrada
  • Date: 2016-02-12 00:06:46 UTC
  • mfrom: (381.4.16 initialSurfaceGeom)
  • Revision ID: ci-train-bot@canonical.com-20160212000646-kcsjdiesdyazpp53
Let shell decide the initial surface size Fixes: #1532974
Approved by: Nick Dedekind

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
    bool isTouchApp() const override;
109
109
    bool exemptFromLifecycle() const override;
110
110
    void setExemptFromLifecycle(bool) override;
 
111
    QSize initialSurfaceSize() const override;
 
112
    void setInitialSurfaceSize(const QSize &size) override;
111
113
 
112
114
    void setStage(Stage stage);
113
115
 
188
190
    ProcessState m_processState;
189
191
    AbstractTimer *m_closeTimer;
190
192
    bool m_exemptFromLifecycle;
 
193
    QSize m_initialSurfaceSize;
191
194
 
192
195
    friend class ApplicationManager;
193
196
    friend class SessionManager;