File: panel-object.schemas.in

package info (click to toggle)
gnome-panel 2.14.3-5
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 18,556 kB
  • ctags: 4,011
  • sloc: ansic: 46,059; xml: 14,755; sh: 8,859; makefile: 867
file content (231 lines) | stat: -rw-r--r-- 6,893 bytes parent folder | download | duplicates (4)
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?xml version="1.0"?>
<gconfschemafile>

  <schemalist>    

    <!-- Applies to all object types -->

    <schema>
      <key>/schemas/apps/panel/objects/object_type</key>
      <owner>panel</owner>
      <type>string</type>
      <default>menu-object</default>
      <locale name="C">
        <short>Panel object type</short>
        <long>
          The type of this panel object. Possible values are
          "drawer-object", "menu-object", "launcher-object",
          "bonobo-applet", "action-applet" and "menu-bar".
        </long>
      </locale>
    </schema>
   
    <schema>
      <key>/schemas/apps/panel/objects/toplevel_id</key>
      <owner>panel</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
        <short>Toplevel panel containing object</short>
        <long>
          The identifier of the toplevel panel which contains this object.
        </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/panel/objects/position</key>
      <owner>panel</owner>
      <type>int</type>
      <default>0</default>
      <locale name="C">
        <short>Object's position on the panel</short>
        <long>
          The position of this panel object. The position is specified
          by the number of pixels from the left (or top if vertical)
          panel edge.
        </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/panel/objects/panel_right_stick</key>
      <owner>panel</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
        <short>Interpret position relative to bottom/right edge</short>
        <long>
          If true, the position of the object is interpreted relative
          to the right (or bottom if vertical) edge of the panel.
        </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/panel/objects/locked</key>
      <owner>panel</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
        <short>Lock the object to the panel</short>
        <long>
          If true, the user may not move the applet without first unlocking
          the object using the "Unlock" menuitem.
        </long>
      </locale>
    </schema>


    <!-- Applies to applets -->

    <schema>
      <key>/schemas/apps/panel/objects/bonobo_iid</key>
      <owner>panel</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
        <short>Applet Bonobo IID</short>
        <long>
          The Bonobo implementation ID of the applet - e.g.
          "OAFIID:GNOME_ClockApplet". This key is only
          relevant if the object_type key is "bonobo-applet".
        </long>
      </locale>
    </schema>

    <!-- Applies to drawers -->

    <schema>
      <key>/schemas/apps/panel/objects/attached_toplevel_id</key>
      <owner>panel</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
        <short>Panel attached to drawer</short>
        <long>
          The identifier of the panel attached to this drawer. This
          key is only relevant if the object_type key is "drawer-object".
        </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/panel/objects/tooltip</key>
      <owner>panel</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
        <short>Tooltip displayed for drawer or menu</short>
        <long>
          The text to display in a tooltip for this drawer or this menu. This
          key is only relevant if the object_type key is "drawer-object" or
          "menu-object".
        </long>
      </locale>
    </schema>

    <!-- Applies to drawers and menu buttons -->

    <schema>
      <key>/schemas/apps/panel/objects/use_custom_icon</key>
      <owner>panel</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
        <short>Use custom icon for object's button</short>
        <long>
          If true, the custom_icon key is used as a custom icon for
          the button. If false, the custom_icon key is ignored.
          This key is only relevant if the object_type key is
          "menu-object" or "drawer-object".
        </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/panel/objects/custom_icon</key>
      <owner>panel</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
        <short>Icon used for object's button</short>
        <long>
          The location of the image file used as the icon for the
          object's button. This key is only relevant if the
          object_type key is "drawer-object" or "menu-object" and
          the use_custom_icon key is true.
        </long>
      </locale>
    </schema>

    <!-- Applies to menu buttons -->

    <schema>
      <key>/schemas/apps/panel/objects/use_menu_path</key>
      <owner>panel</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
        <short>Use custom path for menu contents</short>
        <long>
          If true, the menu_path key is used as the path from which
          the menu contents should be constructed. If false, the
          menu_path key is ignored. This key is only relevant
          if the object_type key is "menu-object".
        </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/panel/objects/menu_path</key>
      <owner>panel</owner>
      <type>string</type>
      <default>applications:/</default>
      <locale name="C">
        <short>Menu content path</short>
        <long>
          The path from which the menu contents is contructed. This
          key is only relevant if the use_menu_path key is true and
          the object_type key is "menu-object".
        </long>
      </locale>
    </schema>

    <!-- Applies to launchers -->

    <schema>
      <key>/schemas/apps/panel/objects/launcher_location</key>
      <owner>panel</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
        <short>Launcher location</short>
        <long>
          The location of the .desktop file describing the launcher.
          This key is only relevant if the object_type key is
          "launcher-object".
        </long>
      </locale>
    </schema>

    <!-- Applies to action buttons -->

    <schema>
      <key>/schemas/apps/panel/objects/action_type</key>
      <owner>panel</owner>
      <type>string</type>
      <default>lock</default>
      <locale name="C">
        <short>Action button type</short>
        <long>
          The action type this button represents. Possible values are
          "lock", "logout", "run", "search" and "screenshot". This
          key is only relevant if the object_type key is "action-applet".
        </long>
      </locale>
    </schema>
         
  </schemalist>
  
</gconfschemafile>