~unity-team/unity-api/kbdLayout

« back to all changes in this revision

Viewing changes to include/unity/shell/application/MirSurfaceItemInterface.h

  • Committer: CI Train Bot
  • Author(s): Lukáš Tinkl, Michał Sawicz
  • Date: 2015-10-21 11:48:35 UTC
  • mfrom: (188.2.3 origin/liveCaption)
  • Revision ID: ci-train-bot@canonical.com-20151021114835-oxvcexkf1ze3cnpi
Notify about surface name changes
Approved by: PS Jenkins bot, Daniel d'Andrada

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    /**
60
60
     * @brief Name of the given surface or an empty string if no surface is set
61
61
     */
62
 
    Q_PROPERTY(QString name READ name CONSTANT)
 
62
    Q_PROPERTY(QString name READ name NOTIFY nameChanged)
63
63
 
64
64
    /**
65
65
     * @brief True if the item has a surface and that surface has a mir client bound to it.
141
141
    void consumesInputChanged(bool value);
142
142
    void surfaceWidthChanged(int value);
143
143
    void surfaceHeightChanged(int value);
 
144
    void nameChanged(const QString &name);
144
145
    /// @endcond
145
146
};
146
147