swad-core/swad_HTML.c

1498 lines
36 KiB
C
Raw Normal View History

2019-10-23 19:05:05 +02:00
// swad_HTML.c: tables, divs
2017-06-11 20:09:59 +02: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.
2019-01-07 21:52:19 +01:00
Copyright (C) 1999-2019 Antonio Ca<EFBFBD>as Vargas
2017-06-11 20:09:59 +02: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 ***********************************/
/*****************************************************************************/
2019-10-04 01:35:40 +02:00
#define _GNU_SOURCE // For vasprintf
#include <stdarg.h> // For va_start, va_end
#include <stdio.h> // For fprintf, vasprintf
2019-10-04 15:19:36 +02:00
#include <stdlib.h> // For free
2017-06-11 20:09:59 +02:00
#include "swad_global.h"
2019-10-23 19:05:05 +02:00
#include "swad_HTML.h"
2017-06-11 20:09:59 +02:00
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
2019-10-13 18:19:26 +02:00
/*****************************************************************************/
/***************************** Private vatiables *****************************/
/*****************************************************************************/
2019-11-07 10:24:00 +01:00
static unsigned HTM_TABLE_NestingLevel = 0;
static unsigned HTM_TR_NestingLevel = 0;
static unsigned HTM_TH_NestingLevel = 0;
static unsigned HTM_TD_NestingLevel = 0;
static unsigned HTM_DIV_NestingLevel = 0;
static unsigned HTM_SPAN_NestingLevel = 0;
static unsigned HTM_UL_NestingLevel = 0;
static unsigned HTM_LI_NestingLevel = 0;
2019-11-09 20:04:35 +01:00
static unsigned HTM_DL_NestingLevel = 0;
static unsigned HTM_DT_NestingLevel = 0;
static unsigned HTM_DD_NestingLevel = 0;
2019-11-07 10:24:00 +01:00
static unsigned HTM_A_NestingLevel = 0;
static unsigned HTM_SCRIPT_NestingLevel = 0;
static unsigned HTM_LABEL_NestingLevel = 0;
2019-11-09 20:15:38 +01:00
static unsigned HTM_BUTTON_NestingLevel = 0;
2019-10-31 17:42:05 +01:00
static unsigned HTM_TEXTAREA_NestingLevel = 0;
2019-11-07 10:24:00 +01:00
static unsigned HTM_SELECT_NestingLevel = 0;
2019-11-09 20:31:17 +01:00
static unsigned HTM_OPTGROUP_NestingLevel = 0;
2019-10-13 18:19:26 +02:00
2017-06-11 20:09:59 +02:00
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
static void HTM_TABLE_BeginWithoutAttr (void);
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
static void HTM_TR_BeginWithoutAttr (void);
2019-10-12 19:10:32 +02:00
2019-10-23 19:05:05 +02:00
static void HTM_TH_BeginWithoutAttr (void);
static void HTM_TH_BeginAttr (const char *fmt,...);
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
static void HTM_TD_BeginWithoutAttr (void);
2019-10-10 23:14:13 +02:00
2019-10-23 21:37:01 +02:00
static void HTM_DIV_BeginWithoutAttr (void);
2019-11-07 10:24:00 +01:00
static void HTM_SPAN_BeginWithoutAttr (void);
2019-10-26 12:25:27 +02:00
static void HTM_UL_BeginWithoutAttr (void);
2019-10-26 22:49:13 +02:00
static void HTM_LI_BeginWithoutAttr (void);
2019-10-26 12:25:27 +02:00
2019-10-28 13:56:04 +01:00
static void HTM_A_BeginWithoutAttr (void);
2019-11-02 12:59:31 +01:00
static void HTM_LABEL_BeginWithoutAttr (void);
2019-10-31 17:42:05 +01:00
static void HTM_TEXTAREA_BeginWithoutAttr (void);
2019-11-05 08:46:38 +01:00
static void HTM_SELECT_BeginWithoutAttr (void);
2017-06-11 20:09:59 +02:00
/*****************************************************************************/
/******************************* Start/end table *****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TABLE_Begin (const char *fmt,...)
2019-10-04 01:35:40 +02:00
{
va_list ap;
int NumBytesPrinted;
char *Class;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Class,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"%s\">",Class);
2019-10-04 01:35:40 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
2019-11-06 19:45:20 +01:00
free (Class);
2019-10-04 01:35:40 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWithoutAttr ();
2019-10-04 01:35:40 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWithoutAttr ();
2019-10-04 01:35:40 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginPadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWithoutAttr ();
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TABLE_BeginWithoutAttr (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table>");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginCenterPadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_CENTER CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginCenter ();
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginCenter (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_CENTER\">");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWidePadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWide ();
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWide (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE\">");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWideMarginPadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE_MARGIN CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWideMargin ();
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWideMargin (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE_MARGIN\">");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_End (void)
2017-06-11 20:09:59 +02:00
{
2019-10-23 19:05:05 +02:00
if (HTM_TABLE_NestingLevel == 0) // No TABLE open
2019-10-13 22:13:17 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TABLE.");
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"</table>");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel--;
2017-06-11 20:09:59 +02:00
}
2019-09-23 09:44:10 +02:00
2019-10-05 22:15:52 +02:00
/*****************************************************************************/
/**************************** Start/end table row ****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TR_Begin (const char *fmt,...)
2019-10-05 13:27:58 +02:00
{
2019-10-05 22:15:52 +02:00
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
2019-10-05 13:27:58 +02:00
{
2019-10-05 22:15:52 +02:00
if (fmt[0])
2019-10-05 13:27:58 +02:00
{
2019-10-05 22:15:52 +02:00
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<tr %s>",Attr);
2019-10-05 22:15:52 +02:00
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-05 13:27:58 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TR_BeginWithoutAttr ();
2019-10-05 13:27:58 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TR_BeginWithoutAttr ();
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_NestingLevel++;
2019-10-05 13:27:58 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TR_BeginWithoutAttr (void)
2019-10-04 01:35:40 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<tr>");
2019-10-04 01:35:40 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TR_End (void)
2019-10-04 01:35:40 +02:00
{
2019-10-23 19:05:05 +02:00
if (HTM_TR_NestingLevel == 0) // No TR open
2019-10-13 22:13:17 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TR.");
2019-10-13 18:19:26 +02:00
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"</tr>");
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_NestingLevel--;
2019-10-04 01:35:40 +02:00
}
2019-10-11 01:02:51 +02:00
/*****************************************************************************/
/***************************** Table heading cells ***************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TH (unsigned RowSpan,unsigned ColSpan,const char *Class,const char *Txt)
2019-10-12 19:42:10 +02:00
{
2019-10-23 19:05:05 +02:00
HTM_TH_Begin (RowSpan,ColSpan,Class);
2019-10-12 19:42:10 +02:00
if (Txt)
if (Txt[0])
fprintf (Gbl.F.Out,"%s",Txt);
2019-10-23 19:05:05 +02:00
HTM_TH_End ();
2019-10-12 19:42:10 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TH_Begin (unsigned RowSpan,unsigned ColSpan,const char *Class)
2019-10-12 19:10:32 +02:00
{
if (RowSpan > 1 && ColSpan > 1)
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\" colspan=\"%u\" class=\"%s\"",
2019-10-12 19:10:32 +02:00
RowSpan,ColSpan,Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\" colspan=\"%u\"",
2019-10-12 19:10:32 +02:00
RowSpan,ColSpan);
}
else if (RowSpan > 1)
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\" class=\"%s\"",
2019-10-12 19:10:32 +02:00
RowSpan,Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\"",
2019-10-12 19:10:32 +02:00
RowSpan);
}
else if (ColSpan > 1)
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("colspan=\"%u\" class=\"%s\"",
2019-10-12 19:10:32 +02:00
ColSpan,Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("colspan=\"%u\"",
2019-10-12 19:10:32 +02:00
ColSpan);
}
else
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("class=\"%s\"",
2019-10-12 19:10:32 +02:00
Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginWithoutAttr ();
2019-10-12 19:10:32 +02:00
}
}
2019-10-23 19:05:05 +02:00
static void HTM_TH_BeginAttr (const char *fmt,...)
2019-10-11 01:02:51 +02:00
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<th %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-11 01:02:51 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginWithoutAttr ();
2019-10-11 01:02:51 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginWithoutAttr ();
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TH_NestingLevel++;
2019-10-11 01:02:51 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TH_BeginWithoutAttr (void)
2019-10-11 01:02:51 +02:00
{
fprintf (Gbl.F.Out,"<th>");
}
2019-10-23 19:05:05 +02:00
void HTM_TH_End (void)
2019-10-11 01:02:51 +02:00
{
2019-10-23 19:05:05 +02:00
if (HTM_TH_NestingLevel == 0) // No TH open
2019-10-13 22:13:17 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TR.");
2019-10-13 18:19:26 +02:00
2019-10-11 01:02:51 +02:00
fprintf (Gbl.F.Out,"</th>");
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TH_NestingLevel--;
2019-10-11 01:02:51 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TH_Empty (unsigned NumColumns)
2019-10-11 01:02:51 +02:00
{
unsigned NumCol;
for (NumCol = 0;
NumCol < NumColumns;
NumCol++)
{
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr (NULL);
HTM_TH_End ();
2019-10-11 01:02:51 +02:00
}
}
2019-10-05 22:15:52 +02:00
/*****************************************************************************/
/********************************* Table cells *******************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TD_Begin (const char *fmt,...)
2019-10-07 22:28:16 +02:00
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<td %s>",Attr);
2019-10-07 22:28:16 +02:00
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-07 22:28:16 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TD_BeginWithoutAttr ();
2019-10-07 22:28:16 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TD_BeginWithoutAttr ();
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TD_NestingLevel++;
2019-10-07 22:28:16 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TD_BeginWithoutAttr (void)
2019-10-07 22:28:16 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<td>");
2019-10-07 22:28:16 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TD_End (void)
2019-10-06 12:00:55 +02:00
{
2019-10-26 12:25:27 +02:00
if (HTM_TD_NestingLevel == 0) // No TD open
2019-10-17 15:40:21 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TD.");
2019-10-13 18:19:26 +02:00
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"</td>");
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TD_NestingLevel--;
2019-10-06 12:00:55 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TD_Empty (unsigned NumColumns)
2019-10-05 13:27:58 +02:00
{
unsigned NumCol;
for (NumCol = 0;
NumCol < NumColumns;
NumCol++)
2019-10-10 23:14:13 +02:00
{
2019-10-23 19:05:05 +02:00
HTM_TD_Begin (NULL);
HTM_TD_End ();
2019-10-10 23:14:13 +02:00
}
2019-10-05 13:27:58 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TD_ColouredEmpty (unsigned NumColumns)
2019-09-23 09:44:10 +02:00
{
unsigned NumCol;
for (NumCol = 0;
NumCol < NumColumns;
NumCol++)
2019-10-10 23:14:13 +02:00
{
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"COLOR%u\"",Gbl.RowEvenOdd);
HTM_TD_End ();
2019-10-10 23:14:13 +02:00
}
2019-09-23 09:44:10 +02:00
}
2019-10-23 20:07:56 +02:00
/*****************************************************************************/
/************************************ Divs ***********************************/
/*****************************************************************************/
2019-10-23 21:37:01 +02:00
void HTM_DIV_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<div %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-23 21:37:01 +02:00
}
else
HTM_DIV_BeginWithoutAttr ();
}
else
HTM_DIV_BeginWithoutAttr ();
HTM_DIV_NestingLevel++;
}
static void HTM_DIV_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<div>");
}
2019-10-23 20:07:56 +02:00
void HTM_DIV_End (void)
{
2019-10-26 12:25:27 +02:00
if (HTM_DIV_NestingLevel == 0) // No DIV open
2019-10-23 21:37:01 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened DIV.");
2019-10-23 20:07:56 +02:00
fprintf (Gbl.F.Out,"</div>");
2019-10-23 21:37:01 +02:00
2019-10-26 12:25:27 +02:00
HTM_DIV_NestingLevel--;
2019-10-23 20:07:56 +02:00
}
2019-10-26 01:56:36 +02:00
/*****************************************************************************/
/******************************** Main zone **********************************/
/*****************************************************************************/
void HTM_MAIN_Begin (const char *Class)
{
fprintf (Gbl.F.Out,"<main class=\"%s\">",Class);
}
void HTM_MAIN_End (void)
{
fprintf (Gbl.F.Out,"</main>");
}
/*****************************************************************************/
/********************************* Articles **********************************/
/*****************************************************************************/
void HTM_ARTICLE_Begin (const char *ArticleId)
{
fprintf (Gbl.F.Out,"<article id=\"%s\">",ArticleId);
}
void HTM_ARTICLE_End (void)
{
fprintf (Gbl.F.Out,"</article>");
}
/*****************************************************************************/
/********************************* Sections **********************************/
/*****************************************************************************/
void HTM_SECTION_Begin (const char *SectionId)
{
fprintf (Gbl.F.Out,"<section id=\"%s\">",SectionId);
}
void HTM_SECTION_End (void)
{
fprintf (Gbl.F.Out,"</section>");
}
2019-10-26 02:19:42 +02:00
2019-11-07 10:24:00 +01:00
/*****************************************************************************/
/*********************************** Spans ***********************************/
/*****************************************************************************/
void HTM_SPAN_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<span %s>",Attr);
free (Attr);
}
else
HTM_SPAN_BeginWithoutAttr ();
}
else
HTM_SPAN_BeginWithoutAttr ();
HTM_SPAN_NestingLevel++;
}
static void HTM_SPAN_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<span>");
}
void HTM_SPAN_End (void)
{
if (HTM_SPAN_NestingLevel == 0) // No SPAN open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened SPAN.");
fprintf (Gbl.F.Out,"</span>");
HTM_SPAN_NestingLevel--;
}
2019-10-26 02:19:42 +02:00
/*****************************************************************************/
/****************************** Unordered lists ******************************/
/*****************************************************************************/
2019-10-26 12:25:27 +02:00
void HTM_UL_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<ul %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-26 12:25:27 +02:00
}
else
HTM_UL_BeginWithoutAttr ();
}
else
HTM_UL_BeginWithoutAttr ();
HTM_UL_NestingLevel++;
}
static void HTM_UL_BeginWithoutAttr (void)
2019-10-26 02:19:42 +02:00
{
2019-10-26 12:25:27 +02:00
fprintf (Gbl.F.Out,"<ul>");
2019-10-26 02:19:42 +02:00
}
2019-10-26 12:25:27 +02:00
2019-10-26 02:19:42 +02:00
void HTM_UL_End (void)
{
2019-10-26 12:25:27 +02:00
if (HTM_UL_NestingLevel == 0) // No UL open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened UL.");
2019-10-26 02:19:42 +02:00
fprintf (Gbl.F.Out,"</ul>");
2019-10-26 12:25:27 +02:00
HTM_UL_NestingLevel--;
2019-10-26 02:19:42 +02:00
}
2019-10-26 22:49:13 +02:00
/*****************************************************************************/
/******************************** List items *********************************/
/*****************************************************************************/
void HTM_LI_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<li %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-26 22:49:13 +02:00
}
else
HTM_LI_BeginWithoutAttr ();
}
else
HTM_LI_BeginWithoutAttr ();
HTM_LI_NestingLevel++;
}
static void HTM_LI_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<li>");
}
void HTM_LI_End (void)
{
if (HTM_LI_NestingLevel == 0) // No LI open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened LI.");
fprintf (Gbl.F.Out,"</li>");
HTM_LI_NestingLevel--;
}
2019-10-28 13:56:04 +01:00
2019-11-09 20:04:35 +01:00
/*****************************************************************************/
/****************************** Definition lists *****************************/
/*****************************************************************************/
void HTM_DL_Begin (void)
{
fprintf (Gbl.F.Out,"<dl>");
HTM_DL_NestingLevel++;
}
void HTM_DL_End (void)
{
if (HTM_DL_NestingLevel == 0) // No DL open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened DL.");
fprintf (Gbl.F.Out,"</dl>");
HTM_DL_NestingLevel--;
}
void HTM_DT_Begin (void)
{
fprintf (Gbl.F.Out,"<dt>");
HTM_DT_NestingLevel++;
}
void HTM_DT_End (void)
{
if (HTM_DL_NestingLevel == 0) // No DT open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened DT.");
fprintf (Gbl.F.Out,"</dt>");
HTM_DT_NestingLevel--;
}
void HTM_DD_Begin (void)
{
fprintf (Gbl.F.Out,"<dd>");
HTM_DD_NestingLevel++;
}
void HTM_DD_End (void)
{
if (HTM_DD_NestingLevel == 0) // No DD open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened DD.");
fprintf (Gbl.F.Out,"</dd>");
HTM_DD_NestingLevel--;
}
2019-10-28 13:56:04 +01:00
/*****************************************************************************/
/********************************** Anchors **********************************/
/*****************************************************************************/
void HTM_A_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<a %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-28 13:56:04 +01:00
}
else
HTM_A_BeginWithoutAttr ();
}
else
HTM_A_BeginWithoutAttr ();
HTM_A_NestingLevel++;
}
static void HTM_A_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<a>");
}
void HTM_A_End (void)
{
if (HTM_A_NestingLevel == 0) // No A open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened A.");
fprintf (Gbl.F.Out,"</a>");
HTM_A_NestingLevel--;
}
2019-10-30 00:42:01 +01:00
2019-11-01 17:35:26 +01:00
/*****************************************************************************/
/*********************************** Scripts *********************************/
/*****************************************************************************/
void HTM_SCRIPT_Begin (const char *URL,const char *CharSet)
{
fprintf (Gbl.F.Out,"<script type=\"text/javascript\"");
if (URL)
if (URL[0])
fprintf (Gbl.F.Out," src=\"%s\"",URL);
if (CharSet)
if (CharSet[0])
fprintf (Gbl.F.Out," charset=\"%s\"",CharSet);
fprintf (Gbl.F.Out,">");
HTM_SCRIPT_NestingLevel++;
}
void HTM_SCRIPT_End (void)
{
if (HTM_SCRIPT_NestingLevel == 0) // No SCRIPT open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened SCRIPT.");
fprintf (Gbl.F.Out,"</script>");
HTM_SCRIPT_NestingLevel--;
}
2019-11-02 12:59:31 +01:00
/*****************************************************************************/
2019-11-09 20:26:13 +01:00
/********************************* Parameters ********************************/
/*****************************************************************************/
void HTM_PARAM (const char *Name,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Value;
if (fmt)
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Value,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"\n<param name=\"%s\" value=\"%s\">",Name,Value);
free (Value);
}
}
/*****************************************************************************/
2019-11-02 12:59:31 +01:00
/*********************************** Labels **********************************/
/*****************************************************************************/
void HTM_LABEL_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<label %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-02 12:59:31 +01:00
}
else
HTM_LABEL_BeginWithoutAttr ();
}
else
HTM_LABEL_BeginWithoutAttr ();
HTM_LABEL_NestingLevel++;
}
static void HTM_LABEL_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<label>");
}
void HTM_LABEL_End (void)
{
if (HTM_LABEL_NestingLevel == 0) // No LABEL open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened LABEL.");
fprintf (Gbl.F.Out,"</label>");
HTM_LABEL_NestingLevel--;
}
2019-11-03 18:22:11 +01:00
/*****************************************************************************/
2019-11-04 09:45:57 +01:00
/************************* Input text, email, url ****************************/
2019-11-03 18:22:11 +01:00
/*****************************************************************************/
2019-11-04 12:25:48 +01:00
void HTM_INPUT_TEXT (const char *Name,unsigned MaxLength,const char *Value,bool SubmitOnChange,
2019-11-03 18:22:11 +01:00
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"text\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,MaxLength,Value);
2019-11-04 13:58:12 +01:00
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-04 13:58:12 +01:00
}
}
if (SubmitOnChange)
2019-11-04 22:42:03 +01:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
2019-11-04 13:58:12 +01:00
Gbl.Form.Id);
fprintf (Gbl.F.Out," />");
}
2019-11-04 21:00:57 +01:00
void HTM_INPUT_SEARCH (const char *Name,unsigned MaxLength,const char *Value,
2019-11-04 20:41:35 +01:00
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
2019-11-05 21:13:04 +01:00
fprintf (Gbl.F.Out,"<input type=\"search\" name=\"%s\""
2019-11-04 20:41:35 +01:00
" maxlength=\"%u\" value=\"%s\"",
2019-11-05 21:13:04 +01:00
Name,MaxLength,Value);
2019-11-04 20:41:35 +01:00
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-04 20:41:35 +01:00
}
}
fprintf (Gbl.F.Out," />");
}
2019-11-04 13:58:12 +01:00
void HTM_INPUT_TEL (const char *Name,const char *Value,bool SubmitOnChange,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"tel\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,Usr_MAX_CHARS_PHONE,Value);
2019-11-03 18:22:11 +01:00
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-03 18:22:11 +01:00
}
}
2019-11-04 12:25:48 +01:00
if (SubmitOnChange)
2019-11-04 22:42:03 +01:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
2019-11-04 12:25:48 +01:00
Gbl.Form.Id);
2019-11-03 18:22:11 +01:00
fprintf (Gbl.F.Out," />");
}
2019-11-04 09:45:57 +01:00
void HTM_INPUT_EMAIL (const char *Name,unsigned MaxLength,const char *Value,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"email\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,MaxLength,Value);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-04 09:45:57 +01:00
}
}
fprintf (Gbl.F.Out," />");
}
2019-11-04 12:25:48 +01:00
void HTM_INPUT_URL (const char *Name,const char *Value,bool SubmitOnChange,
2019-11-04 09:45:57 +01:00
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"url\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,Cns_MAX_CHARS_WWW,Value);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-04 09:45:57 +01:00
}
}
2019-11-04 12:25:48 +01:00
if (SubmitOnChange)
2019-11-04 22:42:03 +01:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
2019-11-04 12:25:48 +01:00
Gbl.Form.Id);
2019-11-04 09:45:57 +01:00
fprintf (Gbl.F.Out," />");
}
2019-11-04 10:03:37 +01:00
void HTM_INPUT_FILE (const char *Accept,bool SubmitOnChange)
{
fprintf (Gbl.F.Out,"<input type=\"file\" name=\"%s\" accept=\"%s\"",
Fil_NAME_OF_PARAM_FILENAME_ORG,Accept);
if (SubmitOnChange)
2019-11-04 22:42:03 +01:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
2019-11-04 10:03:37 +01:00
Gbl.Form.Id);
fprintf (Gbl.F.Out," />");
}
2019-11-04 13:01:32 +01:00
void HTM_INPUT_BUTTON (const char *Name,const char *Value,const char *Attr)
{
fprintf (Gbl.F.Out,"<input type=\"button\" name=\"%s\" value=\"%s\"%s />",
Name,Value,Attr);
}
2019-11-04 13:10:47 +01:00
void HTM_INPUT_IMAGE (const char *ImgFile,const char *Title,const char *Class)
{
fprintf (Gbl.F.Out,"<input type=\"image\" src=\"%s/%s\""
" alt=\"%s\" title=\"%s\" class=\"%s\" />",
Cfg_URL_ICON_PUBLIC,ImgFile,
Title,Title,Class);
}
2019-11-04 13:40:33 +01:00
void HTM_INPUT_PASSWORD (const char *Name,const char *PlaceHolder,
const char *AutoComplete,bool Required)
{
fprintf (Gbl.F.Out,"<input type=\"password\" id=\"%s\" name=\"%s\""
" size=\"18\" maxlength=\"%u\"",
2019-11-04 18:17:39 +01:00
Name,Name,Pwd_MAX_CHARS_PLAIN_PASSWORD);
2019-11-04 13:40:33 +01:00
if (PlaceHolder)
if (PlaceHolder[0])
fprintf (Gbl.F.Out," placeholder=\"%s\"",PlaceHolder);
if (AutoComplete)
if (AutoComplete[0])
fprintf (Gbl.F.Out," autocomplete=\"%s\"",AutoComplete);
if (Required)
fprintf (Gbl.F.Out," required=\"required\"");
fprintf (Gbl.F.Out," />");
}
2019-11-04 13:50:33 +01:00
void HTM_INPUT_NUMBER (const char *Name,long Min,long Max,long Value,bool Disabled)
{
fprintf (Gbl.F.Out,"<input type=\"number\" id=\"%s\" name=\"%s\""
" min=\"%ld\" max=\"%ld\" value=\"%ld\"",
Name,Name,
Min,Max,Value);
if (Disabled)
fprintf (Gbl.F.Out," disabled=\"disabled\"");
fprintf (Gbl.F.Out," />");
}
2019-11-04 18:17:39 +01:00
void HTM_INPUT_RADIO (const char *Name,bool SubmitOnClick,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"radio\" name=\"%s\"",Name);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-04 18:17:39 +01:00
}
}
if (SubmitOnClick)
2019-11-04 22:42:03 +01:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
2019-11-04 18:17:39 +01:00
Gbl.Form.Id);
fprintf (Gbl.F.Out," />");
}
2019-11-04 20:41:35 +01:00
void HTM_INPUT_CHECKBOX (const char *Name,bool SubmitOnChange,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"checkbox\" name=\"%s\"",Name);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-04 20:41:35 +01:00
}
}
if (SubmitOnChange)
2019-11-04 22:42:03 +01:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
2019-11-04 20:41:35 +01:00
Gbl.Form.Id);
fprintf (Gbl.F.Out," />");
}
2019-11-09 20:15:38 +01:00
/*****************************************************************************/
/********************************** Buttons **********************************/
/*****************************************************************************/
void HTM_BUTTON_Begin (const char *Class)
{
fprintf (Gbl.F.Out,"<button type=\"submit\" class=\"%s\">",Class);
HTM_BUTTON_NestingLevel++;
}
void HTM_BUTTON_End (void)
{
if (HTM_BUTTON_NestingLevel == 0) // No BUTTON open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened BUTTON.");
fprintf (Gbl.F.Out,"</button>");
HTM_BUTTON_NestingLevel--;
}
2019-10-31 17:42:05 +01:00
/*****************************************************************************/
/********************************* Text areas ********************************/
/*****************************************************************************/
void HTM_TEXTAREA_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<textarea %s>",Attr);
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-31 17:42:05 +01:00
}
else
HTM_TEXTAREA_BeginWithoutAttr ();
}
else
HTM_TEXTAREA_BeginWithoutAttr ();
HTM_TEXTAREA_NestingLevel++;
}
static void HTM_TEXTAREA_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<textarea>");
}
void HTM_TEXTAREA_End (void)
{
if (HTM_TEXTAREA_NestingLevel == 0) // No TEXTAREA open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TEXTAREA.");
fprintf (Gbl.F.Out,"</textarea>");
HTM_TEXTAREA_NestingLevel--;
}
2019-11-05 08:46:38 +01:00
/*****************************************************************************/
/********************************** Selectors ********************************/
/*****************************************************************************/
2019-11-05 09:04:47 +01:00
void HTM_SELECT_Begin (bool SubmitOnChange,
const char *fmt,...)
2019-11-05 08:46:38 +01:00
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-11-05 09:04:47 +01:00
fprintf (Gbl.F.Out,"<select %s",Attr);
2019-11-05 08:46:38 +01:00
2019-11-06 19:45:20 +01:00
free (Attr);
2019-11-05 08:46:38 +01:00
}
else
HTM_SELECT_BeginWithoutAttr ();
}
else
HTM_SELECT_BeginWithoutAttr ();
2019-11-05 09:04:47 +01:00
if (SubmitOnChange)
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();return false;\"",
Gbl.Form.Id);
fprintf (Gbl.F.Out," />");
2019-11-05 15:47:35 +01:00
HTM_SELECT_NestingLevel++;
2019-11-05 08:46:38 +01:00
}
static void HTM_SELECT_BeginWithoutAttr (void)
{
2019-11-05 09:04:47 +01:00
fprintf (Gbl.F.Out,"<select");
2019-11-05 08:46:38 +01:00
}
void HTM_SELECT_End (void)
{
2019-11-05 15:47:35 +01:00
if (HTM_SELECT_NestingLevel == 0) // No SELECT open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened SELECT.");
2019-11-05 08:46:38 +01:00
fprintf (Gbl.F.Out,"</select>");
2019-11-05 15:47:35 +01:00
HTM_SELECT_NestingLevel--;
2019-11-05 08:46:38 +01:00
}
2019-11-09 20:31:17 +01:00
void HTM_OPTGROUP_Begin (const char *Label)
{
fprintf (Gbl.F.Out,"<optgroup label=\"%s\">",Label);
HTM_OPTGROUP_NestingLevel++;
}
void HTM_OPTGROUP_End (void)
{
if (HTM_OPTGROUP_NestingLevel == 0) // No OPTGROUP open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened OPTGROUP.");
fprintf (Gbl.F.Out,"</optgroup>");
HTM_OPTGROUP_NestingLevel--;
}
2019-11-06 19:45:20 +01:00
void HTM_OPTION (HTM_Type_t Type,const void *ValuePtr,bool Selected,bool Disabled,
2019-11-05 23:11:31 +01:00
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Content;
fprintf (Gbl.F.Out,"<option value=\"");
switch (Type)
{
case HTM_Type_UNSIGNED:
fprintf (Gbl.F.Out,"%u",*((unsigned *) ValuePtr));
break;
case HTM_Type_LONG:
fprintf (Gbl.F.Out,"%ld",*((long *) ValuePtr));
break;
case HTM_Type_STRING:
fprintf (Gbl.F.Out,"%s",(char *) ValuePtr);
break;
}
fprintf (Gbl.F.Out,"\"");
if (Selected)
fprintf (Gbl.F.Out," selected=\"selected\"");
if (Disabled)
fprintf (Gbl.F.Out," disabled=\"disabled\"");
fprintf (Gbl.F.Out,">");
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Content,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"%s",Content);
2019-11-06 19:45:20 +01:00
free (Content);
2019-11-05 23:11:31 +01:00
}
}
fprintf (Gbl.F.Out,"</option>");
}
2019-10-30 00:42:01 +01:00
/*****************************************************************************/
/********************************** Images ***********************************/
/*****************************************************************************/
2019-10-30 09:12:12 +01:00
void HTM_IMG (const char *URL,const char *Icon,const char *Title,
2019-10-30 22:31:03 +01:00
const char *fmt,...)
2019-10-30 00:42:01 +01:00
{
2019-10-30 22:31:03 +01:00
va_list ap;
int NumBytesPrinted;
char *Attr;
2019-10-30 00:42:01 +01:00
2019-10-31 01:33:26 +01:00
fprintf (Gbl.F.Out,"<img src=\"%s",URL);
if (Icon)
if (Icon[0])
fprintf (Gbl.F.Out,"/%s",Icon);
fprintf (Gbl.F.Out,"\"");
2019-10-30 00:42:01 +01:00
if (Title)
{
if (Title[0])
fprintf (Gbl.F.Out," alt=\"%s\" title=\"%s\"",Title,Title);
else
fprintf (Gbl.F.Out," alt=\"\"");
}
else
fprintf (Gbl.F.Out," alt=\"\"");
2019-10-30 22:31:03 +01:00
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-10-30 00:42:01 +01:00
2019-11-06 19:45:20 +01:00
free (Attr);
2019-10-30 22:31:03 +01:00
}
}
2019-10-30 00:42:01 +01:00
fprintf (Gbl.F.Out," />");
}