summaryrefslogtreecommitdiff
path: root/src/nautilus-toolbar-ui.xml
blob: 4ecd63669fc731afe7af38f42caced9d4d079a5e (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>
<interface>
  <!-- interface-requires gtk+ 3.8 -->
  <template class="NautilusToolbar" parent="GtkHeaderBar">
    <property name="visible">True</property>
    <property name="show-close-button">True</property>
    <child>
      <object class="GtkBox" id="navigation_box">
        <property name="visible">True</property>
        <property name="orientation">horizontal</property>
        <style>
          <class name="linked"/>
          <class name="raised"/>
        </style>
        <child>
          <object class="GtkButton" id="back_button">
            <property name="visible">True</property>
            <property name="sensitive">True</property>
            <property name="action_name">win.back</property>
            <style>
              <class name="image-button"/>
            </style>
            <child>
              <object class="GtkImage" id="back_icon">
                <property name="visible">True</property>
                <property name="icon-name">go-previous-symbolic</property>
                <property name="icon-size">1</property>
              </object>
            </child>
          </object>
          <packing>
            <property name="pack-type">start</property>
          </packing>
        </child>
        <child>
          <object class="GtkButton" id="forward_button">
            <property name="visible">True</property>
            <property name="sensitive">True</property>
            <property name="action_name">win.forward</property>
            <style>
              <class name="image-button"/>
            </style>
            <child>
              <object class="GtkImage" id="forward_icon">
                <property name="visible">True</property>
                <property name="icon-name">go-next-symbolic</property>
                <property name="icon-size">1</property>
              </object>
            </child>
          </object>
          <packing>
            <property name="pack-type">start</property>
          </packing>
        </child>
      </object>
      <packing>
        <property name="pack-type">start</property>
      </packing>
      </child>
      <child>
        <object class="GtkBox" id="path_bar_container">
        </object>
        <packing>
            <property name="pack-type">start</property>
        </packing>
      </child>
      <child>
        <object class="GtkBox" id="location_entry_container">
        </object>
        <packing>
          <property name="pack-type">start</property>
        </packing>
      </child>
      <child>
        <object class="GtkMenuButton" id="action_button">
          <property name="visible">True</property>
          <property name="sensitive">True</property>
          <property name="action_name">win.action-menu</property>
          <style>
            <class name="image-button"/>
          </style>
          <child>
            <object class="GtkImage" id="action_icon">
              <property name="visible">True</property>
              <property name="icon-name">open-menu-symbolic</property>
              <property name="icon-size">1</property>
            </object>
          </child>
        </object>
        <packing>
          <property name="pack-type">end</property>
        </packing>
      </child>
      <child>
        <object class="GtkMenuButton" id="view_button">
          <property name="visible">True</property>
          <property name="sensitive">True</property>
          <style>
            <class name="image-button"/>
          </style>
        </object>
        <packing>
          <property name="pack-type">end</property>
        </packing>
      </child>
      <child>
        <object class="GtkToggleButton" id="search_button">
          <property name="visible">True</property>
          <property name="sensitive">True</property>
          <property name="action_name">win.toggle-search</property>
          <style>
            <class name="image-button"/>
          </style>
          <child>
            <object class="GtkImage" id="search_icon">
              <property name="visible">True</property>
              <property name="icon-name">edit-find-symbolic</property>
              <property name="icon-size">1</property>
            </object>
          </child>
        </object>
        <packing>
          <property name="pack-type">end</property>
        </packing>
      </child>
  </template>
</interface>