summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/content/dialogs/calendar-alarm-dialog.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'comm/calendar/base/content/dialogs/calendar-alarm-dialog.xhtml')
-rw-r--r--comm/calendar/base/content/dialogs/calendar-alarm-dialog.xhtml53
1 files changed, 53 insertions, 0 deletions
diff --git a/comm/calendar/base/content/dialogs/calendar-alarm-dialog.xhtml b/comm/calendar/base/content/dialogs/calendar-alarm-dialog.xhtml
new file mode 100644
index 0000000000..02591f4810
--- /dev/null
+++ b/comm/calendar/base/content/dialogs/calendar-alarm-dialog.xhtml
@@ -0,0 +1,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>