2016-09-27 13:53:17 +03:00
|
|
|
/*
|
|
|
|
* Widget group features module for Midnight Commander
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file group.h
|
|
|
|
* \brief Header: widget group features module
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MC__GROUP_H
|
|
|
|
#define MC__GROUP_H
|
|
|
|
|
|
|
|
#include "lib/global.h"
|
|
|
|
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
|
|
|
|
#define GROUP(x) ((WGroup *)(x))
|
|
|
|
#define CONST_GROUP(x) ((const WGroup *)(x))
|
|
|
|
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** typedefs(not structures) ********************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
struct WGroup
|
|
|
|
{
|
|
|
|
Widget widget;
|
|
|
|
|
|
|
|
/* Group members */
|
|
|
|
GList *widgets; /* widgets list */
|
|
|
|
GList *current; /* Currently active widget */
|
2016-09-27 14:08:42 +03:00
|
|
|
|
2016-09-28 11:01:30 +03:00
|
|
|
unsigned long widget_id; /* maximum id of all widgets */
|
2016-09-27 14:08:42 +03:00
|
|
|
gboolean winch_pending; /* SIGWINCH signal has been got. Resize group after rise */
|
2016-09-27 13:53:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
|
2016-09-28 11:01:30 +03:00
|
|
|
unsigned long group_add_widget_autopos (WGroup * g, void *w, widget_pos_flags_t pos_flags,
|
|
|
|
const void *before);
|
2019-10-16 10:33:00 +03:00
|
|
|
void group_remove_widget (void *w);
|
2016-09-28 11:01:30 +03:00
|
|
|
|
2016-09-27 16:16:38 +03:00
|
|
|
void group_set_current_widget_next (WGroup * g);
|
|
|
|
void group_set_current_widget_prev (WGroup * g);
|
|
|
|
|
|
|
|
GList *group_get_widget_next_of (GList * w);
|
|
|
|
GList *group_get_widget_prev_of (GList * w);
|
|
|
|
|
|
|
|
void group_select_next_widget (WGroup * g);
|
|
|
|
void group_select_prev_widget (WGroup * g);
|
|
|
|
|
|
|
|
void group_select_widget_by_id (const WGroup * g, unsigned long id);
|
|
|
|
|
2016-09-27 13:53:17 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-09-27 16:16:38 +03:00
|
|
|
/**
|
2016-09-28 11:01:30 +03:00
|
|
|
* Add widget to group before current widget.
|
|
|
|
*
|
|
|
|
* @param g WGroup object
|
|
|
|
* @param w widget to be added
|
|
|
|
*
|
|
|
|
* @return widget ID
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline unsigned long
|
|
|
|
group_add_widget (WGroup * g, void *w)
|
|
|
|
{
|
|
|
|
return group_add_widget_autopos (g, w, WPOS_KEEP_DEFAULT,
|
|
|
|
g->current != NULL ? g->current->data : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* Add widget to group before specified widget.
|
2016-09-27 16:16:38 +03:00
|
|
|
*
|
|
|
|
* @param g WGroup object
|
2016-09-28 11:01:30 +03:00
|
|
|
* @param w widget to be added
|
|
|
|
* @param before add @w before this widget
|
|
|
|
*
|
|
|
|
* @return widget ID
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline unsigned long
|
|
|
|
group_add_widget_before (WGroup * g, void *w, void *before)
|
|
|
|
{
|
|
|
|
return group_add_widget_autopos (g, w, WPOS_KEEP_DEFAULT, before);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* Select current widget in the Dialog.
|
|
|
|
*
|
|
|
|
* @param h WDialog object
|
2016-09-27 16:16:38 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
group_select_current_widget (WGroup * g)
|
|
|
|
{
|
|
|
|
if (g->current != NULL)
|
|
|
|
widget_select (WIDGET (g->current->data));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-09-27 13:53:17 +03:00
|
|
|
#endif /* MC__GROUP_H */
|