]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/dobjcomp.tex
added and documented wxApp::OnAssert
[wxWidgets.git] / docs / latex / wx / dobjcomp.tex
CommitLineData
eb91c0be
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: dobjcomp.tex
3%% Purpose: wxDataObjectComposite documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 02.11.99
7%% RCS-ID: $Id$
8%% Copyright: (c) Vadim Zeitlin
f6bcfd97 9%% License: wxWindows license
eb91c0be
VZ
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxDataObjectComposite}}\label{wxdataobjectcomposite}
13
14wxDataObjectComposite is the simplest
15\helpref{wxDataObject}{wxdataobject} derivation which may be sued to support
16multiple formats. It contains several
17\helpref{wxDataObjectSimple}{wxdataobjectsimple} objects and supports any
18format supported by at least one of them. Only one of these data objects is
19{\it preferred} (the first one if not explicitly changed by using the second
20parameter of \helpref{Add}{wxdataobjectcompositeadd}) and its format determines
21the preferred format of the composite data object as well.
22
23See \helpref{wxDataObject}{wxdataobject} documentation for the reasons why you
24might prefer to use wxDataObject directly instead of wxDataObjectComposite for
25efficiency reasons.
26
27\wxheading{Virtual functions to override}
28
29None, this class should be used directly.
30
31\wxheading{Derived from}
32
33\helpref{wxDataObject}{wxdataobject}
34
35\wxheading{Include files}
36
37<wx/dataobj.h>
38
39\wxheading{See also}
40
7f24fdbf 41\helpref{Clipboard and drag and drop overview}{wxdndoverview},
eb91c0be
VZ
42\helpref{wxDataObject}{wxdataobject},
43\helpref{wxDataObjectSimple}{wxdataobjectsimple},
44\helpref{wxFileDataObject}{wxfiledataobject},
45\helpref{wxTextDataObject}{wxtextdataobject},
46\helpref{wxBitmapDataObject}{wxbitmapdataobject}
47
48\latexignore{\rtfignore{\wxheading{Members}}}
49
50\membersection{wxDataObjectComposite::wxDataObjectComposite}\label{wxdataobjectcompositewxdataobjectcomposite}
51
52\func{}{wxDataObjectComposite}{\void}
53
54The default constructor.
55
56\membersection{wxDataObjectComposite::Add}\label{wxdataobjectcompositeadd}
57
58\func{void}{Add}{
59 \param{wxDataObjectSimple }{*dataObject},
60 \param{bool }{preferred = FALSE}}
61
62Adds the {\it dataObject} to the list of supported objects and it becomes the
63preferred object if {\it preferred} is TRUE.
64
65