Guest User

Untitled

a guest
Jun 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. <Test>:
  2. size_hint: 1, 1
  3. pos_hint: {'center_x': .5, 'center_y': .5}
  4. do_default_tab: False
  5. tab_width: root.width / 6
  6. tab_height: 50
  7.  
  8.  
  9. TabbedPanelItem:
  10. text: 'References'
  11. BoxLayout:
  12. size_hint: (1, 1)
  13. height:160
  14. #pos_hint: {'top': 0.5, 'x': 0}
  15. orientation: 'vertical'
  16. text_size: self.size
  17. #valign: "left"
  18. padding_x: 10
  19.  
  20.  
  21. BoxLayout:
  22. #size_hint: (0.35, 0.2)
  23. height:20
  24. pos_hint: {'x': 0}
  25. text_size: self.size
  26. padding_x: 5
  27.  
  28.  
  29. CheckBox:
  30. on_active: root.ref_caracEspe(self, self.active)
  31. active: True
  32. pos_hint: {'x': 0, 'y': 0}
  33.  
  34.  
  35.  
  36. Label:
  37. text: 'RCE'
  38. #pos_hint: {'x': 0, 'y': 0}
  39.  
  40.  
  41. BoxLayout:
  42. #size_hint: (0.35, 0.2)
  43. height:20
  44. pos_hint: {'x': 0}
  45. text_size: self.size
  46. padding_x: 5
  47.  
  48. CheckBox:
  49.  
  50. on_active: root.ref_allowUnder(self, self.active)
  51.  
  52.  
  53.  
  54. Label:
  55. text: 'Allow "_"'
  56. valign: "top"
  57.  
  58. BoxLayout:
  59. #size_hint: (1, 0.2)
  60. height:20
  61. #pos_hint: {'x': 0}
  62. pos_hint: {'center_x': .33, 'center_y': .0}
  63. text_size: self.size
  64. #padding_x: 5
  65.  
  66. CheckBox:
  67. on_active: root.ref_spaces(self, self.active)
  68. active: True
  69. pos_hint: {'x': 1, 'y': 0}
  70.  
  71.  
  72. Label:
  73. text: 'RSP'
  74. valign: "top"
  75. #pos_hint: {'x': 0.3, 'y': 0}
  76.  
  77.  
  78. BoxLayout:
  79. #size_hint: (0.35, 0.2)
  80. height:20
  81. pos_hint: {'x': 0}
  82. text_size: self.size
  83. padding_x: 5
  84.  
  85.  
  86. CheckBox:
  87. on_active: root.ref_max15(self, self.active)
  88. active: True
  89.  
  90.  
  91. Label:
  92. text: 'Max: 15'
  93. valign: "top"
  94. pos_hint: {'x': 0.5, 'y': 0}
Add Comment
Please, Sign In to add comment