jens-maus/yam

View on GitHub
src/tools/genclasses/gc.h

Summary

Maintainability
Test Coverage
/***************************************************************************

 GenClasses - MUI class dispatcher generator
 Copyright (C) 2001 by Andrew Bell <mechanismx@lineone.net>

 Contributed to the YAM Open Source Team as a special version
 Copyright (C) 2000-2022 YAM Open Source Team

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 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 General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

 $Id$

***************************************************************************/

#ifndef GC_H
#define GC_H 1

#ifndef LISTS_H
#include "lists.h"
#endif

#define BUCKET_CNT   255

#define EDIT_WARNING "This file is automatically generated with GenClasses - PLEASE DO NOT EDIT!!!"
#define HEADER_NAME  "Classes.h"
#define SOURCE_NAME  "Classes.c"
#define OBJECT_NAME  "Classes.o"
#define CRC_NAME     "Classes.crc"

#define KEYWD_SUPERCLASS  "Superclass:"
#define KEYWD_DESC        "Description:"
#define KEYWD_CLASSDATA   "CLASSDATA"
#define KEYWD_OVERLOAD    "OVERLOAD"
#define KEYWD_DECLARE     "DECLARE"
#define KEYWD_ATTR        "ATTR"
#define KEYWD_EXPORT      "EXPORT"
#define KEYWD_INCLUDE     "INCLUDE"

struct overloaddef
{
  char *name;
};

struct declaredef
{
  char *name;
  char *params;
};

struct attrdef
{
  char *name;
};

struct exportdef
{
  char *exporttext;
};

struct includedef
{
  char *includetext;
};

struct classdef
{
  char *name;                 /* i.e. Searchwindow */
  char *superclass;           /* i.e. MUIC_Window */
  struct classdef *supernode; /* pointer to private superclass */
  int index;                  /* index within the final list */
  int finished;               /* finished marking during breadth search first */
  char *desc;
  char *classdata;
  struct list overloadlist;   /* list of extracted OVERLOAD() macros */
  struct list declarelist;    /* list of extracted DECLARE() macros */
  struct list attrlist;       /* list of extracted ATTR() macros */
  struct list exportlist;     /* list of extracted EXPORT blocks */
  struct list includelist;    /* list of extracted INCLUDE blocks */
};

#endif /* GC_H */