]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/ipcconn.tex
Remove double entry of wxTrackable
[wxWidgets.git] / docs / latex / wx / ipcconn.tex
CommitLineData
f510b7b2 1\section{\class{wxConnection}}\label{wxconnection}
47610ec2
JS
2
3A wxConnection object represents the connection between a client
4and a server. It is created by making a connection using a\rtfsp
f510b7b2
WS
5\helpref{wxClient}{wxclient} object, or by the acceptance of a
6connection by a\rtfsp \helpref{wxServer}{wxserver} object. The
47610ec2
JS
7bulk of a DDE-like (Dynamic Data Exchange) conversation is
8controlled by calling members in a {\bf wxConnection} object or
9by overriding its members. The actual DDE-based implementation
10using wxDDEConnection is available on Windows only, but a
11platform-independent, socket-based version of this API is
12available using wxTCPConnection, which has the same API.
13
14An application should normally derive a new connection class from
15wxConnection, in order to override the communication event
16handlers to do something interesting.
17
18\wxheading{Derived from}
19
20wxConnectionBase\\
21\helpref{wxObject}{wxobject}
22
23\wxheading{Include files}
24
25<wx/ipc.h>
26
27\wxheading{Types}
28
29\index{wxIPCFormat}wxIPCFormat is defined as follows:
30
31\begin{verbatim}
32enum wxIPCFormat
33{
34 wxIPC_INVALID = 0,
35 wxIPC_TEXT = 1, /* CF_TEXT */
36 wxIPC_BITMAP = 2, /* CF_BITMAP */
37 wxIPC_METAFILE = 3, /* CF_METAFILEPICT */
38 wxIPC_SYLK = 4,
39 wxIPC_DIF = 5,
40 wxIPC_TIFF = 6,
41 wxIPC_OEMTEXT = 7, /* CF_OEMTEXT */
42 wxIPC_DIB = 8, /* CF_DIB */
43 wxIPC_PALETTE = 9,
44 wxIPC_PENDATA = 10,
45 wxIPC_RIFF = 11,
46 wxIPC_WAVE = 12,
50c549b9 47 wxIPC_UTF16TEXT = 13, /* CF_UNICODE */
47610ec2
JS
48 wxIPC_ENHMETAFILE = 14,
49 wxIPC_FILENAME = 15, /* CF_HDROP */
50 wxIPC_LOCALE = 16,
50c549b9
VZ
51 wxIPC_UTF8TEXT = 17,
52 wxIPC_UTF32TEXT = 18,
53#if SIZEOF_WCHAR_T == 2
54 wxIPC_UNICODETEXT = wxIPC_UTF16TEXT,
55#elif SIZEOF_WCHAR_T == 4
56 wxIPC_UNICODETEXT = wxIPC_UTF32TEXT,
57#endif
47610ec2
JS
58 wxIPC_PRIVATE = 20
59};
60\end{verbatim}
61
62\wxheading{See also}
63
f510b7b2 64\helpref{wxClient}{wxclient}, \helpref{wxServer}{wxserver},
47610ec2
JS
65\helpref{Interprocess communications overview}{ipcoverview}
66
67\latexignore{\rtfignore{\wxheading{Members}}}
68
f510b7b2 69\membersection{wxConnection::wxConnection}\label{wxconnectionctor}
47610ec2
JS
70
71\func{}{wxConnection}{\void}
72
9bf6a1b8 73\func{}{wxConnection}{\param{void* }{buffer}, \param{size\_t}{ size}}
47610ec2
JS
74
75Constructs a connection object. If no user-defined connection
76object is to be derived from wxConnection, then the constructor
77should not be called directly, since the default connection
78object will be provided on requesting (or accepting) a
79connection. However, if the user defines his or her own derived
39275175 80connection object, the \helpref{wxServer::OnAcceptConnection}{wxserveronacceptconnection}\rtfsp
f510b7b2 81and/or \helpref{wxClient::OnMakeConnection}{wxclientonmakeconnection}
47610ec2
JS
82members should be replaced by functions which construct the new
83connection object.
84
85If the arguments of the wxConnection constructor are void then
86the wxConnection object manages its own connection buffer,
87allocating memory as needed. A programmer-supplied buffer cannot
88be increased if necessary, and the program will assert if it is
89not large enough. The programmer-supplied buffer is included
90mainly for backwards compatibility.
91
f510b7b2 92\membersection{wxConnection::Advise}\label{wxconnectionadvise}
47610ec2 93
9bf6a1b8 94\func{bool}{Advise}{\param{const wxString\& }{item}, \param{const void* }{data}, \param{size\_t }{size}, \param{wxIPCFormat }{format = wxIPC\_PRIVATE}}
50c549b9 95
9bf6a1b8 96\func{bool}{Advise}{\param{const wxString\& }{item}, \param{const char* }{data}, \param{size\_t }{size = (size\_t)-1}}
50c549b9 97
9bf6a1b8 98\func{bool}{Advise}{\param{const wxString\& }{item}, \param{const wchar\_t* }{data}, \param{size\_t }{size = (size\_t)-1}}
50c549b9
VZ
99
100\func{bool}{Advise}{\param{const wxString\& }{item}, \param{const wxString& }{data}}
47610ec2
JS
101
102Called by the server application to advise the client of a change
103in the data associated with the given item. Causes the client
f510b7b2 104connection's \helpref{wxConnection::OnAdvise}{wxconnectiononadvise} member
cc81d32f 105to be called. Returns true if successful.
47610ec2 106
f510b7b2 107\membersection{wxConnection::Execute}\label{wxconnectionexecute}
47610ec2 108
9bf6a1b8 109\func{bool}{Execute}{\param{const void* }{data}, \param{size\_t }{size}, \param{wxIPCFormat }{format = wxIPC\_PRIVATE}}
50c549b9 110
9bf6a1b8 111\func{bool}{Execute}{\param{const char* }{data}, \param{size\_t }{size = (size\_t)-1}}
50c549b9 112
9bf6a1b8 113\func{bool}{Execute}{\param{const wchar\_t* }{data}, \param{size\_t }{size = (size\_t)-1}}
50c549b9
VZ
114
115\func{bool}{Execute}{\param{const wxString& }{data}}
47610ec2
JS
116
117Called by the client application to execute a command on the
118server. Can also be used to transfer arbitrary data to the server
f510b7b2 119(similar to \helpref{wxConnection::Poke}{wxconnectionpoke} in
022a8a5a 120that respect). Causes the server connection's \helpref{wxConnection::OnExec}{wxconnectiononexec}
cc81d32f 121member to be called. Returns true if successful.
47610ec2 122
f510b7b2 123\membersection{wxConnection::Disconnect}\label{wxconnectiondisconnect}
47610ec2
JS
124
125\func{bool}{Disconnect}{\void}
126
127Called by the client or server application to disconnect from the
f510b7b2 128other program; it causes the \helpref{wxConnection::OnDisconnect}{wxconnectionondisconnect}
47610ec2 129message to be sent to the corresponding connection object in the
cc81d32f 130other program. Returns true if successful or already disconnected.
47610ec2
JS
131The application that calls {\bf Disconnect} must explicitly delete
132its side of the connection.
133
f510b7b2 134\membersection{wxConnection::OnAdvise}\label{wxconnectiononadvise}
47610ec2 135
9bf6a1b8 136\func{virtual bool}{OnAdvise}{\param{const wxString\& }{topic}, \param{const wxString\& }{item}, \param{const void* }{data}, \param{size\_t }{size}, \param{wxIPCFormat }{format}}
47610ec2
JS
137
138Message sent to the client application when the server notifies
139it of a change in the data associated with the given item, using
f510b7b2 140\helpref{Advise}{wxconnectionadvise}.
47610ec2 141
f510b7b2 142\membersection{wxConnection::OnDisconnect}\label{wxconnectionondisconnect}
47610ec2
JS
143
144\func{virtual bool}{OnDisconnect}{\void}
145
146Message sent to the client or server application when the other
147application notifies it to end the connection. The default
148behaviour is to delete the connection object and return true, so
149applications should generally override {\bf OnDisconnect}
150(finally calling the inherited method as well) so that they know
151the connection object is no longer available.
152
022a8a5a 153\membersection{wxConnection::OnExec}\label{wxconnectiononexec}
47610ec2 154
022a8a5a 155\func{virtual bool}{OnExec}{\param{const wxString\& }{topic}, \param{const wxString\& }{data}}
47610ec2
JS
156
157Message sent to the server application when the client notifies
f510b7b2 158it to execute the given data, using \helpref{Execute}{wxconnectionexecute}.
47610ec2
JS
159Note that there is no item associated with this message.
160
f510b7b2 161\membersection{wxConnection::OnPoke}\label{wxconnectiononpoke}
47610ec2 162
9bf6a1b8 163\func{virtual bool}{OnPoke}{\param{const wxString\& }{topic}, \param{const wxString\& }{item}, \param{const void* }{data}, \param{size\_t }{size}, \param{wxIPCFormat }{format}}
47610ec2
JS
164
165Message sent to the server application when the client notifies it to
166accept the given data.
167
f510b7b2 168\membersection{wxConnection::OnRequest}\label{wxconnectiononrequest}
47610ec2 169
9bf6a1b8 170\func{virtual const void*}{OnRequest}{\param{const wxString\& }{topic}, \param{const wxString\& }{item}, \param{size\_t * }{size}, \param{wxIPCFormat }{format}}
47610ec2
JS
171
172Message sent to the server application when the client calls
f510b7b2
WS
173\helpref{wxConnection::Request}{wxconnectionrequest}. The
174server's \helpref{OnRequest}{wxconnectiononrequest} method
47610ec2
JS
175should respond by returning a character string, or NULL to
176indicate no data, and setting *size. The character string must of
177course persist after the call returns.
178
f510b7b2 179\membersection{wxConnection::OnStartAdvise}\label{wxconnectiononstartadvise}
47610ec2
JS
180
181\func{virtual bool}{OnStartAdvise}{\param{const wxString\& }{topic}, \param{const wxString\& }{item}}
182
183Message sent to the server application by the client, when the client
184wishes to start an `advise loop' for the given topic and item. The
cc81d32f 185server can refuse to participate by returning false.
47610ec2 186
f510b7b2 187\membersection{wxConnection::OnStopAdvise}\label{wxconnectiononstopadvise}
47610ec2
JS
188
189\func{virtual bool}{OnStopAdvise}{\param{const wxString\& }{topic}, \param{const wxString\& }{item}}
190
191Message sent to the server application by the client, when the client
192wishes to stop an `advise loop' for the given topic and item. The
cc81d32f 193server can refuse to stop the advise loop by returning false, although
47610ec2
JS
194this doesn't have much meaning in practice.
195
f510b7b2 196\membersection{wxConnection::Poke}\label{wxconnectionpoke}
47610ec2 197
9bf6a1b8 198\func{bool}{Poke}{\param{const wxString\& }{item}, \param{const void* }{data}, \param{size\_t }{size}, \param{wxIPCFormat }{format = wxIPC\_PRIVATE}}
50c549b9 199
9bf6a1b8 200\func{bool}{Poke}{\param{const wxString\& }{item}, \param{const char* }{data}, \param{size\_t }{size = (size\_t)-1}}
50c549b9 201
9bf6a1b8 202\func{bool}{Poke}{\param{const wxString\& }{item}, \param{const wchar\_t* }{data}, \param{size\_t }{size = (size\_t)-1}}
50c549b9
VZ
203
204\func{bool}{Poke}{\param{const wxString\& }{item}, \param{const wxString& }{data}}
47610ec2
JS
205
206Called by the client application to poke data into the server.
207Can be used to transfer arbitrary data to the server. Causes the
f510b7b2 208server connection's \helpref{wxConnection::OnPoke}{wxconnectiononpoke} member to
47610ec2
JS
209be called. If size is -1 the size is computed from the string
210length of data.
211
cc81d32f 212Returns true if successful.
47610ec2 213
f510b7b2 214\membersection{wxConnection::Request}\label{wxconnectionrequest}
47610ec2 215
9bf6a1b8 216\func{const void*}{Request}{\param{const wxString\& }{item}, \param{size\_t *}{size}, \param{wxIPCFormat }{format = wxIPC\_TEXT}}
47610ec2
JS
217
218Called by the client application to request data from the server.
f510b7b2 219Causes the server connection's \helpref{wxConnection::OnRequest}{wxconnectiononrequest}
47610ec2
JS
220member to be called. Size may be NULL or a pointer to a variable
221to receive the size of the requested item.
222
223Returns a character string (actually a pointer to the
224connection's buffer) if successful, NULL otherwise. This buffer
225does not need to be deleted.
226
f510b7b2 227\membersection{wxConnection::StartAdvise}\label{wxconnectionstartadvise}
47610ec2
JS
228
229\func{bool}{StartAdvise}{\param{const wxString\& }{item}}
230
231Called by the client application to ask if an advise loop can be
232started with the server. Causes the server connection's
f510b7b2 233\helpref{wxConnection::OnStartAdvise}{wxconnectiononstartadvise}\rtfsp
cc81d32f 234member to be called. Returns true if the server okays it, false
47610ec2
JS
235otherwise.
236
f510b7b2 237\membersection{wxConnection::StopAdvise}\label{wxconnectionstopadvise}
47610ec2
JS
238
239\func{bool}{StopAdvise}{\param{const wxString\& }{item}}
240
241Called by the client application to ask if an advise loop can be
f510b7b2 242stopped. Causes the server connection's \helpref{wxConnection::OnStopAdvise}{wxconnectiononstopadvise}
cc81d32f 243member to be called. Returns true if the server okays it, false
47610ec2
JS
244otherwise.
245