blob: d03af1680786376fdcd88e625345b3881a12141f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<interface>
<object class="GtkPopover" id="suggestions">
<property name="modal">no</property>
<child>
<object class="GtkListBox" id="listbox">
<property name="selection-mode">single</property>
<property name="visible">yes</property>
</object>
</child>
</object>
<object class="GtkPopover" id="security">
<property name="modal">yes</property>
<property name="position">bottom</property>
<child>
<object class="GtkBox" id="security_box">
<property name="margin">4</property>
<property name="spacing">4</property>
<property name="orientation">vertical</property>
<property name="visible">yes</property>
<child>
<object class="GtkLabel" id="security_status">
<property name="label" translatable="yes">Security unknown</property>
</object>
</child>
<child>
<object class="GtkActionBar">
<property name="visible">yes</property>
<child>
<object class="GtkButton" id="trust">
<property name="label" translatable="yes">_Trust this website</property>
<property name="use-underline">yes</property>
</object>
</child>
</object>
<packing>
<property name="pack-type">end</property>
</packing>
</child>
</object>
</child>
</object>
<template class="MidoriUrlbar" parent="GtkEntry">
<property name="can-default">yes</property>
<property name="placeholder-text" translatable="yes">Search or enter an address</property>
<style>
<class name="urlbar"/>
</style>
</template>
</interface>
|