mirror of https://github.com/qt/qtactiveqt.git
69 lines
2.4 KiB
Plaintext
69 lines
2.4 KiB
Plaintext
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of the documentation of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:FDL$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Free Documentation License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
** Documentation License version 1.3 as published by the Free Software
|
|
** Foundation and appearing in the file included in the packaging of
|
|
** this file. Please review the following information to ensure
|
|
** the GNU Free Documentation License version 1.3 requirements
|
|
** will be met: http://www.gnu.org/copyleft/fdl.html.
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
//! [script]
|
|
<script language="javascript">
|
|
function createSubWidget( form )
|
|
{
|
|
ParentWidget.createSubWidget( form.nameEdit.value );
|
|
}
|
|
|
|
function renameSubWidget( form )
|
|
{
|
|
var SubWidget = ParentWidget.subWidget( form.nameEdit.value );
|
|
if ( !SubWidget ) {
|
|
alert( "No such widget " + form.nameEdit.value + "!" );
|
|
return;
|
|
}
|
|
SubWidget.label = form.labelEdit.value;
|
|
form.nameEdit.value = SubWidget.label;
|
|
}
|
|
|
|
function setFont( form )
|
|
{
|
|
ParentWidget.font = form.fontEdit.value;
|
|
}
|
|
</script>
|
|
|
|
<p>
|
|
This widget can have many children!
|
|
</p>
|
|
<object ID="ParentWidget" CLASSID="CLSID:d574a747-8016-46db-a07c-b2b4854ee75c"
|
|
CODEBASE="http://qt.nokia.com/demos/hierarchy.cab">
|
|
[Object not available! Did you forget to build and register the server?]
|
|
</object><br />
|
|
<form>
|
|
<input type="edit" ID="nameEdit" value="<enter object name>" />
|
|
<input type="button" value="Create" onClick="createSubWidget(this.form)" />
|
|
<input type="edit" ID="labelEdit" />
|
|
<input type="button" value="Rename" onClick="renameSubWidget(this.form)" />
|
|
<br />
|
|
<input type="edit" ID="fontEdit" value="MS Sans Serif" />
|
|
<input type="button" value = "Set Font" onClick="setFont(this.form)" />
|
|
</form>
|
|
//! [script]
|