src/hbcore/utils/hbfontspec.h
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 23 e6ad4ef83b23
equal deleted inserted replaced
9:730c025d4b77 15:f378acbc9cfb
    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)