Source: /app/hbasic/hbasic/parser/runtime_gui.h
|
|
|
|
/* **************************************************************************
File: runtime_gui.h
Desc: Create GUI description for interpreter or compiler.
----------------------------------------------------------------------------
copyright : (C) 2001 HBasic project (Marcus Engels)
***************************************************************************/
/* **************************************************************************
* *
* 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. *
* *
***************************************************************************/
/* ----------------------------------------------------------------------- */
/* Classlist: List of classes that will be defined in this source file. */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* Changelog: Description of important changes within this file. */
/* Please report with date, maintainer and change description. */
/* ----------------------------------------------------------------------- */
#ifndef RTGUI_H
#define RTGUI_H
#include
#include
#include
#include "../src/defines.h"
#include "../src/structs.h"
#include "memory.h"
void createRuntimeGuiDesc( int form_number, GUI_HEADER *form_ptr, RT_FORM_DESC *rth_ptr );
void createRuntimeEvents( GUI_HEADER *form_ptr, RT_FORM_DESC *rth_ptr );
void copyGuiDesc( GUI_HEADER *gui_source );
RTGUI_HEADER *copyCompDesc( GUI_HEADER *gui_source );
void createCompEvents( GUI_HEADER *gui_source );
short findQtEvent( char *pnameptr );
int findCustomEventName( char *nameptr, int namesize, short *event_desc );
void createGuiProperties( GUI_HEADER *gui_source );
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |