Move some components to share them across breeze components

wilder-5.14
Aleix Pol 12 years ago
parent 5a118aa9f4
commit dde9648afd
  1. 0
      lookandfeel/contents/components/BreezeBlock.qml
  2. 6
      lookandfeel/contents/components/LogoutScreen.qml
  3. 0
      lookandfeel/contents/components/artwork/currentColorFillFix.sh
  4. 0
      lookandfeel/contents/components/artwork/logout_primary.svgz
  5. 0
      lookandfeel/contents/components/artwork/restart_primary.svgz
  6. 0
      lookandfeel/contents/components/artwork/shutdown_primary.svgz
  7. 1
      lookandfeel/contents/logout/Logout.qml

@ -96,19 +96,19 @@ BreezeBlock {
name: "shutdown"
PropertyChanges { target: root; currentAction: shutdownRequested }
PropertyChanges { target: actionLabel; text: ("Shutting down") }
PropertyChanges { target: actionIcon; source: "icons/shutdown_primary.svgz" }
PropertyChanges { target: actionIcon; source: "artwork/shutdown_primary.svgz" }
},
State {
name: "logout"
PropertyChanges { target: root; currentAction: logoutRequested }
PropertyChanges { target: actionLabel; text: ("Logging out") }
PropertyChanges { target: actionIcon; source: "icons/logout_primary.svgz" }
PropertyChanges { target: actionIcon; source: "artwork/logout_primary.svgz" }
},
State {
name: "reboot"
PropertyChanges { target: root; currentAction: rebootRequested }
PropertyChanges { target: actionLabel; text: ("Rebooting") }
PropertyChanges { target: actionIcon; source: "icons/restart_primary.svgz" }
PropertyChanges { target: actionIcon; source: "artwork/restart_primary.svgz" }
}
]
}

@ -18,6 +18,7 @@
***************************************************************************/
import QtQuick 2.1
import "../components"
Item {
id: root

Loading…
Cancel
Save