r24958: This is the final text, and the final version. I'll send the release
[jelmer/samba4-debian.git] / webapps / qooxdoo-0.6.5-sdk / frontend / framework / source / class / qx / renderer / theme / WidgetTheme.js
1 /* ************************************************************************
2
3    qooxdoo - the new era of web development
4
5    http://qooxdoo.org
6
7    Copyright:
8      2004-2007 1&1 Internet AG, Germany, http://www.1and1.org
9
10    License:
11      LGPL: http://www.gnu.org/licenses/lgpl.html
12      EPL: http://www.eclipse.org/org/documents/epl-v10.php
13      See the LICENSE file in the project's top-level directory for details.
14
15    Authors:
16      * Sebastian Werner (wpbasti)
17      * Andreas Ecker (ecker)
18
19 ************************************************************************ */
20
21 /* ************************************************************************
22
23 #module(ui_core)
24 #after(qx.manager.object.ImageManager)
25
26 ************************************************************************ */
27
28 qx.OO.defineClass("qx.renderer.theme.WidgetTheme", qx.core.Object,
29 function(vTitle)
30 {
31   qx.core.Object.call(this);
32
33   this.setTitle(vTitle);
34 });
35
36 qx.OO.addProperty({ name : "title", type : "string", allowNull : false, defaultValue : "" });