Context menus are application commands that appear on the context menu (right click or tap) of users or messages to perform context-specific actions. They can be created using dpp::slashcommand. Once you create a context menu, try right-clicking either a user or message to see it in your server!
- Note
- This example sets the command as the type dpp::ctxm_user which can only be used by right clicking on a user. To make it appear on a message, you'll want to switch the type to dpp::ctxm_message and listen for the on_message_context_menu (dpp::message_context_menu_t) event.
The following example shows how to create and handle user context menus for message context menus, read the notice above.
#include <dpp/dpp.h>
#include <iostream>
int main()
{
dpp::user author =
event.command.get_issuing_user();
}
});
bot.guild_command_create(command, 857692897221033129);
}
});
return 0;
}
The cluster class represents a group of shards and a command queue for sending and receiving commands...
Definition cluster.h:89
std::string get_command_name() const
Get the command name for a command interaction.
Represents an application command, created by your bot either globally, or on a guild.
Definition appcommand.h:1436
slashcommand & set_application_id(snowflake i)
Set the application id of the command.
slashcommand & set_type(slashcommand_contextmenu_type _type)
Set the type of the slash command (only for context menu entries).
slashcommand & set_name(const std::string &n)
Set the name of the command.
Represents a user on discord. May or may not be a member of a dpp::guild.
Definition user.h:163
static std::string get_mention(const snowflake &id)
Create a mentionable user.
std::function< void(const dpp::log_t &)> DPP_EXPORT cout_logger()
Get a default logger that outputs to std::cout. e.g.
@ ctxm_user
A slashcommand that goes in the user context menu.
Definition appcommand.h:848
auto run_once()
Run some code within an if() statement only once.
Definition once.h:41
@ st_wait
Wait forever on a condition variable. The cluster will spawn threads for each shard and start() will ...
Definition cluster.h:72
interaction command
command interaction
Definition dispatcher.h:789
Session ready.
Definition dispatcher.h:1072
It registers a guild command that can be called by right-clicking a user and clicking on the created menu.