24 ****************************************************************************/ |
24 ****************************************************************************/ |
25 |
25 |
26 #include "hbstyleoptionmessagebox.h" |
26 #include "hbstyleoptionmessagebox.h" |
27 |
27 |
28 /*! |
28 /*! |
|
29 \this class is deprecated. |
29 \class HbStyleOptionMessageBox |
30 \class HbStyleOptionMessageBox |
30 \brief HbStyleOptionMessageBox has the style component for note primitives |
31 \brief HbStyleOptionMessageBox has the style component for note primitives |
31 */ |
32 */ |
32 |
33 |
|
34 |
|
35 /*! |
|
36 |
|
37 \deprecated HbStyleOptionMessageBox::HbStyleOptionMessageBox() |
|
38 is deprecated. Styleoptions will not be public. |
|
39 |
|
40 */ |
33 HbStyleOptionMessageBox::HbStyleOptionMessageBox() : |
41 HbStyleOptionMessageBox::HbStyleOptionMessageBox() : |
34 HbStyleOptionPopup(), |
42 HbStyleOptionPopup(), |
35 text(), |
43 text(), |
36 icon(), |
44 icon(), |
37 textAlignment(Qt::AlignLeft|Qt::AlignVCenter), |
45 textAlignment(Qt::AlignLeft|Qt::AlignVCenter), |
38 iconAlignment(Qt::AlignCenter), |
46 iconAlignment(Qt::AlignCenter), |
39 textWrapping(false) |
47 textWrapping(false) |
40 { |
48 { |
41 type = Type; |
49 type = Type; |
42 version = Version; |
50 version = Version; |
43 } |
51 } |
44 |
52 |
|
53 /*! |
|
54 |
|
55 \deprecated HbStyleOptionMessageBox::HbStyleOptionMessageBox(const HbStyleOptionMessageBox&) |
|
56 is deprecated. Styleoptions will not be public. |
|
57 |
|
58 */ |
45 HbStyleOptionMessageBox::HbStyleOptionMessageBox(const HbStyleOptionMessageBox &other) : |
59 HbStyleOptionMessageBox::HbStyleOptionMessageBox(const HbStyleOptionMessageBox &other) : |
46 HbStyleOptionPopup(other), |
60 HbStyleOptionPopup(other), |
47 text(other.text), |
61 text(other.text), |
48 icon(other.icon), |
62 icon(other.icon), |
49 textAlignment(other.textAlignment), |
63 textAlignment(other.textAlignment), |
50 iconAlignment(other.iconAlignment), |
64 iconAlignment(other.iconAlignment), |
51 textWrapping(other.textWrapping) |
65 textWrapping(other.textWrapping) |
52 { |
66 { |
53 type = Type; |
67 type = Type; |
54 version = Version; |
68 version = Version; |
55 } |
69 } |
56 |
70 |