swad-core/swad_program.h

90 lines
3.0 KiB
C
Raw Normal View History

2020-02-20 23:48:48 +01:00
// swad_program.h: course program
#ifndef _SWAD_PRG
#define _SWAD_PRG
/*
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-2020 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 "swad_date.h"
#include "swad_file_browser.h"
#include "swad_notification.h"
#include "swad_user.h"
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
#define Prg_MAX_CHARS_PROGRAM_ITEM_TITLE (128 - 1) // 127
#define Prg_MAX_BYTES_PROGRAM_ITEM_TITLE ((Prg_MAX_CHARS_PROGRAM_ITEM_TITLE + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2020-03-02 14:41:52 +01:00
struct ProgramItemHierarchy
2020-02-20 23:48:48 +01:00
{
2020-02-26 00:26:07 +01:00
long ItmCod;
2020-02-27 23:44:21 +01:00
unsigned Index;
2020-02-27 00:19:55 +01:00
unsigned Level;
2020-02-20 23:48:48 +01:00
bool Hidden;
2020-03-02 14:41:52 +01:00
};
struct ProgramItem
{
struct ProgramItemHierarchy Hierarchy;
2020-02-20 23:48:48 +01:00
long UsrCod;
time_t TimeUTC[Dat_NUM_START_END_TIME];
bool Open;
char Title[Prg_MAX_BYTES_PROGRAM_ITEM_TITLE + 1];
};
#define Prg_ORDER_DEFAULT Dat_START_TIME
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
void Prg_SeeCourseProgram (void);
2020-03-03 00:56:22 +01:00
void Prg_RequestCreatePrgItem (void);
void Prg_RequestChangePrgItem (void);
void Prg_RecFormNewPrgItem (void);
void Prg_RecFormChgPrgItem (void);
2020-02-27 00:19:55 +01:00
2020-02-20 23:48:48 +01:00
void Prg_ReqRemPrgItem (void);
void Prg_RemovePrgItem (void);
void Prg_HidePrgItem (void);
void Prg_ShowPrgItem (void);
2020-02-27 00:19:55 +01:00
2020-02-26 00:26:07 +01:00
void Prg_MoveUpPrgItem (void);
void Prg_MoveDownPrgItem (void);
2020-02-27 00:19:55 +01:00
void Prg_MoveLeftPrgItem (void);
2020-03-02 14:41:52 +01:00
void Prg_MoveRightPrgItem (void);
2020-02-27 00:19:55 +01:00
2020-02-20 23:48:48 +01:00
void Prg_RecFormPrgItem (void);
2020-02-26 00:26:07 +01:00
void Prg_RemoveCrsItems (long CrsCod);
unsigned Prg_GetNumItemsInCrsProgram(long CrsCod);
2020-02-20 23:48:48 +01:00
2020-02-26 00:26:07 +01:00
unsigned Prg_GetNumCoursesWithItems (Hie_Level_t Scope);
unsigned Prg_GetNumItems (Hie_Level_t Scope);
2020-02-20 23:48:48 +01:00
#endif