~zsombi/ubuntu-ui-toolkit/listitemSelectModeBugs

« back to all changes in this revision

Viewing changes to src/Ubuntu/Components/plugin/uclabel.h

  • Committer: Zsombor Egri
  • Date: 2015-11-16 06:35:05 UTC
  • mfrom: (1664.1.1 listitemSelectModeBugs)
  • Revision ID: zsombor.egri@canonical.com-20151116063505-cwn2qfks7qzk10g9
re-sync

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
class UCLabel : public QQuickText, public UCThemingExtension
24
24
{
25
25
    Q_OBJECT
26
 
 
 
26
    Q_INTERFACES(UCThemingExtension)
27
27
    Q_ENUMS(TextSize)
28
 
    Q_PROPERTY(TextSize textSize MEMBER m_textSize WRITE setTextSize NOTIFY textSizeChanged FINAL REVISION 1)
 
28
    Q_PROPERTY(TextSize textSize MEMBER m_textSize WRITE setTextSize NOTIFY textSizeChanged FINAL)
29
29
 
30
30
    // Deprecated.
31
31
    Q_PROPERTY(QString fontSize READ fontSize WRITE setFontSize NOTIFY fontSizeChanged)
61
61
protected:
62
62
    // from QQuickItem
63
63
    void classBegin();
64
 
    void customEvent(QEvent *event);
65
64
 
66
65
    // from UCItemExtension
67
66
    void preThemeChanged(){}
68
67
    void postThemeChanged();
69
68
 
70
69
Q_SIGNALS:
71
 
    Q_REVISION(1) void textSizeChanged();
 
70
    void textSizeChanged();
72
71
 
73
72
    // Deprecated.
74
73
    void fontSizeChanged();