swad-core/swad_menu.c

312 lines
11 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.
Copyright (C) 1999-2015 Antonio Ca<EFBFBD>as Vargas
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 14:49:32 +01:00
extern struct Act_Actions Act_Actions[Act_NUM_ACTIONS];
2015-01-02 12:57:26 +01:00
/*****************************************************************************/
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-01-04 14:49:32 +01:00
/*****************************************************************************/
2015-11-27 13:45:39 +01:00
/******************* Write vertical menu of current tab **********************/
2015-01-04 14:49:32 +01:00
/*****************************************************************************/
2015-11-27 13:45:39 +01:00
void Mnu_WriteVerticalMenuThisTab (void)
2015-01-04 14:49:32 +01:00
{
extern const char *The_ClassMenuOn[The_NUM_THEMES];
extern const char *The_ClassMenuOff[The_NUM_THEMES];
extern const char *The_ClassSeparator[The_NUM_THEMES];
2015-01-04 15:48:24 +01:00
extern const struct Act_Menu Act_Menu[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB];
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;
bool SeparationBetweenPreviousAndCurrentOption = false;
bool PreviousVisibleOptions = false;
/***** List start *****/
2015-11-25 20:05:25 +01:00
fprintf (Gbl.F.Out,"<ul id=\"vertical_menu\">");
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++)
{
NumAct = Act_Menu[Gbl.CurrentTab][NumOptInMenu].Action;
if (NumAct == 0) // At the end of each tab, actions are initialized to 0, so 0 marks the end of the menu
break;
2015-09-17 17:49:46 +02:00
2015-01-04 14:49:32 +01:00
if (Act_CheckIfIHavePermissionToExecuteAction (NumAct))
{
IsTheSelectedAction = (NumAct == Act_Actions[Gbl.CurrentAct].SuperAction);
Title = Act_GetSubtitleAction (NumAct);
if (SeparationBetweenPreviousAndCurrentOption)
{
if (PreviousVisibleOptions)
fprintf (Gbl.F.Out,"<li>"
"<hr class=\"%s\" />"
"</li>",
The_ClassSeparator[Gbl.Prefs.Theme]);
SeparationBetweenPreviousAndCurrentOption = false;
}
/***** Start of element *****/
fprintf (Gbl.F.Out,"<li>");
/***** Start of container used to highlight this option *****/
if (!IsTheSelectedAction)
fprintf (Gbl.F.Out,"<div class=\"ICON_HIGHLIGHT\">");
/***** Start of form and link *****/
Act_FormStart (NumAct);
Act_LinkFormSubmit (Title,IsTheSelectedAction ? The_ClassMenuOn[Gbl.Prefs.Theme] :
The_ClassMenuOff[Gbl.Prefs.Theme]);
/***** Icon *****/
fprintf (Gbl.F.Out,"<div class=\"MENU_OPTION\""
2015-01-13 14:19:08 +01:00
" style=\"background-image:url('%s/%s/%s64x64.gif');"
2015-09-28 18:28:29 +02:00
" background-size:40px 40px;\">",
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 *****/
fprintf (Gbl.F.Out,"<div class=\"MENU_TEXT\">"
"<span class=\"%s\">%s</span>",
IsTheSelectedAction ? The_ClassMenuOn[Gbl.Prefs.Theme] :
The_ClassMenuOff[Gbl.Prefs.Theme],
Txt_MENU_TITLE[Gbl.CurrentTab][NumOptInMenu]);
/***** End of link and form *****/
fprintf (Gbl.F.Out,"</div>"
"</div>"
2015-03-13 00:16:02 +01:00
"</a>");
Act_FormEnd ();
2015-01-04 14:49:32 +01:00
/***** End of container used to highlight this option *****/
if (!IsTheSelectedAction)
fprintf (Gbl.F.Out,"</div>");
/***** End of element *****/
fprintf (Gbl.F.Out,"</li>");
PreviousVisibleOptions = true;
}
2015-09-17 17:49:46 +02:00
if (!SeparationBetweenPreviousAndCurrentOption)
SeparationBetweenPreviousAndCurrentOption = Act_Menu[Gbl.CurrentTab][NumOptInMenu].SubsequentSeparation;
2015-01-04 14:49:32 +01:00
}
/***** List end *****/
fprintf (Gbl.F.Out,"</ul>");
}
/*****************************************************************************/
2015-11-27 13:45:39 +01:00
/******************* Write horizontal menu of current tab ********************/
2015-01-04 14:49:32 +01:00
/*****************************************************************************/
2015-11-27 13:45:39 +01:00
void Mnu_WriteHorizontalMenuThisTab (void)
2015-01-04 14:49:32 +01:00
{
extern const char *The_ClassMenuOn[The_NUM_THEMES];
extern const char *The_ClassMenuOff[The_NUM_THEMES];
2015-01-04 15:48:24 +01:00
extern const struct Act_Menu Act_Menu[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB];
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;
/***** List start *****/
2015-11-25 20:05:25 +01:00
fprintf (Gbl.F.Out,"<div id=\"horizontal_menu\">"
2015-01-04 14:49:32 +01:00
"<ul>");
/***** Loop to write all options in menu. Each row holds an option *****/
for (NumOptInMenu = 0;
NumOptInMenu < Act_MAX_OPTIONS_IN_MENU_PER_TAB;
NumOptInMenu++)
{
NumAct = Act_Menu[Gbl.CurrentTab][NumOptInMenu].Action;
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))
{
IsTheSelectedAction = (NumAct == Act_Actions[Gbl.CurrentAct].SuperAction);
Title = Act_GetSubtitleAction (NumAct);
/***** Start of element *****/
fprintf (Gbl.F.Out,"<li class=\"%s\">",
IsTheSelectedAction ? "MENU_ON" :
"MENU_OFF");
/***** Start of container used to highlight this option *****/
if (IsTheSelectedAction)
2015-08-06 13:18:36 +02:00
fprintf (Gbl.F.Out,"<div class=\"ICON_SCALED\">");
2015-01-04 14:49:32 +01:00
else
2015-08-06 13:18:36 +02:00
fprintf (Gbl.F.Out,"<div class=\"ICON_HIGHLIGHT ICON_SCALING\">");
2015-01-04 14:49:32 +01:00
/***** Start of form and link *****/
Act_FormStart (NumAct);
Act_LinkFormSubmit (Title,IsTheSelectedAction ? The_ClassMenuOn[Gbl.Prefs.Theme] :
The_ClassMenuOff[Gbl.Prefs.Theme]);
2015-01-13 14:19:08 +01:00
fprintf (Gbl.F.Out,"<img src=\"%s/%s/%s64x64.gif\""
2015-07-22 11:56:26 +02:00
" alt=\"%s\" title=\"%s\""
" class=\"ICON28x28\" />"
2015-01-04 14:49:32 +01:00
"<div>%s</div>"
2015-03-13 00:16:02 +01:00
"</a>",
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,
Txt_MENU_TITLE[Gbl.CurrentTab][NumOptInMenu],
2015-07-22 11:56:26 +02:00
Txt_MENU_TITLE[Gbl.CurrentTab][NumOptInMenu],
2015-01-04 14:49:32 +01:00
Txt_MENU_TITLE[Gbl.CurrentTab][NumOptInMenu]);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2015-01-04 14:49:32 +01:00
/***** End of container used to highlight this option *****/
fprintf (Gbl.F.Out,"</div>");
/***** End of element *****/
fprintf (Gbl.F.Out,"</li>");
}
}
/***** List end *****/
fprintf (Gbl.F.Out,"</ul>"
"</div>");
}
2015-01-02 12:57:26 +01:00
/*****************************************************************************/
/************* Put icons to select menu (horizontal or vertical) *************/
/*****************************************************************************/
void Mnu_PutIconsToSelectMenu (void)
{
extern const char *Txt_Menu;
extern const char *Txt_MENU_NAMES[Mnu_NUM_MENUS];
Mnu_Menu_t Menu;
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Txt_Menu);
2015-01-02 12:57:26 +01:00
fprintf (Gbl.F.Out,"<tr>");
for (Menu = (Mnu_Menu_t) 0;
Menu < Mnu_NUM_MENUS;
Menu++)
{
fprintf (Gbl.F.Out,"<td 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\""
" alt=\"%s\" title=\"%s\" class=\"ICON32x32B\""
2015-03-13 00:16:02 +01:00
" style=\"margin:0 auto;\" />",
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 ();
fprintf (Gbl.F.Out,"</td>");
2015-01-02 12:57:26 +01:00
}
fprintf (Gbl.F.Out,"</tr>");
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
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)
{
sprintf (Query,"UPDATE usr_data SET Menu='%u' WHERE UsrCod='%ld'",
(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)
{
char UnsignedStr[1+10+1];
unsigned UnsignedNum;
Par_GetParToText ("Menu",UnsignedStr,1+10);
if (sscanf (UnsignedStr,"%u",&UnsignedNum) == 1)
if (UnsignedNum < Mnu_NUM_MENUS)
return (Mnu_Menu_t) UnsignedNum;
return Mnu_MENU_UNKNOWN;
}