本文整理汇总了C++中SignalHandler::handleDialogResponse方法的典型用法代码示例。如果您正苦于以下问题:C++ SignalHandler::handleDialogResponse方法的具体用法?C++ SignalHandler::handleDialogResponse怎么用?C++ SignalHandler::handleDialogResponse使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SignalHandler
的用法示例。
在下文中一共展示了SignalHandler::handleDialogResponse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _handleDialogResponseWithConnectObject
/**
* Handles all gtk dialog responses that include connect object by passing them
* off to a SignalHandler.
*
* @param dialog the dialog that sent the response.
* @param responseId the response ID.
* @param userData the user data pointer to the connect object to use.
*/
static void _handleDialogResponseWithConnectObject(
GtkDialog* dialog, gint responseId, gpointer userData)
{
// get signal handler out of connect object's user data map
GObject* connectObject = static_cast<GObject*>(userData);
gpointer ptr = g_object_get_data(connectObject, GOBJECT_KEY_HANDLER);
SignalHandler* h = static_cast<SignalHandler*>(ptr);
h->handleDialogResponse(dialog, responseId);
}
示例2: _handleDialogResponse
/**
* Handles all gtk dialog responses by passing them off to a SignalHandler.
*
* @param dialog the dialog that sent the response.
* @param responseId the response ID.
* @param userData the user data pointer to the SignalHandler to use.
*/
static void _handleDialogResponse(
GtkDialog* dialog, gint responseId, gpointer userData)
{
SignalHandler* h = static_cast<SignalHandler*>(userData);
h->handleDialogResponse(dialog, responseId);
}