aboutsummaryrefslogtreecommitdiff
path: root/contrib/gnunet_fs_gtk_unindex.glade
blob: 90d6cab5428982c257f80c4b9ce01f300392839e (plain) (blame)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?xml version="1.0"?>
<interface>
  <requires lib="gtk+" version="2.16"/>
  <!-- interface-naming-policy project-wide -->
  <object class="GtkListStore" id="GNUNET_FS_GTK_unindex_liststore">
    <columns>
      <!-- column-name filename -->
      <column type="gchararray"/>
      <!-- column-name filesize -->
      <column type="guint64"/>
      <!-- column-name background_color -->
      <column type="gchararray"/>
      <!-- column-name unindex_context -->
      <column type="gpointer"/>
      <!-- column-name unindex_progress -->
      <column type="gint"/>
      <!-- column-name progress_visible -->
      <column type="gboolean"/>
      <!-- column-name error_message -->
      <column type="gchararray"/>
    </columns>
  </object>
  <object class="GtkDialog" id="GNUNET_FS_GTK_unindex_dialog">
    <property name="width_request">600</property>
    <property name="height_request">300</property>
    <property name="border_width">5</property>
    <property name="title" translatable="yes">Indexed files</property>
    <property name="icon_name">folder</property>
    <property name="type_hint">normal</property>
    <property name="has_separator">False</property>
    <child internal-child="vbox">
      <object class="GtkVBox" id="GNUNET_FS_GTK_unindex_dialog-vbox">
        <property name="visible">True</property>
        <property name="orientation">vertical</property>
        <property name="spacing">2</property>
        <child>
          <object class="GtkScrolledWindow" id="GNUNET_FS_GTK_unindex_scrolledwindow">
            <property name="visible">True</property>
            <property name="can_focus">True</property>
            <property name="hscrollbar_policy">automatic</property>
            <property name="vscrollbar_policy">automatic</property>
            <child>
              <object class="GtkTreeView" id="GNUNET_FS_GTK_unindex_treeview">
                <property name="visible">True</property>
                <property name="can_focus">True</property>
                <property name="model">GNUNET_FS_GTK_unindex_liststore</property>
                <child>
                  <object class="GtkTreeViewColumn" id="GNUNET_FS_GTK_unindex_filesize_treeviewcolumn">
                    <property name="sizing">autosize</property>
                    <property name="title">Size</property>
                    <property name="reorderable">True</property>
                    <property name="sort_indicator">True</property>
                    <property name="sort_column_id">1</property>
                    <child>
                      <object class="GtkCellRendererText" id="GNUNET_FS_GTK_unindex_cellrenderertext"/>
                      <attributes>
                        <attribute name="background">2</attribute>
                        <attribute name="text">1</attribute>
                      </attributes>
                    </child>
                  </object>
                </child>
                <child>
                  <object class="GtkTreeViewColumn" id="GNUNET_FS_GTK_unindex_filename_treeviewcolumn">
                    <property name="title">Filename</property>
                    <property name="reorderable">True</property>
                    <property name="sort_indicator">True</property>
                    <property name="sort_column_id">0</property>
                    <child>
                      <object class="GtkCellRendererText" id="GNUNET_FS_GTK_unindex_filename_cellrenderertext"/>
                      <attributes>
                        <attribute name="background">2</attribute>
                        <attribute name="text">0</attribute>
                      </attributes>
                    </child>
                  </object>
                </child>
                <child>
                  <object class="GtkTreeViewColumn" id="GNUNET_FS_GTK_unindex_progress_treeviewcolumn">
                    <property name="min_width">9</property>
                    <property name="title">Unindex progress</property>
                    <child>
                      <object class="GtkCellRendererProgress" id="GNUNET_FS_GTK_unindex_progress_cellrendererprogress"/>
                      <attributes>
                        <attribute name="visible">5</attribute>
                        <attribute name="text">6</attribute>
                        <attribute name="value">4</attribute>
                      </attributes>
                    </child>
                  </object>
                </child>
              </object>
            </child>
          </object>
          <packing>
            <property name="position">1</property>
          </packing>
        </child>
        <child internal-child="action_area">
          <object class="GtkHButtonBox" id="GNUNET_FS_GTK_unindex_dialog-action_area">
            <property name="visible">True</property>
            <property name="layout_style">end</property>
            <child>
              <object class="GtkButton" id="GNUNET_FS_GTK_unindex_button">
                <property name="label">_Unindex</property>
                <property name="visible">True</property>
                <property name="sensitive">False</property>
                <property name="can_focus">True</property>
                <property name="receives_default">True</property>
                <property name="tooltip_text" translatable="yes">Unindex the selected indexed file.</property>
                <property name="image">GNUNET_FS_GTK_unindex_delete_image</property>
                <property name="use_underline">True</property>
                <signal name="clicked" handler="GNUNET_FS_GTK_unindex_button_clicked_cb"/>
              </object>
              <packing>
                <property name="expand">False</property>
                <property name="fill">False</property>
                <property name="position">0</property>
              </packing>
            </child>
            <child>
              <object class="GtkButton" id="GNUNET_FS_GTK_unindex_close_button">
                <property name="label">gtk-close</property>
                <property name="visible">True</property>
                <property name="can_focus">True</property>
                <property name="receives_default">True</property>
                <property name="use_stock">True</property>
                <signal name="clicked" handler="GNUNET_FS_GTK_unindex_close_button_clicked_cb"/>
              </object>
              <packing>
                <property name="expand">False</property>
                <property name="fill">False</property>
                <property name="position">1</property>
              </packing>
            </child>
          </object>
          <packing>
            <property name="expand">False</property>
            <property name="pack_type">end</property>
            <property name="position">0</property>
          </packing>
        </child>
      </object>
    </child>
    <action-widgets>
      <action-widget response="0">GNUNET_FS_GTK_unindex_button</action-widget>
      <action-widget response="0">GNUNET_FS_GTK_unindex_close_button</action-widget>
    </action-widgets>
  </object>
  <object class="GtkImage" id="GNUNET_FS_GTK_unindex_delete_image">
    <property name="visible">True</property>
    <property name="stock">gtk-delete</property>
  </object>
</interface>