本文整理汇总了C++中CChatChannel::ToggleVoice方法的典型用法代码示例。如果您正苦于以下问题:C++ CChatChannel::ToggleVoice方法的具体用法?C++ CChatChannel::ToggleVoice怎么用?C++ CChatChannel::ToggleVoice使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CChatChannel
的用法示例。
在下文中一共展示了CChatChannel::ToggleVoice方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: EventMsg
//.........这里部分代码省略.........
case 'f': // f = (+ignore) ignore this person
{
pMe->Ignore(szMsg);
break;
};
case 'g': // g = (-ignore) don't ignore this person
{
pMe->DontIgnore(szMsg);
break;
};
case 'h': // h = toggle ignoring this person
{
pMe->ToggleIgnore(szMsg);
break;
};
case 'i': // i = grant speaking privs to this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->GrantVoice(pMe, szMsg);
break;
};
case 'j': // j = remove speaking privs from this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->RevokeVoice(pMe, szMsg);
break;
};
case 'k': // k = (/voice) toggle voice status
{
if (!pChannel)
goto not_in_a_channel;
pChannel->ToggleVoice(pMe, szMsg);
break;
};
case 'l': // l = grant moderator status to this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->GrantModerator(pMe, szMsg);
break;
};
case 'm': // m = remove moderator status from this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->RevokeModerator(pMe, szMsg);
break;
};
case 'n': // m = toggle the moderator status for this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->ToggleModerator(pMe, szMsg);
break;
}
case 'o': // o = turn on receiving private messages
{
pMe->SetReceiving(true);
break;
}
case 'p': // p = turn off receiving private messages
{
pMe->SetReceiving(false);
break;
示例2: Action
//.........这里部分代码省略.........
break;
}
case CHATACT_AddIgnore: // client shortcut: +ignore
{
pMe->AddIgnore(pszMsg);
break;
}
case CHATACT_RemoveIgnore: // client shortcut: -ignore
{
pMe->RemoveIgnore(pszMsg);
break;
}
case CHATACT_ToggleIgnore: // client shortcut: /ignore
{
pMe->ToggleIgnore(pszMsg);
break;
}
case CHATACT_AddVoice: // client shortcut: +voice
{
if ( !pChannel )
goto NoConference;
pChannel->AddVoice(pMe, pszMsg);
break;
}
case CHATACT_RemoveVoice: // client shortcut: -voice
{
if ( !pChannel )
goto NoConference;
pChannel->RemoveVoice(pMe, pszMsg);
break;
}
case CHATACT_ToggleVoice: // client shortcut: /voice
{
if ( !pChannel )
goto NoConference;
pChannel->ToggleVoice(pMe, pszMsg);
break;
}
case CHATACT_AddModerator: // client shortcut: +ops
{
if ( !pChannel )
goto NoConference;
pChannel->AddModerator(pMe, pszMsg);
break;
}
case CHATACT_RemoveModerator: // client shortcut: -ops
{
if ( !pChannel )
goto NoConference;
pChannel->RemoveModerator(pMe, pszMsg);
break;
}
case CHATACT_ToggleModerator: // client shortcut: /ops
{
if ( !pChannel )
goto NoConference;
pChannel->ToggleModerator(pMe, pszMsg);
break;
}
case CHATACT_EnablePrivateMessages: // client shortcut: +receive