swad-core/swad_menu.h

66 lines
2.5 KiB
C
Raw Normal View History

2015-01-02 12:57:26 +01:00
// swad_menu.h: menu (horizontal or vertical) selection
#ifndef _SWAD_MNU
#define _SWAD_MNU
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2024 Antonio Ca<EFBFBD>as Vargas
2015-01-02 12:57:26 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/***************************** Public constants ******************************/
/*****************************************************************************/
#define Mnu_NUM_MENUS 2
/*****************************************************************************/
/******************************* Public types ********************************/
/*****************************************************************************/
2015-11-30 01:13:00 +01:00
#define Mnu_NUM_MENUS 2
2015-01-02 12:57:26 +01:00
typedef enum
{
Mnu_MENU_HORIZONTAL = 0,
Mnu_MENU_VERTICAL = 1,
} Mnu_Menu_t; // Stored in database. Don't change numbers!
#define Mnu_MENU_DEFAULT Mnu_MENU_HORIZONTAL
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
const char *Mnu_GetIconFromNumOptInMenu (unsigned NumOptInMenu);
const char *Mnu_GetIconFromAction (Act_Action_t Action);
2015-12-08 01:47:48 +01:00
Act_Action_t Mnu_GetFirstActionAvailableInCurrentTab (void);
2015-11-29 22:06:22 +01:00
void Mnu_WriteMenuThisTab (void);
2015-01-04 14:49:32 +01:00
2015-01-02 12:57:26 +01:00
void Mnu_PutIconsToSelectMenu (void);
void Mnu_ChangeMenu (void);
Mnu_Menu_t Mnu_GetParMenu (void);
2017-05-04 11:03:44 +02:00
Mnu_Menu_t Mnu_GetMenuFromStr (const char *Str);
2015-01-02 12:57:26 +01:00
2019-10-24 09:46:20 +02:00
void Mnu_ContextMenuBegin (void);
void Mnu_ContextMenuEnd (void);
//-------------------------------- Figures ------------------------------------
void Mnu_GetAndShowNumUsrsPerMenu (void);
2015-01-02 12:57:26 +01:00
#endif