~ubuntu-branches/ubuntu/maverick/wxwidgets2.8/maverick-proposed

« back to all changes in this revision

Viewing changes to docs/html/wx/wx_wxxmlnode.html

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2008-06-30 22:02:17 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080630220217-vag3tkfp91t0453d
Tags: 2.8.8.0-0ubuntu1
* New upstream version, based on the upstream tarball
  wxPython-src-2.8.8.0.tar.bz2, remove upstream debian dir (LP: #244355).
* Add debian/watch file, LP: #242164.
* Edit get-orig-source target to provide a .orig.tar.gz with the same md5 for
  each .orig.tar.gz generated.
* debian/rules: remove get-orig-source from .PHONY target.
* debian/control.in: add python-wxtools in python-wxgtk=V=U Suggests field.
* Do not apply fix_from_upstream_svn_r52465 patch, not needed.
* Regenerate octave_oct, tcl_tk_tcl patches for the new version.
* Fix spelling-error-in-description lintian warning.
* Fix depends-on-obsolete-package lintian error.
* Fix executable-not-elf-or-script lintian warnings.
* Fix script-not-executable lintian warnings.
* Fix missing-dependency-on-libc lintian error.
* Fix dbg-package-missing-depends lintian warnings.
* Fix package-contains-empty-directory lintian warnings.
* Fix manpage-has-errors-from-man lintian warning.
* Fix image-file-in-usr-lib lintian warnings:
  - add editra_pixmaps patch
  - add xrced_bitmaps patch
* Fix unused-override lintian info.
* Fix malformed-override lintian errors.
* Fix extra-license-file lintian warnings.
* Install upstream wx.pth instead of generated file links (LP: #211553).
* Add editra.png, pyshell.png (encoded using uuencode) icons, LP: #236876:
  - debian/rules: use uudecode to decode .png icons.
* Add a new pyshell.xpm icon.
* Fix doc-base-file-references-missing-file lintian error.
* Fix doc-base-unknown-section lintian warning.
* Fix ruby-script-but-no-ruby-dep lintian errors.
* Fix wish-script-but-no-wish-dep lintian errors.
* Fix missing-dep-for-interpreter errors.
* Bump Standards-Version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
<A HREF="#wxxmlnodegettype">wxXmlNode::GetType</A><BR>
65
65
<A HREF="#wxxmlnodehasprop">wxXmlNode::HasProp</A><BR>
66
66
<A HREF="#wxxmlnodeinsertchild">wxXmlNode::InsertChild</A><BR>
 
67
<A HREF="#wxxmlnodeinsertchildafter">wxXmlNode::InsertChildAfter</A><BR>
67
68
<A HREF="#wxxmlnodecontainsiswhitespaceonly">wxXmlNode::IsWhitespaceOnly</A><BR>
68
69
<A HREF="#wxxmlnoderemovechild">wxXmlNode::RemoveChild</A><BR>
69
70
<A HREF="#wxxmlnodesetchildren">wxXmlNode::SetChildren</A><BR>
252
253
<A NAME="wxxmlnodeinsertchild"></A>
253
254
<H3>wxXmlNode::InsertChild</H3>
254
255
<P>
255
 
<B>bool</B> <B>InsertChild</B>(<B><A HREF="wx_wxxmlnode.html#wxxmlnode">wxXmlNode</A>* </B></B><I>child</I>, <B><A HREF="wx_wxxmlnode.html#wxxmlnode">wxXmlNode</A>* </B></B><I>before_node</I>)<P>
256
 
Inserts the <I>child</I> node after <I>before_node</I> in the children list.
257
 
If <I>before_node</I> is <TT>NULL</TT>, then <I>child</I> is prepended to the list of children and
258
 
becomes the first child of this node.
259
 
Returns <TT>true</TT> if <I>before_node</I> has been found and the <I>child</I> node has been inserted.<P>
 
256
<B>bool</B> <B>InsertChild</B>(<B><A HREF="wx_wxxmlnode.html#wxxmlnode">wxXmlNode</A>* </B></B><I>child</I>, <B><A HREF="wx_wxxmlnode.html#wxxmlnode">wxXmlNode</A>* </B></B><I>followingNode</I>)<P>
 
257
Inserts the <I>child</I> node immediately before <I>followingNode</I> in the
 
258
children list.  If <I>followingNode</I> is <TT>NULL</TT>, then <I>child</I> is prepended
 
259
to the list of children and becomes the first child of this node.  Returns
 
260
<TT>true</TT> if <I>followingNode</I> has been found and the <I>child</I> node has been
 
261
inserted.<P>
 
262
 
 
263
<HR>
 
264
<A NAME="wxxmlnodeinsertchildafter"></A>
 
265
<H3>wxXmlNode::InsertChildAfter</H3>
 
266
<P>
 
267
<B>bool</B> <B>InsertChildAfter</B>(<B><A HREF="wx_wxxmlnode.html#wxxmlnode">wxXmlNode</A>* </B></B><I>child</I>, <B><A HREF="wx_wxxmlnode.html#wxxmlnode">wxXmlNode</A>* </B></B><I>precedingNode</I>)<P>
 
268
Inserts the <I>child</I> node immediately after <I>precedingNode</I> in the
 
269
children list. Returns <TT>true</TT> if <I>precedingNode</I> has been found and the
 
270
<I>child</I> node has been inserted.<P>
 
271
<B><FONT COLOR="#FF0000">Parameters</FONT></B><P>
 
272
<I>child</I><UL><UL>
 
273
Node to insert.</UL></UL>
 
274
 
 
275
<I>precedingNode</I><UL><UL>
 
276
The node to insert <I>child</I> after.
 
277
    As a special case, this can be <TT>NULL</TT> if this node has no children yet --
 
278
    in that case, <I>child</I> will become this node's only child node.</UL></UL>
 
279
<P>
 
280
This function is new since wxWidgets version 2.8.8<P>
260
281
 
261
282
<HR>
262
283
<A NAME="wxxmlnodecontainsiswhitespaceonly"></A>