X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/022a8a5af2763ae462ac56fe6d1d7bd6d4fe71c8..0aa619b53203461ec07541f0ba5ebe4aaf4f7184:/include/wx/ipcbase.h?ds=inline diff --git a/include/wx/ipcbase.h b/include/wx/ipcbase.h index 56de3c8d35..ae4bbca0a6 100644 --- a/include/wx/ipcbase.h +++ b/include/wx/ipcbase.h @@ -129,7 +129,14 @@ public: // Callbacks to SERVER - override at will virtual bool OnExec(const wxString& WXUNUSED(topic), const wxString& WXUNUSED(data)) - { return false; } + { + wxFAIL_MSG( "This method shouldn't be called, if it is, it probably " + "means that you didn't update your old code overriding " + "OnExecute() to use the new parameter types (\"const void *\" " + "instead of \"wxChar *\" and \"size_t\" instead of \"int\"), " + "you must do it or your code wouldn't be executed at all!" ); + return false; + } // deprecated function kept for backwards compatibility: usually you will // want to override OnExec() above instead which receives its data in a more @@ -173,10 +180,21 @@ public: virtual bool OnDisconnect() { delete this; return true; } + // return true if this is one of the formats used for textual data + // transmission + static bool IsTextFormat(wxIPCFormat format) + { + return format == wxIPC_TEXT || + format == wxIPC_UTF8TEXT || + format == wxIPC_UTF16TEXT || + format == wxIPC_UTF32TEXT; + } + // converts from the data and format into a wxString automatically // // this function accepts data in all of wxIPC_TEXT, wxIPC_UNICODETEXT, and - // wxIPC_UTF8TEXT formats but asserts if the format is anything else + // wxIPC_UTF8TEXT formats but asserts if the format is anything else (i.e. + // such that IsTextFormat(format) doesn't return true) // // notice that the size parameter here contains the total size of the data, // including the terminating '\0' or L'\0'