Files
RedBear-OS/local/recipes/tui/mc/source/lib/widget/button.h
T
vasilito cee25393d8 fix: boot process improvements — dependency cycle, INIT_NOTIFY, probing loop, and log spam fixes
- Fix P15-8-init-cycle-detection.patch: replace visiting+error with seen+silent-skip
  to eliminate 11 false-positive 'dependency cycle detected' errors on shared deps
- Fix P0-daemon-fix-init-notify-unwrap.patch: remove eprintln! for missing
  INIT_NOTIFY (expected for oneshot_async services, ~7 daemons affected)
- Fix driver-manager hotplug loop: add PERMANENTLY_SKIPPED static set shared
  between hotplug handler and DriverConfig::probe() to stop infinite re-probing
  of Fatal/NotSupported/deferred-exhausted device+driver pairs (e.g. ided)
- Fix driver-manager log_timeline: suppress repeated EPIPE/ENOENT errors with
  AtomicI32 dedup and AtomicBool one-shot guards for boot timeline JSON
- Add driver-manager SIGTERM handler, ACPI bus registration, --status mode,
  driver reap loop, graceful shutdown, and reduced deferred retries (30→3)
2026-05-17 12:34:02 +03:00

59 lines
1.9 KiB
C

/** \file button.h
* \brief Header: WButton widget
*/
#ifndef MC__WIDGET_BUTTON_H
#define MC__WIDGET_BUTTON_H
/*** typedefs(not structures) and defined constants **********************************************/
#define BUTTON(x) ((WButton *)(x))
struct WButton;
/* button callback */
/* return 0 to continue work with dialog, non-zero to close */
typedef int (*bcback_fn) (struct WButton * button, int action);
/*** enums ***************************************************************************************/
typedef enum
{
HIDDEN_BUTTON = 0,
NARROW_BUTTON = 1,
NORMAL_BUTTON = 2,
DEFPUSH_BUTTON = 3
} button_flags_t;
/*** structures declarations (and typedefs of structures)*****************************************/
typedef struct WButton
{
Widget widget;
int action; /* what to do when pressed */
button_flags_t flags; /* button flags */
hotkey_t text; /* text of button, contain hotkey too */
int hotpos; /* offset hot KEY char in text */
bcback_fn callback; /* callback function */
} WButton;
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
WButton *button_new (int y, int x, int action, button_flags_t flags, const char *text,
bcback_fn callback);
char *button_get_text (const WButton * b);
void button_set_text (WButton * b, const char *text);
int button_get_len (const WButton * b);
cb_ret_t button_default_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm,
void *data);
void button_mouse_default_callback (Widget * w, mouse_msg_t msg, mouse_event_t * event);
/*** inline functions ****************************************************************************/
#endif /* MC__WIDGET_BUTTON_H */