|
17 | 17 | color: "FFFFFF"
|
18 | 18 | <TabbedPanel>:
|
19 | 19 | tab_width: root.width / app.tab_count
|
| 20 | +<TooltipLabel>: |
| 21 | + text_size: self.width, None |
| 22 | + size_hint_y: None |
| 23 | + height: self.texture_size[1] |
| 24 | + font_size: dp(20) |
| 25 | + markup: True |
20 | 26 | <SelectableLabel>:
|
21 | 27 | canvas.before:
|
22 | 28 | Color:
|
23 | 29 | rgba: (.0, 0.9, .1, .3) if self.selected else (0.2, 0.2, 0.2, 1)
|
24 | 30 | Rectangle:
|
25 | 31 | size: self.size
|
26 | 32 | pos: self.pos
|
27 |
| - text_size: self.width, None |
28 |
| - size_hint_y: None |
29 |
| - height: self.texture_size[1] |
30 |
| - font_size: dp(20) |
31 |
| - markup: True |
32 | 33 | <UILog>:
|
33 | 34 | messages: 1000 # amount of messages stored in client logs.
|
34 | 35 | cols: 1
|
|
44 | 45 | height: self.minimum_height
|
45 | 46 | orientation: 'vertical'
|
46 | 47 | spacing: dp(3)
|
| 48 | +<HintLabel>: |
| 49 | + canvas.before: |
| 50 | + Color: |
| 51 | + rgba: (.0, 0.9, .1, .3) if self.selected else (0.2, 0.2, 0.2, 1) if self.striped else (0.18, 0.18, 0.18, 1) |
| 52 | + Rectangle: |
| 53 | + size: self.size |
| 54 | + pos: self.pos |
| 55 | + height: self.minimum_height |
| 56 | + receiving_text: "Receiving Player" |
| 57 | + item_text: "Item" |
| 58 | + finding_text: "Finding Player" |
| 59 | + location_text: "Location" |
| 60 | + entrance_text: "Entrance" |
| 61 | + found_text: "Found?" |
| 62 | + TooltipLabel: |
| 63 | + id: receiving |
| 64 | + text: root.receiving_text |
| 65 | + halign: 'center' |
| 66 | + valign: 'center' |
| 67 | + pos_hint: {"center_y": 0.5} |
| 68 | + TooltipLabel: |
| 69 | + id: item |
| 70 | + text: root.item_text |
| 71 | + halign: 'center' |
| 72 | + valign: 'center' |
| 73 | + pos_hint: {"center_y": 0.5} |
| 74 | + TooltipLabel: |
| 75 | + id: finding |
| 76 | + text: root.finding_text |
| 77 | + halign: 'center' |
| 78 | + valign: 'center' |
| 79 | + pos_hint: {"center_y": 0.5} |
| 80 | + TooltipLabel: |
| 81 | + id: location |
| 82 | + text: root.location_text |
| 83 | + halign: 'center' |
| 84 | + valign: 'center' |
| 85 | + pos_hint: {"center_y": 0.5} |
| 86 | + TooltipLabel: |
| 87 | + id: entrance |
| 88 | + text: root.entrance_text |
| 89 | + halign: 'center' |
| 90 | + valign: 'center' |
| 91 | + pos_hint: {"center_y": 0.5} |
| 92 | + TooltipLabel: |
| 93 | + id: found |
| 94 | + text: root.found_text |
| 95 | + halign: 'center' |
| 96 | + valign: 'center' |
| 97 | + pos_hint: {"center_y": 0.5} |
| 98 | +<HintLog>: |
| 99 | + cols: 1 |
| 100 | + viewclass: 'HintLabel' |
| 101 | + scroll_y: self.height |
| 102 | + scroll_type: ["content", "bars"] |
| 103 | + bar_width: dp(12) |
| 104 | + effect_cls: "ScrollEffect" |
| 105 | + SelectableRecycleBoxLayout: |
| 106 | + default_size: None, dp(20) |
| 107 | + default_size_hint: 1, None |
| 108 | + size_hint_y: None |
| 109 | + height: self.minimum_height |
| 110 | + orientation: 'vertical' |
| 111 | + spacing: dp(3) |
47 | 112 | <ServerLabel>:
|
48 | 113 | text: "Server:"
|
49 | 114 | size_hint_x: None
|
|
0 commit comments