/**
* Copyright (C) 2005-2016 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* <p>This is a simple layout structure that creates a window panel with a title and the configured widgets
* placed inside.</p>
* <p>The following additionalCssClasses are built in and can be included if required:</p>
* <ul>
* <li><strong>shadow</strong>: A standard shadow is applied around the ClassicWindow</li>
* <li><strong>bottomBorderRadius</strong>: The bottom border of the ClassicWindow is given radius corners</li>
* <li><strong>borderLess</strong>: The border on the ClassicWindow is removed</li>
* </ul>
*
* @module alfresco/layout/ClassicWindow
* @extends external:dijit/_WidgetBase
* @mixes external:dojo/_TemplatedMixin
* @mixes module:alfresco/core/Core
* @mixes module:alfresco/core/CoreWidgetProcessing
* @author Dave Draper
*/
define(["dojo/_base/declare",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dojo/text!./templates/ClassicWindow.html",
"alfresco/core/Core",
"alfresco/core/CoreWidgetProcessing",
"dojo/dom-class",
"dojo/dom-construct"],
function(declare, _WidgetBase, _TemplatedMixin, template, AlfCore, CoreWidgetProcessing, domClass, domConstruct) {
return declare([_WidgetBase, _TemplatedMixin, AlfCore, CoreWidgetProcessing], {
/**
* An array of the CSS files to use with this widget.
*
* @instance
* @type {object[]}
* @default [{cssFile:"./css/ClassicWindow"}]
*/
cssRequirements: [{cssFile:"./css/ClassicWindow.css"}],
/**
* The HTML template to use for the widget.
* @instance
* @type {string}
*/
templateString: template,
/**
* The title to be rendered
*
* @instance
* @type {string}
* @default
*/
title: "",
/**
* Hide the title?
*
* @instance
* @type {boolean}
* @default
* @since 1.0.39
*/
hideTitle: false,
/**
* Ensures that the title is converted from key to localised message.
*
* @instance
*/
postMixInProperties: function alfresco_layout_ClassicWindow__postMixInProperties() {
if (this.title !== "")
{
this.title = this.message(this.title);
}
},
/**
* Processes the widgets into the content node.
*
* @instance
*/
postCreate: function alfresco_layout_ClassicWindow__postCreate() {
if (this.widgets)
{
this.processWidgets(this.widgets, this.contentNode);
}
if (this.hideTitle)
{
domConstruct.destroy(this.titleBarNode);
}
}
});
});