75
by David Planella
Decoupled QR code types from the QR window and from a particular GUI toolkit (right now only GTK is supported) |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<interface>
|
|
3 |
<!-- interface-requires gtk+ 3.0 -->
|
|
4 |
<object class="GtkGrid" id="qr_code_text"> |
|
5 |
<property name="visible">True</property> |
|
6 |
<property name="can_focus">False</property> |
|
7 |
<property name="hexpand">True</property> |
|
8 |
<child>
|
|
9 |
<object class="GtkScrolledWindow" id="scrolledwindow2"> |
|
10 |
<property name="height_request">100</property> |
|
11 |
<property name="visible">True</property> |
|
12 |
<property name="can_focus">True</property> |
|
13 |
<property name="hexpand">True</property> |
|
14 |
<property name="shadow_type">in</property> |
|
15 |
<child>
|
|
16 |
<object class="GtkTextView" id="entryText"> |
|
17 |
<property name="height_request">100</property> |
|
18 |
<property name="visible">True</property> |
|
19 |
<property name="can_focus">True</property> |
|
20 |
<property name="wrap_mode">word</property> |
|
21 |
</object>
|
|
22 |
</child>
|
|
23 |
</object>
|
|
24 |
<packing>
|
|
25 |
<property name="left_attach">0</property> |
|
26 |
<property name="top_attach">0</property> |
|
27 |
<property name="width">1</property> |
|
28 |
<property name="height">1</property> |
|
29 |
</packing>
|
|
30 |
</child>
|
|
31 |
</object>
|
|
32 |
</interface>
|