mirror of
https://github.com/ManchildProductions/calendar.git
synced 2026-05-26 15:17:55 +00:00
36 lines
1.4 KiB
JavaScript
36 lines
1.4 KiB
JavaScript
/* 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/. */
|
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Components.utils.import("resource://calendar/modules/calUtils.jsm");
|
|
|
|
/**
|
|
* A thin wrapper around the html list exporter for the list print format.
|
|
*/
|
|
function calListFormatter() {
|
|
this.wrappedJSObject = this;
|
|
}
|
|
|
|
var calListFormatterClassID = Components.ID("{9ae04413-fee3-45b9-8bbb-1eb39a4cbd1b}");
|
|
var calListFormatterInterfaces = [Components.interfaces.calIPrintFormatter];
|
|
calListFormatter.prototype = {
|
|
classID: calListFormatterClassID,
|
|
QueryInterface: XPCOMUtils.generateQI(calListFormatterInterfaces),
|
|
|
|
classInfo: XPCOMUtils.generateCI({
|
|
classID: calListFormatterClassID,
|
|
contractID: "@mozilla.org/calendar/printformatter;1?type=list",
|
|
classDescription: "Calendar List Print Formatter",
|
|
interfaces: calListFormatterInterfaces
|
|
}),
|
|
|
|
get name() { return cal.calGetString("calendar", "formatListName"); },
|
|
|
|
formatToHtml: function(aStream, aStart, aEnd, aCount, aItems, aTitle) {
|
|
let htmlexporter = Components.classes["@mozilla.org/calendar/export;1?type=htmllist"]
|
|
.createInstance(Components.interfaces.calIExporter);
|
|
htmlexporter.exportToStream(aStream, aCount, aItems, aTitle);
|
|
}
|
|
};
|