~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-zesty-2202

« back to all changes in this revision

Viewing changes to plugins/Ubuntu/Settings/Menus/AccessPointMenu.qml

  • Committer: Bileto Bot
  • Date: 2016-11-16 18:52:43 UTC
  • mfrom: (146.4.57 touch+pointer-styles)
  • Revision ID: ci-train-bot@canonical.com-20161116185243-o399ryjh002umz1a
* Menus: add Pointer and Touch styles to be used depending on the user
  interaction with components
  Menu items now have a new Style property that defines some common properties
  such as shared colors and sizes that change depending on the UX journey. I'm
  only defining Pointer and TouchStyles for now, but they can be easily
  overridden in case.
  Removed some deprecated properties and adapted colors and sizes to new
  style.
* Bump package version as there's a new API for various components

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    property alias secure: iconSecure.visible
30
30
 
31
31
    icon.objectName: "iconSignal"
32
 
    iconSize: Math.min(units.gu(3), parent.height - units.gu(1))
33
 
    iconColor: ap.active ? theme.palette.normal.positive : theme.palette.normal.backgroundText
 
32
    iconColor: ap.active ? theme.palette.normal.positive : menuStyle.iconColor
34
33
    iconName: {
35
34
        if (adHoc) {
36
35
            return "nm-adhoc";
52
51
        objectName: "iconSecure"
53
52
        visible: false
54
53
        name: "network-secure"
55
 
        color: ap.active ? theme.palette.normal.positive : theme.palette.normal.backgroundText
 
54
        color: ap.active ? theme.palette.normal.positive : menuStyle.iconColor
56
55
        width: height
57
 
        height: Math.min(units.gu(3), ap.parent.height - units.gu(1))
 
56
        height: menuStyle.iconSize
58
57
    }
59
58
}