~click2dial-extension-devteam/click2dial-firefox-extension/2.0

« back to all changes in this revision

Viewing changes to chrome/content/options.xul

  • Committer: Jonathan SEMCZYK
  • Date: 2011-01-25 09:49:37 UTC
  • Revision ID: jsemczyk@acipia.fr-20110125094937-m0wb5ifg64t37dfb
new call history feature
- record all call into an SQLite database
- open an history window
- right click on history to call back

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0"?>
2
 
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
 
2
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
3
3
<?xml-stylesheet href="chrome://asterisk-ext/skin/asterisk-ext.css" type="text/css"?>
4
4
 
5
5
<!DOCTYPE prefwindow [ 
160
160
                        <preference id="asterisk-ext-callpopuptimeout" name="extensions.asterisk.callpopup-timeout" type="int"/>
161
161
                        <preference id="asterisk-ext-callpopupurl" name="extensions.asterisk.callpopup-url" type="string"/>
162
162
                        <preference id="asterisk-ext-autoopenurl" name="extensions.asterisk.callpopup-autoopenurl" type="bool"/>
 
163
                        <preference id="asterisk-ext-historylimit" name="extensions.asterisk.history-limit" type="int"/>
163
164
                </preferences>
164
165
                <groupbox align="start">
165
166
                        <hbox>
193
194
                                <checkbox id="autoOpenURLCheckbox" preference="asterisk-ext-autoopenurl"
194
195
                                        label="&pref.autoOpenURL;" tooltip="&pref.autoOpenURLLong;" />
195
196
                        </hbox>
 
197
                        <hbox align="center">
 
198
                                <label value="&pref.historylimit;" tooltiptext="&pref.historylimitLong;"/>
 
199
                                <textbox  id="historyLimitTextbox" size="4" preference="asterisk-ext-historylimit"
 
200
                                        tooltiptext="&pref.historylimitLong;"/>
 
201
                        </hbox>
 
202
 
196
203
                </groupbox>
197
204
        </prefpane>
198
205