ToolBarSubTask1Button.qml 360 B

123456789101112131415161718192021222324
  1. /**
  2. * Copyright (c) 2012 Nokia Corporation.
  3. */
  4. import QtQuick 1.1
  5. import com.nokia.symbian 1.1
  6. ToolBarLayout {
  7. property bool itemsEnabled
  8. ToolButton {
  9. visible: false
  10. }
  11. ToolButton {
  12. platformInverted: window.platformInverted
  13. text: "Send"
  14. }
  15. ToolButton {
  16. visible: false
  17. }
  18. }