diff options
Diffstat (limited to 'comm/calendar/base/content/dialogs/chooseCalendarDialog.xhtml')
-rw-r--r-- | comm/calendar/base/content/dialogs/chooseCalendarDialog.xhtml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/comm/calendar/base/content/dialogs/chooseCalendarDialog.xhtml b/comm/calendar/base/content/dialogs/chooseCalendarDialog.xhtml new file mode 100644 index 0000000000..6f6932d966 --- /dev/null +++ b/comm/calendar/base/content/dialogs/chooseCalendarDialog.xhtml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- 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 type="text/css" href="chrome://calendar/skin/shared/dialogs/chooseCalendarDialog.css"?> +<?xml-stylesheet type="text/css" href="chrome://messenger/skin/colors.css"?> +<?xml-stylesheet type="text/css" href="chrome://messenger/skin/themeableDialog.css"?> + +<!-- DTD File with all strings specific to the file --> +<!DOCTYPE window SYSTEM "chrome://calendar/locale/calendar.dtd"> + +<window + id="chooseCalendar" + title="&calendar.select.dialog.title;" + windowtype="Calendar:CalendarPicker" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + xmlns:html="http://www.w3.org/1999/xhtml" + onload="setTimeout(loadCalendars, 0);" + lightweightthemes="true" + persist="screenX screenY height width" +> + <dialog buttons="accept,cancel"> + <script src="chrome://calendar/content/calendar-ui-utils.js" /> + <script src="chrome://calendar/content/chooseCalendarDialog.js" /> + <script src="chrome://messenger/content/dialogShadowDom.js" /> + + <vbox id="dialog-box" flex="1"> + <label id="prompt" control="calendar-list" /> + <richlistbox id="calendar-list" flex="1" seltype="single" /> + <description id="promptNotify" /> + </vbox> + </dialog> +</window> |