equal
deleted
inserted
replaced
38 { |
38 { |
39 Q_GADGET |
39 Q_GADGET |
40 Q_ENUMS(Role) |
40 Q_ENUMS(Role) |
41 |
41 |
42 public: |
42 public: |
43 enum Role |
43 enum Role { |
44 { |
|
45 Undefined = 0, |
44 Undefined = 0, |
46 Primary, |
45 Primary, |
47 Secondary, |
46 Secondary, |
48 Title, |
47 Title, |
49 PrimarySmall, |
48 PrimarySmall, |
52 |
51 |
53 HbFontSpec(); |
52 HbFontSpec(); |
54 explicit HbFontSpec(HbFontSpec::Role role); |
53 explicit HbFontSpec(HbFontSpec::Role role); |
55 |
54 |
56 HbFontSpec(const HbFontSpec &other); |
55 HbFontSpec(const HbFontSpec &other); |
|
56 HbFontSpec(const QString fontName); |
57 HbFontSpec &operator=(const HbFontSpec &other); |
57 HbFontSpec &operator=(const HbFontSpec &other); |
58 |
58 |
59 ~HbFontSpec(); |
59 ~HbFontSpec(); |
60 |
60 |
61 bool isNull() const; |
61 bool isNull() const; |
70 |
70 |
71 operator QVariant() const; |
71 operator QVariant() const; |
72 bool operator==(const HbFontSpec &other) const; |
72 bool operator==(const HbFontSpec &other) const; |
73 bool operator!=(const HbFontSpec &other) const; |
73 bool operator!=(const HbFontSpec &other) const; |
74 |
74 |
|
75 QString typefaceFamily() const; |
|
76 void setTypefaceFamily(QString fontName); |
75 private: |
77 private: |
76 HbFontSpecPrivate *d; |
78 HbFontSpecPrivate *d; |
77 }; |
79 }; |
78 |
80 |
79 Q_DECLARE_METATYPE(HbFontSpec) |
81 Q_DECLARE_METATYPE(HbFontSpec) |