~mozillateam/thunderbird/thunderbird.disco

« back to all changes in this revision

Viewing changes to debian/messagingmenu/content/options.xul

  • Committer: Chris Coulson
  • Date: 2011-06-30 15:15:44 UTC
  • Revision ID: chrisccoulson@ubuntu.com-20110630151544-5wnjdtktez3su23l
* Ship the messagingmenu extension (0.7.2)
  - add debian/messagingmenu/*
  - update debian/rules
* Add static launcher items to the messaging menu and quicklist items to the
  Unity launcher
  - update debian/thunderbird.desktop.in
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
 
3
 
 
4
<prefwindow id="messagingmenu-prefs"
 
5
     title="Messaging Menu Preferences"
 
6
     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 
7
 
 
8
<prefpane id="messagingmenu-options-pane" label="Indicator Options">
 
9
  <preferences>
 
10
    <preference id="pref_show_indication" name="extensions.messagingmenu.showIndication" type="bool"/>
 
11
    <preference id="pref_show_mail" name="extensions.messagingmenu.includeMail" type="bool"/>
 
12
    <preference id="pref_show_rss" name="extensions.messagingmenu.includeRSS" type="bool"/>
 
13
    <preference id="pref_show_newsgroups" name="extensions.messagingmenu.includeNewsgroups" type="bool"/>
 
14
  </preferences>
 
15
 
 
16
  <hbox align="center">
 
17
    <checkbox preference="pref_show_indication" id="show_indication" label="Show Indication" />
 
18
    <checkbox preference="pref_show_mail" id="show_mail" label="Show Mail" />
 
19
    <checkbox preference="pref_show_rss" id="show_rss" label="Show RSS Feeds" />
 
20
    <checkbox preference="pref_show_newsgroups" id="show_newsgroups" label="Show Newgroups" />
 
21
  </hbox>
 
22
</prefpane>
 
23
 
 
24
</prefwindow>
 
25