]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/sckipc.h
added test of focusing/selecting another item
[wxWidgets.git] / interface / sckipc.h
index 6bb30a3828eae00f36d26db93a049b97b9706325..4a3db2f305f3f333a814f067ada9a8d8ec97dd07 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        sckipc.h
-// Purpose:     documentation for wxTCPServer class
+// Purpose:     interface of wxTCPServer
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -19,8 +19,7 @@
     @library{wxnet}
     @category{FIXME}
 
-    @seealso
-    wxTCPClient, wxTCPConnection, @ref overview_ipcoverview "IPC overview"
+    @see wxTCPClient, wxTCPConnection, @ref overview_ipcoverview "IPC overview"
 */
 class wxTCPServer : public wxObject
 {
@@ -47,10 +46,11 @@ public:
         Under Unix, when a server is created the OnAcceptConnection message is
         always sent for standard input and output.
     */
-    virtual wxConnectionBase * OnAcceptConnection(const wxString& topic);
+    virtual wxConnectionBase* OnAcceptConnection(const wxString& topic);
 };
 
 
+
 /**
     @class wxTCPClient
     @wxheader{sckipc.h}
@@ -71,8 +71,7 @@ public:
     @library{wxnet}
     @category{FIXME}
 
-    @seealso
-    wxTCPServer, wxTCPConnection, @ref overview_ipcoverview "Interprocess
+    @see wxTCPServer, wxTCPConnection, @ref overview_ipcoverview "Interprocess
     communications overview"
 */
 class wxTCPClient : public wxObject
@@ -92,22 +91,21 @@ public:
         the OnMakeConnection() member to return your own
         derived connection object.
     */
-    wxConnectionBase * MakeConnection(const wxString& host,
-                                      const wxString& service,
-                                      const wxString& topic);
+    wxConnectionBase* MakeConnection(const wxString& host,
+                                     const wxString& service,
+                                     const wxString& topic);
 
     /**
         The type of wxTCPConnection returned from a MakeConnection() call can
         be altered by deriving the @b OnMakeConnection member to return your
         own derived connection object. By default, a wxTCPConnection
         object is returned.
-        
         The advantage of deriving your own connection class is that it will
         enable you to intercept messages initiated by the server, such
         as wxTCPConnection::OnAdvise. You may also want to
         store application-specific data in instances of the new class.
     */
-    wxConnectionBase * OnMakeConnection();
+    wxConnectionBase* OnMakeConnection();
 
     /**
         Returns @true if this is a valid host name, @false otherwise.
@@ -116,6 +114,7 @@ public:
 };
 
 
+
 /**
     @class wxTCPConnection
     @wxheader{sckipc.h}
@@ -139,8 +138,7 @@ public:
     @library{wxnet}
     @category{FIXME}
 
-    @seealso
-    wxTCPClient, wxTCPServer, @ref overview_ipcoverview "Interprocess
+    @see wxTCPClient, wxTCPServer, @ref overview_ipcoverview "Interprocess
     communications overview"
 */
 class wxTCPConnection : public wxObject
@@ -247,7 +245,7 @@ public:
     */
     virtual const void* OnRequest(const wxString& topic,
                                   const wxString& item,
-                                  size_t * size,
+                                  size_t* size,
                                   wxIPCFormat format);
 
     /**
@@ -287,7 +285,7 @@ public:
         character string (actually a pointer to the connection's buffer) if
         successful, @NULL otherwise.
     */
-    const void* Request(const wxString& item, size_t * size,
+    const void* Request(const wxString& item, size_t* size,
                         wxIPCFormat format = wxIPC_TEXT);
 
     /**
@@ -305,3 +303,4 @@ public:
     */
     bool StopAdvise(const wxString& item);
 };
+