xtd - Reference Guide
0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
|
#include <context_menu.h>
Inherits xtd::forms::menu.
Public Member Functions | |
context_menu () | |
Initialize context_menu class. | |
Public Member Functions inherited from xtd::forms::menu | |
std::optional< context_menu > | get_context_menu () const |
Gets the context_menu that contains this menu. | |
std::optional< main_menu > | get_main_menu () const |
Gets the main_menu that contains this menu. | |
intptr_t | handle () const |
Gets a value representing the window handle for the menu. | |
bool | is_parent () const |
Gets a value indicating whether this menu contains any menu items. | |
const menu_item & | mdi_list_item () const |
Gets a value indicating the menu_item that is used to display a list of multiple document interface (MDI) child forms. | |
menu_item_collection & | menu_items () |
Gets a value indicating the collection of menu_item objects associated with the menu. | |
const menu_item_collection & | menu_items () const |
Gets a value indicating the collection of menu_item objects associated with the menu. | |
menu & | menu_items (const menu_item_collection &value) |
Sets a value indicating the collection of menu_item objects associated with the menu. | |
virtual void | merge_menu (const menu &menu_src) |
Merges the MenuItem objects of one menu with the current menu. | |
const xtd::ustring & | name () const |
Gets the name of the menu. | |
menu & | name (const xtd::ustring &value) |
Sets the name of the menu. | |
std::any | tag () const |
Gets user-defined data associated with the control. | |
menu & | tag (std::any value) |
Sets user-defined data associated with the control. | |
xtd::ustring | to_string () const noexcept override |
Returns a string that represents the menu control. | |
Public Member Functions inherited from xtd::object | |
object ()=default | |
Create a new instance of the ultimate base class object. | |
virtual bool | equals (const object &obj) const noexcept |
Determines whether the specified object is equal to the current object. | |
virtual size_t | get_hash_code () const noexcept |
Serves as a hash function for a particular type. | |
template<typename object_t > | |
std::unique_ptr< object_t > | memberwise_clone () const |
Gets the type of the current instance. | |
virtual xtd::ustring | to_string () const noexcept |
Returns a std::string that represents the current object. | |
Protected Member Functions | |
intptr_t | create_menu_handle () override |
Creates a new handle to the Menu. | |
void | destroy_menu_handle (intptr_t handle) override |
Destroy the handle to the Menu. | |
Protected Member Functions inherited from xtd::forms::menu | |
menu () | |
Initializes a new instance of the Menu class. | |
menu (const menu_item_collection &items) | |
Initializes a new instance of the Menu class. | |
void | clone_menu (const menu &menu_src) |
Copies the menu that is passed as a parameter to the current menu. | |
virtual intptr_t | create_menu_handle ()=0 |
Creates a new handle to the Menu. | |
virtual void | destroy_menu_handle (intptr_t handle)=0 |
Destroy the handle to the Menu. | |
Protected Member Functions inherited from xtd::forms::component | |
component ()=default | |
Initialises a new instance of the component class. | |
virtual bool | can_raise_events () const |
Gets a value indicating whether the component can raise an event. | |
bool | design_mode () const |
Gets a value that indicates whether the component is currently in design mode. | |
Additional Inherited Members | |
Public Types inherited from xtd::forms::menu | |
using | menu_item_collection = layout::arranged_element_collection< menu_item > |
Represents a collection of menu_item objects. | |
Static Public Attributes inherited from xtd::forms::menu | |
static constexpr const int | find_handle |
Specifies that the find_menu_item(int32_t, intptr_t) method should search for a handle. | |
static constexpr const int | find_shortcut |
Specifies that the find_menu_item(int32_t, intptr_t) method should search for a shortcut. | |
Static Public Member Functions inherited from xtd::object | |
static bool | equals (const object &object_a, const object &object_b) noexcept |
Determines whether the specified object instances are considered equal. | |
static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
Determines whether the specified object instances are the same instance. | |
xtd::forms::context_menu::context_menu | ( | ) |
Initialize context_menu class.
|
overrideprotectedvirtual |
Creates a new handle to the Menu.
Implements xtd::forms::menu.
|
overrideprotectedvirtual |