gds-render/gds-parser/gds-types.h

64 lines
1.2 KiB
C
Raw Normal View History

2018-05-22 16:18:28 +02:00
#ifndef __GDS_TYPES_H__
#define __GDS_TYPES_H__
#include <stdint.h>
#include <glib.h>
#define CELL_NAME_MAX (100)
2018-07-22 16:38:26 +02:00
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
2018-05-22 16:18:28 +02:00
2018-07-17 00:02:30 +02:00
enum graphics_type {GRAPHIC_PATH = 0, GRAPHIC_POLYGON = 1, GRAPHIC_BOX};
enum path_type {PATH_FLUSH = 0, PATH_ROUNDED = 1, PATH_SQUARED = 2};
2018-05-22 16:18:28 +02:00
struct gds_point {
int x;
int y;
2018-05-22 16:18:28 +02:00
};
struct gds_time_field {
uint16_t year;
uint16_t month;
uint16_t day;
uint16_t hour;
uint16_t minute;
uint16_t second;
2018-05-22 16:18:28 +02:00
};
struct gds_graphics {
enum graphics_type gfx_type;
GList *vertices;
enum path_type path_render_type;
int width_absolute;
int16_t layer;
uint16_t datatype;
2018-05-22 16:18:28 +02:00
};
struct gds_cell_instance {
char ref_name[CELL_NAME_MAX];
struct gds_cell *cell_ref;
struct gds_point origin;
int flipped;
double angle;
double magnification;
2018-05-22 16:18:28 +02:00
};
struct gds_cell {
char name[CELL_NAME_MAX];
struct gds_time_field mod_time;
struct gds_time_field access_time;
GList *child_cells;
GList *graphic_objs;
2018-05-22 16:18:28 +02:00
};
struct gds_library {
char name[CELL_NAME_MAX];
struct gds_time_field mod_time;
struct gds_time_field access_time;
double unit_to_meters;
GList *cells;
GList *cell_names;
2018-05-22 16:18:28 +02:00
};
#endif /* __GDS_TYPES_H__ */