26 #include <qdebug.h> |
26 #include <qdebug.h> |
27 |
27 |
28 //Qt widgets |
28 //Qt widgets |
29 #include <QtGui/qgroupbox.h> |
29 #include <QtGui/qgroupbox.h> |
30 #include <QtGui/qheaderview.h> |
30 #include <QtGui/qheaderview.h> |
31 #include <QtGui/qlistwidget.h> |
|
32 #include <QtGui/qlistview.h> |
31 #include <QtGui/qlistview.h> |
33 #include <QtGui/qpushbutton.h> |
32 #include <QtGui/qpushbutton.h> |
34 #include <QtGui/qscrollbar.h> |
33 #include <QtGui/qscrollbar.h> |
35 #include <QtGui/qtabbar.h> |
34 #include <QtGui/qtabbar.h> |
36 #include <QtGui/qtableview.h> |
35 #include <QtGui/qtableview.h> |
37 #include <QtGui/qtablewidget.h> |
|
38 #include <QtGui/qtreeview.h> |
36 #include <QtGui/qtreeview.h> |
39 #include <QtGui/qtreewidget.h> |
|
40 #include <QtGui/qtextedit.h> |
37 #include <QtGui/qtextedit.h> |
41 #include <QtGui/qtoolbar.h> |
38 #include <QtGui/qtoolbar.h> |
42 #include <QtGui/qtoolbutton.h> |
39 #include <QtGui/qtoolbutton.h> |
43 #include <QtGui/qradiobutton.h> |
40 #include <QtGui/qradiobutton.h> |
44 #include <QtGui/qcheckbox.h> |
41 #include <QtGui/qcheckbox.h> |
371 } |
368 } |
372 } |
369 } |
373 break; |
370 break; |
374 } |
371 } |
375 case CE_ItemViewItem: { |
372 case CE_ItemViewItem: { |
|
373 //@todo: headerviews and listviews should show selection tick at the beginning of the row (in place of checkbox rect) |
|
374 //@todo: headerview should select also parent when child is selected |
|
375 //@todo: headerview should draw highlight rect |
376 if (const QStyleOptionViewItemV4 *itemOption = qstyleoption_cast<const QStyleOptionViewItemV4 *>(option)) { |
376 if (const QStyleOptionViewItemV4 *itemOption = qstyleoption_cast<const QStyleOptionViewItemV4 *>(option)) { |
377 const QRect checkRect = subElementRect(SE_ItemViewItemCheckIndicator, itemOption, widget); |
377 const QRect checkRect = subElementRect(SE_ItemViewItemCheckIndicator, itemOption, widget); |
378 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, itemOption, widget); |
378 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, itemOption, widget); |
379 QRect textRect = subElementRect(SE_ItemViewItemText, itemOption, widget); |
379 QRect textRect = subElementRect(SE_ItemViewItemText, itemOption, widget); |
380 |
380 |
381 //background for list items (other itemviews use PE_PanelItemViewRow drawing) |
381 //background for list items (other itemviews use PE_PanelItemViewRow drawing) |
382 if (qobject_cast<const QListWidget *>(widget)) |
382 if (qobject_cast<const QListView *>(widget)) |
383 proxy()->drawPrimitive(PE_PanelItemViewItem, itemOption, painter, widget); |
383 proxy()->drawPrimitive(PE_PanelItemViewItem, itemOption, painter, widget); |
384 |
384 |
385 //checkbox |
385 //checkbox |
386 if (itemOption->features & QStyleOptionViewItemV2::HasCheckIndicator && checkRect.isValid()) { |
386 if (itemOption->features & QStyleOptionViewItemV2::HasCheckIndicator && checkRect.isValid()) { |
387 QStyleOptionViewItemV4 checkOption; |
387 QStyleOptionViewItemV4 checkOption; |
879 switch (control) { |
879 switch (control) { |
880 #ifndef QT_NO_COMBOBOX |
880 #ifndef QT_NO_COMBOBOX |
881 case CC_ComboBox: { |
881 case CC_ComboBox: { |
882 if (const QStyleOptionComboBox *cmb = qstyleoption_cast<const QStyleOptionComboBox *>(option)) { |
882 if (const QStyleOptionComboBox *cmb = qstyleoption_cast<const QStyleOptionComboBox *>(option)) { |
883 const QRect cmbxFrame = cmb->rect; |
883 const QRect cmbxFrame = cmb->rect; |
884 ItemStates state = SS_Active; |
884 |
|
885 const bool isDisabled = !(cmb->state & State_Enabled); |
|
886 ItemStates state = (isDisabled) ? SS_Disabled : SS_Active; |
|
887 |
|
888 if (cmb->state & State_Active && |
|
889 cmb->state & State_Enabled && |
|
890 !cmb->state & State_HasFocus && |
|
891 !cmb->state & State_MouseOver && |
|
892 !cmb->state & State_Selected) { |
|
893 state |= SS_Active; |
|
894 } |
|
895 if (cmb->state & State_Active && |
|
896 cmb->state & State_Enabled && |
|
897 cmb->state & State_On && |
|
898 !cmb->state & State_HasFocus && |
|
899 !cmb->state & State_MouseOver && |
|
900 !cmb->state & State_Selected) { |
|
901 state |= SS_Active; |
|
902 } |
|
903 else if (cmb->state & State_Active && |
|
904 cmb->state & State_Enabled && |
|
905 cmb->state & State_HasFocus && |
|
906 cmb->state & State_MouseOver && |
|
907 cmb->state & State_Selected) { |
|
908 state |= SS_Pressed; |
|
909 } |
|
910 else if (cmb->state & State_Active && |
|
911 cmb->state & State_Enabled && |
|
912 cmb->state & State_HasFocus && |
|
913 cmb->state & State_MouseOver) { |
|
914 state |= SS_Pressed; |
|
915 } |
|
916 /* else if (cmb->state & State_Active && |
|
917 cmb->state & State_Enabled && |
|
918 cmb->state & State_Sunken) { |
|
919 state |= SS_Pressed; |
|
920 }*/ |
885 |
921 |
886 // Button frame |
922 // Button frame |
887 QStyleOptionFrame buttonOption; |
923 QStyleOptionFrame buttonOption; |
888 buttonOption.QStyleOption::operator=(*cmb); |
924 buttonOption.QStyleOption::operator=(*cmb); |
889 const int buttonMaxHeight = cmbxFrame.height(); |
925 const int buttonMaxHeight = cmbxFrame.height(); |
890 const int buttonMaxWidth = buttonMaxHeight; //button is rect |
926 const int buttonMaxWidth = buttonMaxHeight; //button is rect |
891 const int topLeftPoint = (cmb->direction == Qt::LeftToRight) ? (cmbxFrame.width() - buttonMaxWidth) : 0; |
927 const int topLeftPoint = (cmb->direction == Qt::LeftToRight) ? (cmbxFrame.width() - buttonMaxWidth) : 0; |
892 |
928 |
893 const QRect buttonRect(topLeftPoint, cmbxFrame.top(), buttonMaxHeight, buttonMaxWidth); |
929 const QRect buttonRect(topLeftPoint, cmbxFrame.top(), buttonMaxHeight, buttonMaxWidth); |
894 buttonOption.rect = buttonRect; |
930 if (cmb->direction == Qt::RightToLeft){ |
895 buttonOption.state = cmb->state; |
931 |
896 ItemStates buttonState = (buttonOption.state & State_Sunken) ? ItemStates(SS_Pressed | SS_Active) : ItemStates(SS_Active); |
932 state |= SS_Mirrored; |
897 if (cmb->direction == Qt::RightToLeft) |
933 } |
898 buttonState |= SS_Mirrored; |
|
899 if (buttonOption.state & State_HasFocus) { |
|
900 buttonState |= SS_Selected; |
|
901 state |= SS_Selected; //set frame status to follow button status for highlight |
|
902 } |
|
903 |
|
904 m_private->drawItem(SP_BoxButton, painter, buttonRect.adjusted(0, 1, 0, -1), buttonState); //@todo: remove magic |
|
905 |
934 |
906 if (cmb->subControls & SC_ComboBoxFrame) { |
935 if (cmb->subControls & SC_ComboBoxFrame) { |
907 const bool isDisabled = !(cmb->state & State_Enabled); |
936 |
908 const bool isPressed = (cmb->state & State_Sunken); |
|
909 const bool isEditable = cmb->editable; |
|
910 |
|
911 if (isDisabled) |
|
912 state = SS_Disabled; |
|
913 else if (isPressed) |
|
914 state |= SS_Pressed; |
|
915 if (isEditable) |
|
916 state |= SS_Edited; |
|
917 QRect frameRect = QRect(cmb->rect); |
937 QRect frameRect = QRect(cmb->rect); |
918 int frameWidth = pixelMetric(PM_DefaultFrameWidth); |
938 int frameWidth = pixelMetric(PM_DefaultFrameWidth); |
919 int maxRight = cmb->rect.height() - 2 * frameWidth; |
939 int maxRight = cmb->rect.height() - 2 * frameWidth; |
920 frameRect.adjust(0, 0, -maxRight, 0); |
940 frameRect.adjust(0, 0, -maxRight, 0); |
921 int adjustX = 0; |
941 |
922 if (option->direction == Qt::RightToLeft) { |
|
923 adjustX = buttonOption.rect.topRight().x(); |
|
924 state |= SS_Mirrored; |
|
925 } |
|
926 const QRect frame = subControlRect(CC_ComboBox, option, SC_ComboBoxFrame, widget); |
942 const QRect frame = subControlRect(CC_ComboBox, option, SC_ComboBoxFrame, widget); |
927 // @todo: if SC_ComboBoxFrame needs adjusting, move that code to subControlRect |
943 //Draw the frame |
928 m_private->drawMultiPartItem(SM_BoxFrame, painter, frame.adjusted(adjustX, 1, -4 + adjustX, -1), state); |
944 m_private->drawMultiPartItem(SM_BoxFrame, painter, frame, state); |
929 } |
945 } |
|
946 //Draw the dropdown button |
|
947 m_private->drawItem(SP_BoxButton, painter, buttonRect, state); //@todo: remove magic |
930 } |
948 } |
931 break; |
949 break; |
932 } |
950 } |
933 #endif //QT_NO_COMBOBOX |
951 #endif //QT_NO_COMBOBOX |
934 #ifndef QT_NO_SLIDER |
952 #ifndef QT_NO_SLIDER |
1006 if (nextInterval < v) |
1024 if (nextInterval < v) |
1007 break; |
1025 break; |
1008 v = nextInterval; |
1026 v = nextInterval; |
1009 } |
1027 } |
1010 } |
1028 } |
1011 QRect filledRect; |
1029 |
1012 if ( horizontal ){ |
1030 QRect filledRect; |
1013 const int sliderPosition = sliderHandle.center().x(); |
1031 QRect filledRectMask; |
1014 const int sliderWidth = sliderHandle.width()/2; |
1032 if ( horizontal ){ |
1015 if (slider && (slider->layoutDirection() == Qt::LeftToRight) ^ slider->invertedAppearance()){ |
1033 if (slider && (slider->layoutDirection() == Qt::LeftToRight) ^ slider->invertedAppearance()){ |
1016 filledRect = QRect(sliderGroove.x(), sliderGroove.y(), sliderPosition+sliderWidth, sliderGroove.height()); |
1034 filledRect = QRect( sliderGroove.x(), |
1017 } else { |
1035 sliderGroove.y(), |
1018 filledRect = QRect(sliderGroove.x()+sliderPosition-sliderWidth, sliderGroove.y(), sliderGroove.width()-sliderPosition+sliderWidth, sliderGroove.height()); |
1036 qMax(sliderGroove.width()-sliderHandle.right(), sliderHandle.right()), |
1019 } |
1037 sliderGroove.height()); |
1020 } else { |
1038 |
1021 const int sliderPosition = sliderHandle.center().y(); |
1039 int x = qMin(sliderHandle.left(), sliderGroove.x() + sliderGroove.width()-sliderHandle.right()); |
1022 const int sliderHeight = sliderHandle.height()/2; |
1040 filledRectMask = QRect(x, |
1023 if (slider && (slider->layoutDirection() == Qt::LeftToRight) ^ slider->invertedAppearance()){ |
1041 sliderGroove.y(), |
1024 filledRect = QRect(sliderGroove.x(), sliderGroove.y()+sliderPosition-sliderHeight, sliderGroove.width(), sliderGroove.height()-sliderPosition+sliderHeight); |
1042 sliderGroove.width()-x, |
1025 } else { |
1043 sliderGroove.height()); |
1026 filledRect = QRect(sliderGroove.x(), sliderGroove.y(), sliderGroove.width(), sliderPosition+sliderHeight); |
1044 } else { |
1027 } |
1045 filledRect = QRect( qMin(sliderGroove.width()-sliderHandle.left(),sliderHandle.left()), |
1028 } |
1046 sliderGroove.y(), |
1029 |
1047 qMax(sliderGroove.width()-sliderHandle.left(), sliderHandle.left()), |
1030 //Groove |
1048 sliderGroove.height()); |
1031 m_private->drawMultiPartItem(SM_SliderGroove, painter, sliderGroove, grooveState); |
1049 |
1032 |
1050 filledRectMask = QRect( sliderGroove.x(), |
1033 //Progress |
1051 sliderGroove.y(), |
1034 m_private->drawMultiPartItem(SM_SliderProgress, painter, filledRect, grooveState | SS_Filled); |
1052 qMax(sliderGroove.width()-sliderHandle.right(), sliderHandle.right()), |
1035 |
1053 sliderGroove.height()); |
1036 //handle |
1054 |
|
1055 } |
|
1056 } else { |
|
1057 if (slider && (slider->layoutDirection() == Qt::LeftToRight) ^ slider->invertedAppearance()){ |
|
1058 filledRect = QRect(sliderGroove.x(), |
|
1059 qMin(sliderGroove.height()-sliderHandle.top(), sliderHandle.top()), |
|
1060 sliderGroove.width(), |
|
1061 qMax(sliderGroove.height()-sliderHandle.top(), sliderHandle.top())); |
|
1062 |
|
1063 filledRectMask = QRect(sliderGroove.x(), |
|
1064 sliderGroove.y(), |
|
1065 sliderGroove.width(), |
|
1066 qMax(sliderGroove.height()-sliderHandle.bottom(), sliderHandle.bottom())); |
|
1067 } else { |
|
1068 filledRect = QRect(sliderGroove.x(), |
|
1069 sliderGroove.y(), |
|
1070 sliderGroove.width(), |
|
1071 qMax(sliderGroove.height()-sliderHandle.bottom(),sliderHandle.bottom())); |
|
1072 |
|
1073 int y = qMin(sliderHandle.top(), sliderGroove.y() + sliderGroove.height()-sliderHandle.bottom()); |
|
1074 filledRectMask = QRect( sliderGroove.x(), |
|
1075 y, |
|
1076 sliderGroove.width(), |
|
1077 sliderGroove.height()-y ); |
|
1078 } |
|
1079 } |
|
1080 |
|
1081 if (filledRect.width() < filledRectMask.width() || filledRect.height() < filledRectMask.height()){ |
|
1082 // Progress + groove |
|
1083 m_private->drawMultiPartItem(SM_SliderGroove, painter, filledRect, grooveState ); |
|
1084 m_private->drawMultiPartItem(SM_SliderProgress, painter, filledRect, grooveState | SS_Filled); |
|
1085 |
|
1086 // Groove |
|
1087 m_private->drawMultiPartItem(SM_SliderGroove, painter, filledRectMask, grooveState); |
|
1088 } else { |
|
1089 // Groove |
|
1090 m_private->drawMultiPartItem(SM_SliderGroove, painter, filledRectMask, grooveState); |
|
1091 |
|
1092 // Progess + groove |
|
1093 m_private->drawMultiPartItem(SM_SliderGroove, painter, filledRect, grooveState ); |
|
1094 m_private->drawMultiPartItem(SM_SliderProgress, painter, filledRect, grooveState | SS_Filled); |
|
1095 } |
|
1096 |
|
1097 //handle |
1037 m_private->drawItem(SP_SliderHandle, painter, sliderHandle, handleState); |
1098 m_private->drawItem(SP_SliderHandle, painter, sliderHandle, handleState); |
1038 } |
1099 } |
1039 break; |
1100 break; |
1040 } |
1101 } |
1041 #endif //QT_NO_SLIDER |
1102 #endif //QT_NO_SLIDER |
1192 const QRect spinboxFrame = subControlRect(control, optionSpinbox, SC_SpinBoxFrame, widget); |
1253 const QRect spinboxFrame = subControlRect(control, optionSpinbox, SC_SpinBoxFrame, widget); |
1193 const QRect spinboxButtonUpRect = subControlRect(control, optionSpinbox, SC_SpinBoxUp, widget); |
1254 const QRect spinboxButtonUpRect = subControlRect(control, optionSpinbox, SC_SpinBoxUp, widget); |
1194 const QRect spinboxButtonDownRect = subControlRect(control, optionSpinbox, SC_SpinBoxDown, widget); |
1255 const QRect spinboxButtonDownRect = subControlRect(control, optionSpinbox, SC_SpinBoxDown, widget); |
1195 const QRect spinboxEditorRect = subControlRect(control, optionSpinbox, SC_SpinBoxEditField, widget); |
1256 const QRect spinboxEditorRect = subControlRect(control, optionSpinbox, SC_SpinBoxEditField, widget); |
1196 |
1257 |
1197 QStyleOptionSpinBox copy = *optionSpinbox; |
|
1198 |
|
1199 //Frame & background |
1258 //Frame & background |
1200 const bool isDisabled = !(optionSpinbox->state & State_Enabled); |
1259 const bool isDisabled = !(optionSpinbox->state & State_Enabled); |
1201 ItemStates state = (isDisabled) ? SS_Disabled : SS_Active; |
1260 ItemStates state = (isDisabled) ? SS_Disabled : SS_Active; |
1202 if (optionSpinbox->state & State_HasFocus) |
1261 if (optionSpinbox->state & State_HasFocus) |
1203 state |= SS_Selected; |
1262 state |= SS_Selected; |
1204 m_private->drawMultiPartItem(SM_BoxFrame, painter, spinboxEditorRect, state); |
1263 //Draw the rounded border of edit field frame under button, half spin button width |
1205 |
1264 //Label drawn to spinboxEditorRect |
|
1265 m_private->drawMultiPartItem(SM_BoxFrame, painter, spinboxEditorRect.adjusted((-0.5*spinboxButtonDownRect.width()),0,0,0), state); |
|
1266 |
|
1267 |
|
1268 QStyle::State buttonState; |
1206 //Buttons |
1269 //Buttons |
1207 if (optionSpinbox->subControls & SC_SpinBoxUp) { |
1270 if (optionSpinbox->subControls & SC_SpinBoxUp) { |
1208 copy.subControls = SC_SpinBoxUp; |
|
1209 if (!(optionSpinbox->stepEnabled & QAbstractSpinBox::StepUpEnabled)) |
1271 if (!(optionSpinbox->stepEnabled & QAbstractSpinBox::StepUpEnabled)) |
1210 copy.state &= ~State_Enabled; |
1272 buttonState &= ~State_Enabled; |
1211 if (optionSpinbox->activeSubControls == SC_SpinBoxUp && (optionSpinbox->state & State_Sunken)) { |
1273 if (optionSpinbox->activeSubControls == SC_SpinBoxUp && (optionSpinbox->state & State_Sunken)) { |
1212 copy.state |= State_On; |
1274 buttonState |= State_On; |
1213 copy.state |= State_Sunken; |
1275 buttonState |= State_Sunken; |
1214 } else { |
1276 } else { |
1215 copy.state |= State_Raised; |
1277 buttonState |= State_Raised; |
1216 copy.state &= ~State_Sunken; |
1278 buttonState &= ~State_Sunken; |
1217 } |
1279 } |
1218 const bool isPressed = (copy.state & State_Sunken); |
1280 const bool isPressed = (buttonState & State_Sunken); |
1219 ItemStates upButtonState = (isPressed) ? ItemStates(SS_Pressed | SS_Active) : ItemStates(SS_Active); |
1281 ItemStates upButtonState = (isPressed) ? ItemStates(SS_Pressed | SS_Active) : ItemStates(SS_Active); |
1220 if (optionSpinbox->direction == Qt::RightToLeft) |
1282 if (optionSpinbox->direction == Qt::RightToLeft) |
1221 upButtonState = upButtonState | SS_Flipped; |
1283 upButtonState = upButtonState | SS_Flipped; |
1222 else |
1284 else |
1223 upButtonState = upButtonState | SS_Flipped | SS_Mirrored; |
1285 upButtonState = upButtonState | SS_Flipped | SS_Mirrored; |
1224 if (optionSpinbox->state & State_HasFocus) |
1286 if (optionSpinbox->state & State_HasFocus) |
1225 upButtonState |= SS_Selected; |
1287 upButtonState |= SS_Selected; |
1226 if (!(copy.state & State_Enabled)) |
1288 if (!(optionSpinbox->stepEnabled & QAbstractSpinBox::StepUpEnabled)) |
1227 upButtonState |= SS_Disabled; |
1289 upButtonState |= SS_Disabled; |
1228 m_private->drawItem(SP_BoxButton, painter, spinboxButtonUpRect, upButtonState); |
1290 m_private->drawItem(SP_BoxButton, painter, spinboxButtonUpRect, upButtonState); |
1229 } |
1291 } |
1230 |
1292 |
1231 if (optionSpinbox->subControls & SC_SpinBoxDown) { |
1293 if (optionSpinbox->subControls & SC_SpinBoxDown) { |
1232 copy.subControls = SC_SpinBoxDown; |
|
1233 if (!(optionSpinbox->stepEnabled & QAbstractSpinBox::StepDownEnabled)) |
1294 if (!(optionSpinbox->stepEnabled & QAbstractSpinBox::StepDownEnabled)) |
1234 copy.state &= ~State_Enabled; |
1295 buttonState &= ~State_Enabled; |
1235 if (optionSpinbox->activeSubControls == SC_SpinBoxDown && (optionSpinbox->state & State_Sunken)) { |
1296 if (optionSpinbox->activeSubControls == SC_SpinBoxDown && (optionSpinbox->state & State_Sunken)) { |
1236 copy.state |= State_On; |
1297 buttonState |= State_On; |
1237 copy.state |= State_Sunken; |
1298 buttonState |= State_Sunken; |
1238 } else { |
1299 } else { |
1239 copy.state |= State_Raised; |
1300 buttonState |= State_Raised; |
1240 copy.state &= ~State_Sunken; |
1301 buttonState &= ~State_Sunken; |
1241 } |
1302 } |
1242 const bool isPressed = (copy.state & State_Sunken); |
1303 const bool isPressed = (buttonState & State_Sunken); |
1243 ItemStates downButtonState = (isPressed) ? ItemStates(SS_Pressed | SS_Active) : ItemStates(SS_Active); |
1304 ItemStates downButtonState = (isPressed) ? ItemStates(SS_Pressed | SS_Active) : ItemStates(SS_Active); |
1244 if (optionSpinbox->direction == Qt::RightToLeft) |
1305 if (optionSpinbox->direction == Qt::RightToLeft) |
1245 downButtonState = downButtonState; |
1306 downButtonState = downButtonState; |
1246 else |
1307 else |
1247 downButtonState = downButtonState | SS_Mirrored; |
1308 downButtonState = downButtonState | SS_Mirrored; |
1248 if (optionSpinbox->state & State_HasFocus) |
1309 if (optionSpinbox->state & State_HasFocus) |
1249 downButtonState |= SS_Selected; |
1310 downButtonState |= SS_Selected; |
1250 if (!(copy.state & State_Enabled)) |
1311 if (!(optionSpinbox->stepEnabled & QAbstractSpinBox::StepDownEnabled)) |
1251 downButtonState |= SS_Disabled; |
1312 downButtonState |= SS_Disabled; |
1252 m_private->drawItem(SP_BoxButton, painter, spinboxButtonDownRect, downButtonState); |
1313 m_private->drawItem(SP_BoxButton, painter, spinboxButtonDownRect, downButtonState); |
1253 } |
1314 } |
1254 } |
1315 } |
1255 break; |
1316 break; |
1299 QRect QHbStyle::subElementRect(SubElement element, const QStyleOption *option, const QWidget *widget) const |
1360 QRect QHbStyle::subElementRect(SubElement element, const QStyleOption *option, const QWidget *widget) const |
1300 { |
1361 { |
1301 const QRect baseSize = QCommonStyle::subElementRect(element, option, widget); |
1362 const QRect baseSize = QCommonStyle::subElementRect(element, option, widget); |
1302 QRect elementSize = baseSize; |
1363 QRect elementSize = baseSize; |
1303 switch (element) { |
1364 switch (element) { |
|
1365 case SE_LineEditContents: { |
|
1366 qreal metric = 0; |
|
1367 m_private->styleManager()->parameter(QLatin1String("hb-param-margin-gene-middle-horizontal"), metric); |
|
1368 const int metricValue = metric + 0.5; |
|
1369 elementSize = visualRect( |
|
1370 option->direction, option->rect, option->rect.adjusted(metricValue, 0, 0, 0)); |
|
1371 } |
|
1372 break; |
1304 case SE_ItemViewItemText: { |
1373 case SE_ItemViewItemText: { |
1305 if (const QStyleOptionMenuItem *menuItem = qstyleoption_cast<const QStyleOptionMenuItem *>(option)) { |
1374 if (const QStyleOptionMenuItem *menuItem = qstyleoption_cast<const QStyleOptionMenuItem *>(option)) { |
1306 elementSize = menuItem->rect; |
1375 elementSize = menuItem->rect; |
1307 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, option, widget); |
1376 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, option, widget); |
1308 const QRect checkBoxRect = subElementRect(SE_ViewItemCheckIndicator, option, widget); |
1377 const QRect checkBoxRect = subElementRect(SE_ViewItemCheckIndicator, option, widget); |
1314 totalXMod += indicatorSpacing; |
1383 totalXMod += indicatorSpacing; |
1315 elementSize.translate(totalXMod, 0); |
1384 elementSize.translate(totalXMod, 0); |
1316 elementSize.setWidth(menuItem->rect.width() - widthMod); |
1385 elementSize.setWidth(menuItem->rect.width() - widthMod); |
1317 } else if (const QStyleOptionViewItemV4 *itemView = qstyleoption_cast<const QStyleOptionViewItemV4 *>(option)) { |
1386 } else if (const QStyleOptionViewItemV4 *itemView = qstyleoption_cast<const QStyleOptionViewItemV4 *>(option)) { |
1318 elementSize = itemView->rect; |
1387 elementSize = itemView->rect; |
1319 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, option, widget); |
1388 if (itemView->decorationPosition == QStyleOptionViewItem::Left || |
1320 const QRect checkBoxRect = subElementRect(SE_ViewItemCheckIndicator, option, widget); |
1389 itemView->decorationPosition == QStyleOptionViewItem::Right) { |
1321 const int indicatorSpacing = proxy()->pixelMetric(PM_LayoutHorizontalSpacing, option, widget); |
1390 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, option, widget); |
1322 int totalXMod = qMax(0, qMax((checkBoxRect.isValid() ? checkBoxRect.topRight().x() : 0), |
1391 const QRect checkBoxRect = subElementRect(SE_ViewItemCheckIndicator, option, widget); |
1323 (iconRect.isValid() ? iconRect.topRight().x() : 0))); |
1392 const int indicatorSpacing = proxy()->pixelMetric(PM_LayoutHorizontalSpacing, option, widget); |
1324 const int widthMod = checkBoxRect.width() + iconRect.width() + indicatorSpacing; |
1393 int totalXMod = qMax(0, qMax((checkBoxRect.isValid() ? checkBoxRect.topRight().x() : 0), |
1325 totalXMod = (itemView->direction == Qt::LeftToRight) ? qMax(0, totalXMod - elementSize.topLeft().x()): 0; |
1394 (iconRect.isValid() ? iconRect.topRight().x() : 0))); |
1326 totalXMod += indicatorSpacing; |
1395 const int widthMod = checkBoxRect.width() + iconRect.width() + indicatorSpacing; |
1327 elementSize.translate(totalXMod, 0); |
1396 totalXMod = (itemView->direction == Qt::LeftToRight) ? qMax(0, totalXMod - elementSize.topLeft().x()): 0; |
1328 elementSize.setWidth(itemView->rect.width() - widthMod); |
1397 totalXMod += indicatorSpacing; |
1329 elementSize = visualRect(itemView->direction, itemView->rect, elementSize); |
1398 elementSize.translate(totalXMod, 0); |
|
1399 elementSize.setWidth(itemView->rect.width() - widthMod); |
|
1400 elementSize = visualRect(itemView->direction, itemView->rect, elementSize); |
|
1401 } else { |
|
1402 const QRect iconRect = subElementRect(SE_ItemViewItemDecoration, option, widget); |
|
1403 const bool decoratorOnTop = (itemView->decorationPosition == QStyleOptionViewItem::Top); |
|
1404 if (decoratorOnTop) |
|
1405 elementSize.translate(0, iconRect.height()); |
|
1406 else |
|
1407 elementSize.translate(0, -iconRect.height()); |
|
1408 } |
1330 } |
1409 } |
1331 break; |
1410 break; |
1332 } |
1411 } |
1333 case SE_ViewItemCheckIndicator: { |
1412 case SE_ViewItemCheckIndicator: { |
1334 if (const QStyleOptionMenuItem *menuItem = qstyleoption_cast<const QStyleOptionMenuItem *>(option)) { |
1413 if (const QStyleOptionMenuItem *menuItem = qstyleoption_cast<const QStyleOptionMenuItem *>(option)) { |
1421 } |
1500 } |
1422 case SC_ComboBoxFrame: { |
1501 case SC_ComboBoxFrame: { |
1423 QRect frameRect = QRect(cmb->rect); |
1502 QRect frameRect = QRect(cmb->rect); |
1424 int frameWidth = pixelMetric(PM_DefaultFrameWidth, cmb, widget); |
1503 int frameWidth = pixelMetric(PM_DefaultFrameWidth, cmb, widget); |
1425 int maxRight = cmb->rect.height() - 2 * frameWidth; |
1504 int maxRight = cmb->rect.height() - 2 * frameWidth; |
1426 frameRect.adjust(0, 0, -maxRight, 0); |
1505 if(cmb->direction == Qt::RightToLeft) { |
|
1506 frameRect.adjust(+ 0.25 * buttonWidth, 0, -0.25 * buttonWidth, 0); |
|
1507 }else{ |
|
1508 frameRect.adjust(0, 0, -maxRight-4, 0); |
|
1509 } |
1427 elementSize = frameRect; |
1510 elementSize = frameRect; |
1428 break; |
1511 break; |
1429 } |
1512 } |
1430 case SC_ComboBoxEditField: { |
1513 case SC_ComboBoxEditField: { |
1431 const int withFrameX = cmb->rect.x() + cmb->rect.width() - frameThickness - buttonSize.width(); |
1514 int withFrameX = 0; |
|
1515 int offSet = 0; |
|
1516 if(cmb->direction == Qt::RightToLeft) { |
|
1517 withFrameX = cmb->rect.x() + cmb->rect.width() - frameThickness; |
|
1518 offSet = buttonWidth; |
|
1519 } |
|
1520 else{ |
|
1521 withFrameX = cmb->rect.x() + cmb->rect.width() - frameThickness - buttonSize.width(); |
|
1522 } |
1432 elementSize = QRect( |
1523 elementSize = QRect( |
1433 frameThickness, |
1524 frameThickness + offSet, |
1434 frameThickness - 2, |
1525 frameThickness - 2, |
1435 withFrameX - frameThickness, |
1526 withFrameX - frameThickness - offSet, |
1436 cmb->rect.height() - 2 * frameThickness ); |
1527 cmb->rect.height() - 2 * frameThickness ); |
1437 break; |
1528 break; |
1438 } |
1529 } |
1439 case SC_ComboBoxListBoxPopup: { |
1530 case SC_ComboBoxListBoxPopup: { |
1440 QRect mover = cmb->rect; |
1531 QRect mover = cmb->rect; |
1646 #endif //QT_NO_SLIDER |
1737 #endif //QT_NO_SLIDER |
1647 #ifndef QT_NO_SPINBOX |
1738 #ifndef QT_NO_SPINBOX |
1648 case CC_SpinBox: { |
1739 case CC_SpinBox: { |
1649 if (const QStyleOptionSpinBox *spinbox = qstyleoption_cast<const QStyleOptionSpinBox *>(option)) { |
1740 if (const QStyleOptionSpinBox *spinbox = qstyleoption_cast<const QStyleOptionSpinBox *>(option)) { |
1650 const int buttonIconSize = pixelMetric(PM_ButtonIconSize); |
1741 const int buttonIconSize = pixelMetric(PM_ButtonIconSize); |
1651 const int buttonWidth = qMax(spinbox->rect.height(), buttonIconSize); |
1742 // Spinbox buttons should be no larger than one fourth of total width. |
|
1743 const int maxSize = qMax(spinbox->rect.width() / 4, buttonIconSize + 4); //@magic |
|
1744 QSize buttonSize; |
|
1745 buttonSize.setHeight(qMin(maxSize, qMax(8, spinbox->rect.height()))); |
|
1746 buttonSize.setWidth(buttonSize.height()); //make buttons square |
|
1747 |
1652 switch (sc) { |
1748 switch (sc) { |
1653 case SC_SpinBoxFrame: |
1749 case SC_SpinBoxFrame: |
1654 elementSize = option->rect.adjusted(0, 0, -buttonWidth + 5, 0); |
1750 elementSize = option->rect.adjusted(0, 0, -buttonSize.width() + 5, 0); //@magic |
1655 break; |
1751 break; |
1656 case SC_SpinBoxDown: { |
1752 case SC_SpinBoxDown: { |
1657 if (option->direction == Qt::RightToLeft) |
1753 if (option->direction == Qt::RightToLeft) |
1658 elementSize = QRect(option->rect.right() - buttonWidth, option->rect.y(),buttonWidth, option->rect.height()); |
1754 elementSize = QRect(option->rect.right() - buttonSize.width(), option->rect.y(), buttonSize.width(), option->rect.height()); |
1659 else |
1755 else |
1660 elementSize = QRect( option->rect.x(), option->rect.y(), buttonWidth,option->rect.height()); |
1756 elementSize = QRect(option->rect.x(), option->rect.y(), buttonSize.width(), option->rect.height()); |
1661 } |
1757 } |
1662 break; |
1758 break; |
1663 case SC_SpinBoxUp: { |
1759 case SC_SpinBoxUp: { |
1664 if (option->direction == Qt::RightToLeft) |
1760 if (option->direction == Qt::RightToLeft) |
1665 elementSize = QRect( option->rect.x(), option->rect.y(), buttonWidth,option->rect.height()); |
1761 elementSize = QRect(option->rect.x(), option->rect.y(), buttonSize.width(), option->rect.height()); |
1666 else |
1762 else |
1667 elementSize = QRect(option->rect.right() - buttonWidth,option->rect.y(),buttonWidth,option->rect.height()); |
1763 elementSize = QRect(option->rect.right() - buttonSize.width(), option->rect.y(), buttonSize.width(), option->rect.height()); |
1668 } |
1764 } |
1669 break; |
1765 break; |
1670 case SC_SpinBoxEditField: |
1766 case SC_SpinBoxEditField: |
1671 elementSize = option->rect.adjusted(buttonWidth, 0, -buttonWidth, 0); |
1767 elementSize = option->rect.adjusted(buttonSize.width(), 0, -buttonSize.width(), 0); |
1672 break; |
1768 break; |
1673 default: |
1769 default: |
1674 break; |
1770 break; |
1675 } |
1771 } |
1676 } |
1772 } |
2226 } |
2323 } |
2227 |
2324 |
2228 void QHbStyle::polish(QPalette &palette) |
2325 void QHbStyle::polish(QPalette &palette) |
2229 { |
2326 { |
2230 QCommonStyle::polish(palette); |
2327 QCommonStyle::polish(palette); |
2231 |
|
2232 palette.setBrush(QPalette::Disabled, QPalette::WindowText, QColor(QRgb(0xff808080))); |
|
2233 palette.setBrush(QPalette::Disabled, QPalette::Button, QColor(QRgb(0xffdddfe4))); |
|
2234 palette.setBrush(QPalette::Disabled, QPalette::Light, QColor(QRgb(0xffffffff))); |
|
2235 palette.setBrush(QPalette::Disabled, QPalette::Midlight, QColor(QRgb(0xffffffff))); |
|
2236 palette.setBrush(QPalette::Disabled, QPalette::Dark, QColor(QRgb(0xff555555))); |
|
2237 palette.setBrush(QPalette::Disabled, QPalette::Mid, QColor(QRgb(0xffc7c7c7))); |
|
2238 palette.setBrush(QPalette::Disabled, QPalette::Text, QColor(QRgb(0xffc7c7c7))); |
|
2239 palette.setBrush(QPalette::Disabled, QPalette::BrightText, QColor(QRgb(0xffffffff))); |
|
2240 palette.setBrush(QPalette::Disabled, QPalette::ButtonText, QColor(QRgb(0xff808080))); |
|
2241 palette.setBrush(QPalette::Disabled, QPalette::Base, QColor(QRgb(0xffefefef))); |
|
2242 palette.setBrush(QPalette::Disabled, QPalette::AlternateBase, palette.color(QPalette::Disabled, QPalette::Base).darker(110)); |
|
2243 palette.setBrush(QPalette::Disabled, QPalette::Window, QColor(QRgb(0xffefefef))); |
|
2244 palette.setBrush(QPalette::Disabled, QPalette::Shadow, QColor(QRgb(0xff000000))); |
|
2245 palette.setBrush(QPalette::Disabled, QPalette::Highlight, QColor(QRgb(0xff567594))); |
|
2246 palette.setBrush(QPalette::Disabled, QPalette::HighlightedText, QColor(QRgb(0xffffffff))); |
|
2247 palette.setBrush(QPalette::Disabled, QPalette::Link, QColor(QRgb(0xff0000ee))); |
|
2248 palette.setBrush(QPalette::Disabled, QPalette::LinkVisited, QColor(QRgb(0xff52188b))); |
|
2249 palette.setBrush(QPalette::Disabled, QPalette::ToolTipBase, QColor(QRgb(0xff0000ee))); |
|
2250 palette.setBrush(QPalette::Disabled, QPalette::ToolTipText, QColor(QRgb(0xff52188b))); |
|
2251 |
|
2252 palette.setBrush(QPalette::Active, QPalette::WindowText, QColor(QRgb(0xff000000))); |
|
2253 palette.setBrush(QPalette::Active, QPalette::Button, QColor(QRgb(0xffdddfe4))); |
|
2254 palette.setBrush(QPalette::Active, QPalette::Light, QColor(QRgb(0xffffffff))); |
|
2255 palette.setBrush(QPalette::Active, QPalette::Midlight, QColor(QRgb(0xffffffff))); |
|
2256 palette.setBrush(QPalette::Active, QPalette::Dark, QColor(QRgb(0xff555555))); |
|
2257 palette.setBrush(QPalette::Active, QPalette::Mid, QColor(QRgb(0xffc7c7c7))); |
|
2258 palette.setBrush(QPalette::Active, QPalette::Text, QColor(QRgb(0xff000000))); |
|
2259 palette.setBrush(QPalette::Active, QPalette::BrightText, QColor(QRgb(0xffffffff))); |
|
2260 palette.setBrush(QPalette::Active, QPalette::ButtonText, QColor(QRgb(0xff000000))); |
|
2261 palette.setBrush(QPalette::Active, QPalette::Base, QColor(QRgb(0xE4E4E4))); |
|
2262 palette.setBrush(QPalette::Active, QPalette::AlternateBase, palette.color(QPalette::Active, QPalette::Base).darker(110)); |
|
2263 palette.setBrush(QPalette::Active, QPalette::Window, QColor(QRgb(0xffefefef))); |
|
2264 palette.setBrush(QPalette::Active, QPalette::Shadow, QColor(QRgb(0xff000000))); |
|
2265 palette.setBrush(QPalette::Active, QPalette::Highlight, QColor(QRgb(0xffE4E4E4))); |
|
2266 palette.setBrush(QPalette::Active, QPalette::HighlightedText, QColor(QRgb(0xff000000))); |
|
2267 palette.setBrush(QPalette::Active, QPalette::Link, QColor(QRgb(0xff0000ee))); |
|
2268 palette.setBrush(QPalette::Active, QPalette::LinkVisited, QColor(QRgb(0xff52188b))); |
|
2269 palette.setBrush(QPalette::Active, QPalette::ToolTipBase, QColor(QRgb(0xff0000ee))); |
|
2270 palette.setBrush(QPalette::Active, QPalette::ToolTipText, QColor(QRgb(0xff52188b))); |
|
2271 |
|
2272 palette.setBrush(QPalette::Inactive, QPalette::WindowText, QColor(QRgb(0xff000000))); |
|
2273 palette.setBrush(QPalette::Inactive, QPalette::Button, QColor(QRgb(0xffdddfe4))); |
|
2274 palette.setBrush(QPalette::Inactive, QPalette::Light, QColor(QRgb(0xffffffff))); |
|
2275 palette.setBrush(QPalette::Inactive, QPalette::Midlight, QColor(QRgb(0xffffffff))); |
|
2276 palette.setBrush(QPalette::Inactive, QPalette::Dark, QColor(QRgb(0xff555555))); |
|
2277 palette.setBrush(QPalette::Inactive, QPalette::Mid, QColor(QRgb(0xffc7c7c7))); |
|
2278 palette.setBrush(QPalette::Inactive, QPalette::Text, QColor(QRgb(0xff000000))); |
|
2279 palette.setBrush(QPalette::Inactive, QPalette::BrightText, QColor(QRgb(0xffffffff))); |
|
2280 palette.setBrush(QPalette::Inactive, QPalette::ButtonText, QColor(QRgb(0xff000000))); |
|
2281 palette.setBrush(QPalette::Inactive, QPalette::Base, QColor(QRgb(0xffffffff))); |
|
2282 palette.setBrush(QPalette::Inactive, QPalette::AlternateBase, palette.color(QPalette::Inactive, QPalette::Base).darker(110)); |
|
2283 palette.setBrush(QPalette::Inactive, QPalette::Window, QColor(QRgb(0xffefefef))); |
|
2284 palette.setBrush(QPalette::Inactive, QPalette::Shadow, QColor(QRgb(0xff000000))); |
|
2285 palette.setBrush(QPalette::Inactive, QPalette::Highlight, QColor(QRgb(0xff678db2))); |
|
2286 palette.setBrush(QPalette::Inactive, QPalette::HighlightedText, QColor(QRgb(0xffffffff))); |
|
2287 palette.setBrush(QPalette::Inactive, QPalette::Link, QColor(QRgb(0xff0000ee))); |
|
2288 palette.setBrush(QPalette::Inactive, QPalette::LinkVisited, QColor(QRgb(0xff52188b))); |
|
2289 palette.setBrush(QPalette::Inactive, QPalette::ToolTipBase, QColor(QRgb(0xff0000ee))); |
|
2290 palette.setBrush(QPalette::Inactive, QPalette::ToolTipText, QColor(QRgb(0xff52188b))); |
|
2291 } |
2328 } |
2292 |
2329 |
2293 void QHbStyle::unpolish(QWidget *widget) |
2330 void QHbStyle::unpolish(QWidget *widget) |
2294 { |
2331 { |
2295 if (!widget) |
2332 if (!widget) |
2856 case SM_GroupBoxTitle: { |
2896 case SM_GroupBoxTitle: { |
2857 frameName = QLatin1String("qtg_fr_groupbox"); |
2897 frameName = QLatin1String("qtg_fr_groupbox"); |
2858 frameType = HbFrameDrawer::NinePieces; |
2898 frameType = HbFrameDrawer::NinePieces; |
2859 break; |
2899 break; |
2860 } |
2900 } |
2861 case SM_ItemViewHighlight: { |
|
2862 frameName = QLatin1String("qtg_fr_list_highlight"); |
|
2863 frameType = HbFrameDrawer::NinePieces; |
|
2864 break; |
|
2865 } |
|
2866 case SM_ItemViewItem: { |
2901 case SM_ItemViewItem: { |
2867 if (state & SS_Pressed) |
2902 if (state & SS_Pressed) |
2868 frameName = QLatin1String("qtg_fr_list_pressed"); |
2903 frameName = QLatin1String("qtg_fr_list_pressed"); |
2869 else if (state & SS_Focused) |
2904 else if (state & SS_Focused) |
2870 frameName = QLatin1String("qtg_fr_list_highlight"); |
2905 frameName = QLatin1String("qtg_fr_list_highlight"); |
2871 else |
|
2872 frameName = QLatin1String("qtg_fr_list_normal"); |
|
2873 frameType = HbFrameDrawer::NinePieces; |
2906 frameType = HbFrameDrawer::NinePieces; |
2874 styleManager()->parameter(QLatin1String("hb-param-background-list-main"), border); |
2907 styleManager()->parameter(QLatin1String("hb-param-background-list-main"), border); |
2875 break; |
2908 break; |
2876 } |
2909 } |
|
2910 case SM_TextEdit: //@todo: fallthrough for now, since no specific graphic for editors in releases |
2877 case SM_LineEdit: { |
2911 case SM_LineEdit: { |
2878 styleManager()->parameter(QLatin1String("hb-param-background-editor"), border); |
2912 styleManager()->parameter(QLatin1String("hb-param-background-editor"), border); |
2879 if (state & SS_Selected) |
2913 if (state & SS_Selected) |
2880 frameName = QLatin1String("qtg_fr_editor_highlight"); |
2914 frameName = QLatin1String("qtg_fr_lineedit_highlight"); |
2881 else |
2915 else |
2882 frameName = QLatin1String("qtg_fr_editor_normal"); |
2916 frameName = QLatin1String("qtg_fr_lineedit_normal"); |
2883 frameType = HbFrameDrawer::NinePieces; |
2917 frameType = HbFrameDrawer::NinePieces; |
2884 break; |
2918 break; |
2885 } |
2919 } |
2886 case SM_ListParent: { |
2920 case SM_ListParent: { |
2887 if (state & SS_Pressed) |
2921 if (state & SS_Pressed) |
3275 ) { |
3328 ) { |
3276 fontRole = HbFontSpec::Secondary; |
3329 fontRole = HbFontSpec::Secondary; |
3277 valueFound = styleManager()->parameter(QLatin1String("hb-param-text-height-tiny"), fontSize); |
3330 valueFound = styleManager()->parameter(QLatin1String("hb-param-text-height-tiny"), fontSize); |
3278 } |
3331 } |
3279 |
3332 |
3280 HbFontSpec *fontSpec = q_check_ptr(new HbFontSpec(fontRole)); |
3333 HbFontSpec *fontSpec = new HbFontSpec(fontRole); |
3281 if (valueFound) { |
3334 if (valueFound) { |
3282 fontSpec->setTextHeight(fontSize); |
3335 fontSpec->setTextHeight(fontSize); |
3283 QFont widgetFont = fontSpec->font(); |
3336 QFont widgetFont = fontSpec->font(); |
3284 widgetFont.setPixelSize(fontSpec->font().pixelSize()); |
3337 widgetFont.setPixelSize(fontSpec->font().pixelSize()); |
3285 widget->setFont(widgetFont); |
3338 widget->setFont(widgetFont); |
3286 } |
3339 } |
3287 delete fontSpec; |
3340 delete fontSpec; |
3288 } |
3341 } |
3289 |
3342 |
|
3343 void QHbStylePrivate::polishPalette(QWidget *widget) |
|
3344 { |
|
3345 QPalette widgetPalette = widget->palette(); |
|
3346 if (false |
|
3347 #ifndef QT_NO_TEXTEDIT |
|
3348 || qobject_cast<QTextEdit *>(widget) |
|
3349 #endif |
|
3350 ) { |
|
3351 widgetPalette.setColor(QPalette::Active, QPalette::Highlight, HbColorScheme::color("qtc_lineedit_marker_normal")); |
|
3352 widgetPalette.setColor(QPalette::Active, QPalette::HighlightedText, HbColorScheme::color("qtc_lineedit_selected")); |
|
3353 widgetPalette.setColor(QPalette::Active, QPalette::Text, HbColorScheme::color("qtc_lineedit_normal")); |
|
3354 //QTextEdits have specific graphic in QHbStyle for background |
|
3355 widgetPalette.setColor(QPalette::Active, QPalette::Base, Qt::transparent); |
|
3356 } else if (false |
|
3357 #ifndef QT_NO_LINEEDIT |
|
3358 || qobject_cast<QLineEdit *>(widget) |
|
3359 #endif |
|
3360 ) { |
|
3361 widgetPalette.setColor(QPalette::Active, QPalette::Highlight, HbColorScheme::color("qtc_lineedit_marker_normal")); |
|
3362 widgetPalette.setColor(QPalette::Active, QPalette::HighlightedText, HbColorScheme::color("qtc_lineedit_selected")); |
|
3363 widgetPalette.setColor(QPalette::Active, QPalette::Text, HbColorScheme::color("qtc_lineedit_normal")); |
|
3364 } |
|
3365 widget->setPalette(widgetPalette); |
|
3366 } |
|
3367 |
3290 QT_END_NAMESPACE |
3368 QT_END_NAMESPACE |