blob: 02591f4810fae8b78a739aa8effb589b34250892 (
plain)
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
|
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<?xml-stylesheet href="chrome://messenger/skin/messenger.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/input-fields.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/contextMenu.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/colors.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/themeableDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://calendar/skin/calendar-alarm-dialog.css" type="text/css"?>
<!DOCTYPE html SYSTEM "chrome://calendar/locale/calendar.dtd">
<html
id="calendar-alarm-dialog"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
icon="calendar-alarm-dialog"
windowtype="Calendar:AlarmWindow"
persist="screenX screenY width height"
lightweightthemes="true"
width="600"
height="300"
scrolling="false"
>
<head>
<title>&calendar.alarm.title.label;</title>
<script defer="defer" src="chrome://calendar/content/calendar-item-editing.js"></script>
<script defer="defer" src="chrome://calendar/content/widgets/calendar-alarm-widget.js"></script>
<script defer="defer" src="chrome://calendar/content/calApplicationUtils.js"></script>
<script defer="defer" src="chrome://calendar/content/calendar-alarm-dialog.js"></script>
</head>
<html:body xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<vbox id="readonly-notification">
<!-- notificationbox will be added here lazily. -->
</vbox>
<richlistbox id="alarm-richlist" flex="1" onselect="onSelectAlarm(event)" />
<hbox id="alarm-actionbar" pack="end" align="center">
<button id="alarm-snooze-all-button" type="menu" label="&calendar.alarm.snoozeallfor.label;">
<menupopup is="calendar-snooze-popup" id="alarm-snooze-all-popup" ignorekeys="true" />
</button>
<button
id="alarm-dismiss-all-button"
label="&calendar.alarm.dismissall.label;"
oncommand="onDismissAllAlarms();"
/>
</hbox>
</html:body>
</html>
|