Source: /app/hbasic/hbasic/libdesc/component_desc.h
|
|
|
|
#ifndef COMP_DESC_H
#define COMP_DESC_H
#include
#include
class CComponentDesc
{
public:
CComponentDesc( void );
QString name;
QString desc;
QString call_exit_symbol;
QString qt_type;
QString default_event;
short flags;
/* Description for list of initializer */
/* 1) total length of initializer description list */
long init_length;
short init_count;
/* For each initializer */
/* entry length */
/* - number of parameter */
/* - n * type of each parameter */
/* - call_name = string of method symbol */
char init_desc[1000];
long icon_length;
void *icon_data;
short doc_id;
/* Additional initializer list */
QPtrList add_init;
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |