File: restrict-applications-dialog.ui

package info (click to toggle)
malcontent 0.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,756 kB
  • sloc: ansic: 7,414; python: 418; xml: 377; sh: 36; makefile: 14
file content (38 lines) | stat: -rw-r--r-- 1,673 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright © 2020 Endless, Inc. -->
<interface domain="malcontent">
  <requires lib="gtk+" version="3.12"/>
  <template class="MctRestrictApplicationsDialog" parent="AdwPreferencesDialog">
    <property name="title" translatable="yes">Restrict Applications</property>
    <property name="content-width">500</property>
    <property name="content-height">500</property>
    <property name="search-enabled">False</property>
    <child>
      <object class="AdwPreferencesPage">
        <child>
          <object class="AdwPreferencesGroup" id="group">
            <!-- Translated dynamically: -->
            <property name="description">Restrict {username} from using the following installed applications.</property>
            <child>
              <object class="GtkBox">
                <property name="orientation">vertical</property>
                <property name="spacing">12</property>
                <child>
                  <object class="GtkSearchEntry" id="search_entry">
                    <property name="placeholder-text" translatable="yes">Search for applications…</property>
                    <signal name="stop-search" handler="search_entry_stop_search_cb" />
                  </object>
                </child>
                <child>
                  <object class="MctRestrictApplicationsSelector" id="selector">
                    <property name="search" bind-source="search_entry" bind-property="text" />
                  </object>
                </child>
              </object>
            </child>
          </object>
        </child>
      </object>
    </child>
  </template>
</interface>