mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-13 05:06:30 +04:00
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
43 lines
1007 B
C++
43 lines
1007 B
C++
#pragma once
|
|
#include "generic_view_module.h"
|
|
#include <gui/modules/submenu.h>
|
|
|
|
class SubmenuVM : public GenericViewModule {
|
|
public:
|
|
SubmenuVM(void);
|
|
~SubmenuVM() final;
|
|
View* get_view() final;
|
|
void clean() final;
|
|
|
|
/**
|
|
* @brief Add item to submenu
|
|
*
|
|
* @param label - menu item label
|
|
* @param index - menu item index, used for callback, may be the same with other items
|
|
* @param callback - menu item callback
|
|
* @param callback_context - menu item callback context
|
|
*/
|
|
void add_item(
|
|
const char* label,
|
|
uint32_t index,
|
|
SubmenuItemCallback callback,
|
|
void* callback_context);
|
|
|
|
/**
|
|
* @brief Set submenu item selector
|
|
*
|
|
* @param index index of the item to be selected
|
|
*/
|
|
void set_selected_item(uint32_t index);
|
|
|
|
/**
|
|
* @brief Set optional header for submenu
|
|
*
|
|
* @param header header to set
|
|
*/
|
|
void set_header(const char* header);
|
|
|
|
private:
|
|
Submenu* submenu;
|
|
};
|