X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a203f6c0995030dc59ad4c0bbd3104d67ac4ac66..63415a4212c12ba53f5ca48d16b80bf3bb297a1e:/docs/latex/wx/tipc.tex diff --git a/docs/latex/wx/tipc.tex b/docs/latex/wx/tipc.tex index 0a8c8b255c..9edd9836bd 100644 --- a/docs/latex/wx/tipc.tex +++ b/docs/latex/wx/tipc.tex @@ -1,8 +1,8 @@ \section{Interprocess communication overview}\label{ipcoverview} -Classes: \helpref{wxServer}{wxddeserver}, +Classes: \helpref{wxServer}{wxserver}, \helpref{wxConnection}{wxddeconnection}, -\helpref{wxClient}{wxddeclient} +\helpref{wxClient}{wxclient} %\helpref{wxTCPServer}{wxtcpserver}, \helpref{wxTCPConnection}{wxtcpconnection}, %\helpref{wxTCPClient}{wxtcpclient} @@ -108,7 +108,7 @@ need to be overridden. create and return an instance of the derived connection class. \item Create an instance of your client object. \item When appropriate, create a new connection using -\helpref{wxClient::MakeConnection}{wxddeclientmakeconnection}, +\helpref{wxClient::MakeConnection}{wxclientmakeconnection}, with arguments host name (processed in Unix only, use `localhost' for local computer), service name, and topic name for this connection. The client object will call @@ -164,8 +164,8 @@ you need to derive a class from wxConnection and another from wxClient. The custom wxConnection class will receive communications in a `conversation' with a server. and the custom wxServer is required so that a user-overridden -\helpref{wxDDEClient::OnMakeConnection}{wxddeclientonmakeconnection} -member can return a wxDDEConnection of the required class, when a +\helpref{wxClient::OnMakeConnection}{wxddeclientonmakeconnection} +member can return a wxConnection of the required class, when a connection is made. For example: @@ -196,7 +196,7 @@ the derived wxClient. In the following, command line arguments are used to pass the host name (the name of the machine the server is running on) and the server name (identifying the server process). Calling -\helpref{wxDDEClient::MakeConnection}{wxddeclientmakeconnection}\rtfsp +\helpref{wxClient::MakeConnection}{wxddeclientmakeconnection}\rtfsp implicitly creates an instance of {\bf MyConnection} if the request for a connection is accepted, and the client then requests an {\it Advise} loop from the server (an Advise loop is @@ -219,6 +219,3 @@ where the server calls the client when data has changed). connection->StartAdvise("Item"); \end{verbatim} -Note that it is no longer necessary to call wxDDEInitialize or wxDDECleanUp, since -wxWidgets will do this by itself if necessary. -