DCL 3.7.4
Loading...
Searching...
No Matches
HtmlView.h File Reference
#include <dcl/Array.h>
#include <dcl/ListedHashMap.h>
#include <dcl/SQL.h>
#include <dcl/TextTemplate.h>
#include "Session.h"

Go to the source code of this file.

Classes

class  HtmlView
class  FormView
class  ErrorView
class  PermDeniedView
class  HeadView
class  SignForm
class  MenuView
class  HeadSignMenuForm
class  DialogWrapper
class  ZipCodeListView

Macros

#define __DCL_HS_HTML_VIEW_H__   20050904
#define DECLARE_CLASSINFO_EX(class_name)
#define IMPLEMENT_CLASSINFO_EX(class_name, base_class_name)

Enumerations

enum  DATA_SOURCE_TYPE { DS_NONE = 0 , DS_BOARD = 1 , DS_MENU = 2 }

Macro Definition Documentation

◆ __DCL_HS_HTML_VIEW_H__

#define __DCL_HS_HTML_VIEW_H__   20050904

Definition at line 2 of file HtmlView.h.

◆ DECLARE_CLASSINFO_EX

#define DECLARE_CLASSINFO_EX ( class_name)
Value:
DECLARE_CLASSINFO(class_name) \
public: \
static HtmlView* createObject(HtmlPage* pPage);
#define DECLARE_CLASSINFO(class_name)
Definition Object.h:227

Definition at line 32 of file HtmlView.h.

32#define DECLARE_CLASSINFO_EX(class_name) \
33DECLARE_CLASSINFO(class_name) \
34public: \
35 static HtmlView* createObject(HtmlPage* pPage);

◆ IMPLEMENT_CLASSINFO_EX

#define IMPLEMENT_CLASSINFO_EX ( class_name,
base_class_name )
Value:
IMPLEMENT_CLASSINFO(class_name, base_class_name) \
HtmlView* class_name::createObject(HtmlPage* pPage) \
{ \
return new class_name(pPage); \
}
#define IMPLEMENT_CLASSINFO(class_name, base_class_name)
Definition Object.h:245

Definition at line 37 of file HtmlView.h.

37#define IMPLEMENT_CLASSINFO_EX(class_name, base_class_name) \
38IMPLEMENT_CLASSINFO(class_name, base_class_name) \
39HtmlView* class_name::createObject(HtmlPage* pPage) \
40{ \
41 return new class_name(pPage); \
42}

Enumeration Type Documentation

◆ DATA_SOURCE_TYPE

Enumerator
DS_NONE 
DS_BOARD 
DS_MENU 

Definition at line 25 of file HtmlView.h.

26{
27 DS_NONE = 0,
28 DS_BOARD = 1,
29 DS_MENU = 2
30};
@ DS_BOARD
Definition HtmlView.h:28
@ DS_MENU
Definition HtmlView.h:29
@ DS_NONE
Definition HtmlView.h:27