swad-core/swad_menu.c

488 lines
13 KiB
C
Raw Normal View History

2015-01-04 15:48:24 +01:00
// swad_menu.c: menu (horizontal or vertical) selection
2015-01-02 12:57:26 +01:00
/*
SWAD (Shared Workspace At a Distance),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2017-01-13 01:51:23 +01:00
Copyright (C) 1999-2017 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/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
#include <stdio.h> // For fprintf, etc.
#include "swad_database.h"
#include "swad_global.h"
#include "swad_layout.h"
#include "swad_menu.h"
#include "swad_parameter.h"
#include "swad_preference.h"
2015-01-04 15:48:24 +01:00
#include "swad_tab.h"
2015-01-02 12:57:26 +01:00
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
2015-01-04 15:48:24 +01:00
/****************************** Private constants ****************************/
2015-01-02 12:57:26 +01:00
/*****************************************************************************/
#define MAX_MENU_ID 16
const char *Mnu_MenuId[Mnu_NUM_MENUS] =
{
"horizontal",
"vertical",
};
const char *Mnu_MenuNames[Mnu_NUM_MENUS] =
{
"Horizontal",
"Vertical",
};
const char *Mnu_MenuIcons[Mnu_NUM_MENUS] =
{
"horizontal",
"vertical",
};
2015-12-08 01:47:48 +01:00
// Actions not initialized are 0 by default
const Act_Action_t Mnu_MenuActions[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] =
{
2016-12-15 02:22:47 +01:00
// TabUnk *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
0, // 0
0, // 1
0, // 2
0, // 3
0, // 4
0, // 5
0, // 6
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabSys *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActSysReqSch, // 0
ActSeeCty, // 1
ActSeePen, // 2
2017-03-27 01:21:10 +02:00
ActSeeDegTyp, // 3
ActSeeLnk, // 4
ActLstPlg, // 5
ActSetUp, // 6
ActSeeCalSys, // 7
0, // 8
2017-03-27 00:48:50 +02:00
0, // 9
2017-03-24 20:07:29 +01:00
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabCty *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActCtyReqSch, // 0
ActSeeCtyInf, // 1
ActSeeIns, // 2
2017-02-09 03:09:24 +01:00
ActSeeCalCty, // 3
2016-12-15 02:22:47 +01:00
0, // 4
0, // 5
0, // 6
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabIns *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActInsReqSch, // 0
ActSeeInsInf, // 1
ActSeeCtr, // 2
ActSeeDpt, // 3
2017-03-26 15:07:47 +02:00
ActSeeCalIns, // 4
0, // 5
2017-03-25 19:44:33 +01:00
0, // 6
2017-02-08 23:25:29 +01:00
0, // 7
2016-12-15 02:22:47 +01:00
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabCtr *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActCtrReqSch, // 0
ActSeeCtrInf, // 1
ActSeeDeg, // 2
2017-02-09 03:09:24 +01:00
ActSeeCalCtr, // 3
2017-02-08 23:25:29 +01:00
0, // 4
2016-12-15 02:22:47 +01:00
0, // 5
0, // 6
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabDeg *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActDegReqSch, // 0
ActSeeDegInf, // 1
ActSeeCrs, // 2
2017-02-09 03:09:24 +01:00
ActSeeCalDeg, // 3
2017-02-08 23:25:29 +01:00
0, // 4
2016-12-15 02:22:47 +01:00
0, // 5
0, // 6
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabCrs *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActCrsReqSch, // 0
ActSeeCrsInf, // 1
ActSeeTchGui, // 2
ActSeeSyl, // 3
2017-02-08 23:51:18 +01:00
ActSeeBib, // 4
ActSeeFAQ, // 5
ActSeeCrsLnk, // 6
ActSeeCrsTT, // 7
2017-02-09 03:09:24 +01:00
ActSeeCalCrs, // 8
2017-02-08 23:25:29 +01:00
0, // 9
0, // 10
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabAss *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActSeeAss, // 0
ActSeeAsg, // 1
2017-02-08 23:25:29 +01:00
ActReqTst, // 2
2017-04-27 10:54:45 +02:00
ActSeeAllSvy, // 3
ActSeeAllExaAnn, // 4
2017-02-08 23:25:29 +01:00
0, // 5
0, // 6
0, // 7
2016-12-15 02:22:47 +01:00
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
},
// TabFil *******************
{
ActSeeAdmDocIns, // 0
ActAdmShaIns, // 1
ActSeeAdmDocCtr, // 2
ActAdmShaCtr, // 3
ActSeeAdmDocDeg, // 4
ActAdmShaDeg, // 5
ActSeeAdmDocCrsGrp, // 6
ActAdmTchCrsGrp, // 7
ActAdmShaCrsGrp, // 8
ActAdmAsgWrkUsr, // 9
ActReqAsgWrkCrs, // 10
ActSeeAdmMrk, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabUsr *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActReqSelGrp, // 0
ActLstStd, // 1
ActLstTch, // 2
ActLstOth, // 3
ActSeeAtt, // 4
ActReqSignUp, // 5
ActSeeSignUpReq, // 6
ActLstCon, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-28 12:55:08 +01:00
},
2016-12-15 02:22:47 +01:00
// TabSoc *******************
2015-12-28 12:55:08 +01:00
{
2016-12-15 02:22:47 +01:00
ActSeeSocTmlGbl, // 0
ActSeeSocPrf, // 1
ActSeeFor, // 2
ActSeeChtRms, // 3
0, // 4
0, // 5
0, // 6
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabMsg *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActSeeNtf, // 0
ActSeeAnn, // 1
ActSeeAllNot, // 2
ActReqMsgUsr, // 3
ActSeeRcvMsg, // 4
ActSeeSntMsg, // 5
ActMaiStd, // 6
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2017-05-02 16:57:49 +02:00
// TabSta *******************
2015-12-08 01:47:48 +01:00
{
2017-04-27 10:15:07 +02:00
ActReqUseGbl, // 0
ActSeePhoDeg, // 1
ActReqStaCrs, // 2
ActReqAccGbl, // 3
ActReqMyUsgRep, // 4
ActMFUAct, // 5
0, // 6
2016-12-15 02:22:47 +01:00
0, // 7
0, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
2016-12-15 02:22:47 +01:00
// TabPrf *******************
2015-12-08 01:47:48 +01:00
{
2016-12-15 02:22:47 +01:00
ActFrmLogIn, // 0
ActFrmRolSes, // 1
ActMyCrs, // 2
ActSeeMyTT, // 3
ActSeeMyAgd, // 4
ActFrmMyAcc, // 5
ActReqEdiRecCom, // 6
ActEdiPrf, // 7
ActAdmBrf, // 8
0, // 9
0, // 10
2017-02-08 23:25:29 +01:00
0, // 11
2015-12-08 01:47:48 +01:00
},
};
2016-11-07 13:21:36 +01:00
/*****************************************************************************/
/****************************** Private prototypes ***************************/
/*****************************************************************************/
static void Mnu_PutIconsMenu (void);
2015-12-08 01:47:48 +01:00
/*****************************************************************************/
/******* When I change to another tab, go to the first option allowed ********/
/*****************************************************************************/
Act_Action_t Mnu_GetFirstActionAvailableInCurrentTab (void)
{
unsigned NumOptInMenu;
Act_Action_t Action;
/* Change current action to the first allowed action in current tab */
for (NumOptInMenu = 0;
NumOptInMenu < Act_MAX_OPTIONS_IN_MENU_PER_TAB;
NumOptInMenu++)
{
2016-01-17 15:10:54 +01:00
if ((Action = Mnu_MenuActions[Gbl.Action.Tab][NumOptInMenu]) == 0)
2015-12-08 01:47:48 +01:00
return ActUnk;
if (Act_CheckIfIHavePermissionToExecuteAction (Action))
return Action;
}
return ActUnk;
}
2015-01-04 14:49:32 +01:00
/*****************************************************************************/
2015-11-29 18:32:57 +01:00
/******************* Write horizontal menu of current tab ********************/
2015-01-04 14:49:32 +01:00
/*****************************************************************************/
2015-11-29 22:06:22 +01:00
void Mnu_WriteMenuThisTab (void)
2015-01-04 14:49:32 +01:00
{
2016-04-23 23:39:07 +02:00
extern struct Act_Actions Act_Actions[Act_NUM_ACTIONS];
2015-11-30 01:13:00 +01:00
extern const char *The_ClassTxtMenuOn[The_NUM_THEMES];
extern const char *The_ClassTxtMenuOff[The_NUM_THEMES];
2015-01-04 15:48:24 +01:00
extern const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB];
2015-01-04 14:49:32 +01:00
unsigned NumOptInMenu;
Act_Action_t NumAct;
const char *Title;
bool IsTheSelectedAction;
2015-11-29 22:06:22 +01:00
/***** Menu start *****/
2016-12-18 19:50:33 +01:00
fprintf (Gbl.F.Out,"<nav class=\"MENU_LIST_CONTAINER\">"
2015-12-01 00:38:22 +01:00
"<ul class=\"MENU_LIST\">");
2015-11-29 22:06:22 +01:00
2015-01-04 14:49:32 +01:00
/***** Loop to write all options in menu. Each row holds an option *****/
for (NumOptInMenu = 0;
NumOptInMenu < Act_MAX_OPTIONS_IN_MENU_PER_TAB;
NumOptInMenu++)
{
2016-01-17 15:10:54 +01:00
NumAct = Mnu_MenuActions[Gbl.Action.Tab][NumOptInMenu];
2015-01-04 14:49:32 +01:00
if (NumAct == 0) // At the end of each tab, actions are initialized to 0, so 0 marks the end of the menu
break;
if (Act_CheckIfIHavePermissionToExecuteAction (NumAct))
{
2016-01-17 15:10:54 +01:00
IsTheSelectedAction = (NumAct == Act_Actions[Gbl.Action.Act].SuperAction);
2015-01-04 14:49:32 +01:00
Title = Act_GetSubtitleAction (NumAct);
/***** Start of element *****/
2015-11-29 22:06:22 +01:00
fprintf (Gbl.F.Out,"<li class=\"MENU_LIST_ITEM\">");
2015-01-04 14:49:32 +01:00
/***** Start of container used to highlight this option *****/
2015-11-29 18:32:57 +01:00
fprintf (Gbl.F.Out,"<div class=\"%s\">",
2015-11-30 01:13:00 +01:00
IsTheSelectedAction ? "MENU_OPT_ON" :
"MENU_OPT_OFF");
2015-01-04 14:49:32 +01:00
/***** Start of form and link *****/
Act_FormStart (NumAct);
2015-12-01 02:34:32 +01:00
Act_LinkFormSubmit (Title,
IsTheSelectedAction ? The_ClassTxtMenuOn[Gbl.Prefs.Theme] :
2016-07-01 17:13:41 +02:00
The_ClassTxtMenuOff[Gbl.Prefs.Theme],NULL);
2015-11-29 20:03:44 +01:00
2015-01-04 14:49:32 +01:00
/***** Icon *****/
2016-11-14 10:05:41 +01:00
fprintf (Gbl.F.Out,"<div class=\"MENU_ICO\""
2015-12-28 15:44:56 +01:00
" style=\"background-image:url('%s/%s/%s');\">",
2015-01-13 14:19:08 +01:00
Gbl.Prefs.PathIconSet,Cfg_ICON_ACTION,
2015-01-04 14:49:32 +01:00
Act_Actions[NumAct].Icon);
/***** Text *****/
2015-11-30 01:13:00 +01:00
fprintf (Gbl.F.Out,"<div class=\"MENU_TEXT %s\">"
"%s"
"</div>",
IsTheSelectedAction ? The_ClassTxtMenuOn[Gbl.Prefs.Theme] :
The_ClassTxtMenuOff[Gbl.Prefs.Theme],
2016-01-17 15:10:54 +01:00
Txt_MENU_TITLE[Gbl.Action.Tab][NumOptInMenu]);
2015-01-04 14:49:32 +01:00
/***** End of link and form *****/
fprintf (Gbl.F.Out,"</div>"
2015-03-13 00:16:02 +01:00
"</a>");
2015-11-29 18:32:57 +01:00
Act_FormEnd ();
2015-01-04 14:49:32 +01:00
/***** End of container used to highlight this option *****/
2015-11-29 18:32:57 +01:00
fprintf (Gbl.F.Out,"</div>");
2015-01-04 14:49:32 +01:00
/***** End of element *****/
fprintf (Gbl.F.Out,"</li>");
}
}
2015-11-29 22:06:22 +01:00
/***** Menu end *****/
fprintf (Gbl.F.Out,"</ul>"
2016-12-18 19:50:33 +01:00
"</nav>");
2015-01-04 14:49:32 +01:00
}
2015-01-02 12:57:26 +01:00
/*****************************************************************************/
/************* Put icons to select menu (horizontal or vertical) *************/
/*****************************************************************************/
void Mnu_PutIconsToSelectMenu (void)
{
2016-11-13 01:21:35 +01:00
extern const char *Hlp_PROFILE_Preferences_menu;
2015-01-02 12:57:26 +01:00
extern const char *Txt_Menu;
extern const char *Txt_MENU_NAMES[Mnu_NUM_MENUS];
Mnu_Menu_t Menu;
2017-06-10 20:56:50 +02:00
Lay_StartRoundFrame (NULL,Txt_Menu,Mnu_PutIconsMenu,
Hlp_PROFILE_Preferences_menu,
false); // Not closable
2016-12-23 22:19:03 +01:00
fprintf (Gbl.F.Out,"<div class=\"PREF_CONTAINER\">");
2015-01-02 12:57:26 +01:00
for (Menu = (Mnu_Menu_t) 0;
Menu < Mnu_NUM_MENUS;
Menu++)
{
2016-12-23 22:19:03 +01:00
fprintf (Gbl.F.Out,"<div class=\"%s\">",
2015-11-22 00:52:55 +01:00
Menu == Gbl.Prefs.Menu ? "PREF_ON" :
"PREF_OFF");
2015-01-02 12:57:26 +01:00
Act_FormStart (ActChgMnu);
Par_PutHiddenParamUnsigned ("Menu",(unsigned) Menu);
fprintf (Gbl.F.Out,"<input type=\"image\" src=\"%s/%s32x32.gif\""
2017-05-05 13:42:59 +02:00
" alt=\"%s\" title=\"%s\" class=\"ICO25x25B\" />",
2015-01-02 12:57:26 +01:00
Gbl.Prefs.IconsURL,
Mnu_MenuIcons[Menu],
Txt_MENU_NAMES[Menu],
Txt_MENU_NAMES[Menu]);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2016-12-23 22:19:03 +01:00
fprintf (Gbl.F.Out,"</div>");
2015-01-02 12:57:26 +01:00
}
2016-12-23 22:19:03 +01:00
fprintf (Gbl.F.Out,"</div>");
2016-11-07 13:21:36 +01:00
Lay_EndRoundFrame ();
}
/*****************************************************************************/
/****************** Put contextual icons in menu preference ******************/
/*****************************************************************************/
static void Mnu_PutIconsMenu (void)
{
/***** Put icon to show a figure *****/
Gbl.Stat.FigureType = Sta_MENUS;
Sta_PutIconToShowFigure ();
2015-01-02 12:57:26 +01:00
}
/*****************************************************************************/
/******************************** Change menu ********************************/
/*****************************************************************************/
void Mnu_ChangeMenu (void)
{
char Query[512];
/***** Get param with menu *****/
Gbl.Prefs.Menu = Mnu_GetParamMenu ();
/***** Store menu in database *****/
if (Gbl.Usrs.Me.Logged)
{
2017-03-24 01:09:27 +01:00
sprintf (Query,"UPDATE usr_data SET Menu=%u WHERE UsrCod=%ld",
2015-01-02 12:57:26 +01:00
(unsigned) Gbl.Prefs.Menu,Gbl.Usrs.Me.UsrDat.UsrCod);
DB_QueryUPDATE (Query,"can not update your preference about menu");
}
/***** Set preferences from current IP *****/
2015-03-14 17:39:04 +01:00
Pre_SetPrefsFromIP ();
2015-01-02 12:57:26 +01:00
}
/*****************************************************************************/
/************************* Get parameter with menu ***************************/
/*****************************************************************************/
Mnu_Menu_t Mnu_GetParamMenu (void)
{
2017-01-29 21:41:08 +01:00
return (Mnu_Menu_t)
Par_GetParToUnsignedLong ("Menu",
0,
Mnu_NUM_MENUS - 1,
(unsigned long) Mnu_MENU_DEFAULT);
2015-01-02 12:57:26 +01:00
}
2017-05-04 11:03:44 +02:00
/*****************************************************************************/
/*************************** Get menu from string ****************************/
/*****************************************************************************/
Mnu_Menu_t Mnu_GetMenuFromStr (const char *Str)
{
unsigned UnsignedNum;
if (sscanf (Str,"%u",&UnsignedNum) == 1)
if (UnsignedNum < Mnu_NUM_MENUS)
return (Mnu_Menu_t) UnsignedNum;
return Mnu_MENU_DEFAULT;
}