mirror of https://github.com/acanas/swad-core.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.0 KiB
C
78 lines
3.0 KiB
C
// swad_timeline.h: social timeline
|
|
|
|
#ifndef _SWAD_TML_COM
|
|
#define _SWAD_TML_COM
|
|
/*
|
|
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-2023 Antonio Cañ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_timeline_note.h"
|
|
#include "swad_timeline_post.h"
|
|
|
|
/*****************************************************************************/
|
|
/******************************** Public types *******************************/
|
|
/*****************************************************************************/
|
|
|
|
struct TmlCom_Comment
|
|
{
|
|
long PubCod; // Unique code/identifier for each publication
|
|
long UsrCod; // Publisher
|
|
long NotCod; // Note code to which this comment belongs
|
|
time_t DateTimeUTC; // Date-time of publication in UTC time
|
|
unsigned NumFavs; // Number of times (users) this comment has been favourited
|
|
struct TmlPst_Content Content;
|
|
};
|
|
|
|
/*****************************************************************************/
|
|
/****************************** Public prototypes ****************************/
|
|
/*****************************************************************************/
|
|
|
|
void TmlCom_PutIconToToggleComm (const struct Tml_Timeline *Timeline,
|
|
const char UniqueId[Frm_MAX_BYTES_ID + 1]);
|
|
void TmlCom_PutIconCommDisabled (void);
|
|
|
|
void TmlCom_PutPhotoAndFormToWriteNewComm (const struct Tml_Timeline *Timeline,
|
|
long NotCod,
|
|
const char IdNewComm[Frm_MAX_BYTES_ID + 1]);
|
|
|
|
void TmlCom_WriteCommsInNote (const struct Tml_Timeline *Timeline,
|
|
const struct TmlNot_Note *Not);
|
|
|
|
void TmlCom_ShowHiddenCommsUsr (void);
|
|
void TmlCom_ShowHiddenCommsGbl (void);
|
|
|
|
void TmlCom_ReceiveCommUsr (void);
|
|
void TmlCom_ReceiveCommGbl (void);
|
|
|
|
void TmlCom_ReqRemComUsr (void);
|
|
void TmlCom_ReqRemComGbl (void);
|
|
void TmlCom_RemoveComUsr (void);
|
|
void TmlCom_RemoveComGbl (void);
|
|
|
|
void TmlCom_RemoveCommMediaAndDBEntries (long PubCod);
|
|
|
|
void TmlCom_GetCommDataByCod (struct TmlCom_Comment *Com);
|
|
|
|
#endif
|