Advertisement
Guest User

Untitled

a guest
Feb 4th, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.56 KB | None | 0 0
  1. /*
  2. Copyright (C) 2013 Jolla Ltd.
  3. Contact: Thomas Perl <thomas.perl@jollamobile.com>
  4. All rights reserved.
  5.  
  6. You may use this file under the terms of BSD license as follows:
  7.  
  8. Redistribution and use in source and binary forms, with or without
  9. modification, are permitted provided that the following conditions are met:
  10. * Redistributions of source code must retain the above copyright
  11. notice, this list of conditions and the following disclaimer.
  12. * Redistributions in binary form must reproduce the above copyright
  13. notice, this list of conditions and the following disclaimer in the
  14. documentation and/or other materials provided with the distribution.
  15. * Neither the name of the Jolla Ltd nor the
  16. names of its contributors may be used to endorse or promote products
  17. derived from this software without specific prior written permission.
  18.  
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  20. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR
  23. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  24. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30.  
  31. import QtQuick 2.0
  32. import Sailfish.Silica 1.0
  33.  
  34.  
  35. Page {
  36. id: page
  37. SilicaListView {
  38. id: listView
  39. model: myModel
  40. anchors.fill: parent
  41. header: PageHeader {
  42. title: "Initiative Manager"
  43. }
  44.  
  45. PullDownMenu {
  46. MenuItem {
  47. text: "Add Player"
  48. onClicked: pageStack.push(Qt.resolvedUrl("InitiativeAddPlayer.qml"))
  49. }
  50. }
  51.  
  52.  
  53. delegate: BackgroundItem {
  54. id: delegate
  55.  
  56. ComboBox {
  57. x: Theme.paddingLarge
  58. label: player + ": "
  59. anchors.verticalCenter: parent.verticalCenter
  60. currentIndex: 20 + initiative
  61.  
  62. menu: ContextMenu {
  63. MenuItem { text: "-20" }
  64. MenuItem { text: "-19" }
  65. MenuItem { text: "-18" }
  66. MenuItem { text: "-17" }
  67. MenuItem { text: "-16" }
  68. MenuItem { text: "-15" }
  69. MenuItem { text: "-14" }
  70. MenuItem { text: "-13" }
  71. MenuItem { text: "-12" }
  72. MenuItem { text: "-11" }
  73. MenuItem { text: "-10" }
  74. MenuItem { text: "-9" }
  75. MenuItem { text: "-8" }
  76. MenuItem { text: "-7" }
  77. MenuItem { text: "-6" }
  78. MenuItem { text: "-5" }
  79. MenuItem { text: "-4" }
  80. MenuItem { text: "-3" }
  81. MenuItem { text: "-2" }
  82. MenuItem { text: "-1" }
  83. MenuItem { text: "+0" }
  84. MenuItem { text: "+1" }
  85. MenuItem { text: "+2" }
  86. MenuItem { text: "+3" }
  87. MenuItem { text: "+4" }
  88. MenuItem { text: "+5" }
  89. MenuItem { text: "+6" }
  90. MenuItem { text: "+7" }
  91. MenuItem { text: "+8" }
  92. MenuItem { text: "+9" }
  93. MenuItem { text: "+10" }
  94. MenuItem { text: "+11" }
  95. MenuItem { text: "+12" }
  96. MenuItem { text: "+13" }
  97. MenuItem { text: "+14" }
  98. MenuItem { text: "+15" }
  99. MenuItem { text: "+16" }
  100. MenuItem { text: "+17" }
  101. MenuItem { text: "+18" }
  102. MenuItem { text: "+19" }
  103. MenuItem { text: "+20" }
  104. }
  105.  
  106. onCurrentIndexChanged: {
  107. console.log("bob");
  108. myModel.editPlayer(player, Number(currentItem.text));
  109. }
  110.  
  111. }
  112. onClicked: console.log("Clicked " + index)
  113. }
  114. VerticalScrollDecorator {}
  115. }
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement