2010-09-13 19:24:53 +02:00
|
|
|
/*
|
2010-09-17 19:03:03 +02:00
|
|
|
* ld-symbol.h
|
2010-09-13 19:24:53 +02:00
|
|
|
*
|
|
|
|
* This file is a part of logdiag.
|
2012-10-08 10:35:09 +02:00
|
|
|
* Copyright Přemysl Janouch 2010, 2011. All rights reserved.
|
2010-09-13 19:24:53 +02:00
|
|
|
*
|
|
|
|
* See the file LICENSE for licensing information.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
#ifndef __LD_SYMBOL_H__
|
|
|
|
#define __LD_SYMBOL_H__
|
2010-09-13 19:24:53 +02:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
#define LD_TYPE_SYMBOL (ld_symbol_get_type ())
|
|
|
|
#define LD_SYMBOL(obj) (G_TYPE_CHECK_INSTANCE_CAST \
|
|
|
|
((obj), LD_TYPE_SYMBOL, LdSymbol))
|
|
|
|
#define LD_SYMBOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST \
|
|
|
|
((klass), LD_TYPE_SYMBOL, LdSymbolClass))
|
|
|
|
#define LD_IS_SYMBOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE \
|
|
|
|
((obj), LD_TYPE_SYMBOL))
|
|
|
|
#define LD_IS_SYMBOL_CLASS(klass) (G_TYPE_CHECK_INSTANCE_TYPE \
|
|
|
|
((klass), LD_TYPE_SYMBOL))
|
|
|
|
#define LD_SYMBOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS \
|
|
|
|
((obj), LD_SYMBOL, LdSymbolClass))
|
2010-09-13 19:24:53 +02:00
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
typedef struct _LdSymbol LdSymbol;
|
|
|
|
typedef struct _LdSymbolPrivate LdSymbolPrivate;
|
|
|
|
typedef struct _LdSymbolClass LdSymbolClass;
|
2010-09-13 19:24:53 +02:00
|
|
|
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
struct _LdSymbol
|
2010-09-13 19:24:53 +02:00
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GObject parent_instance;
|
2010-09-17 19:16:53 +02:00
|
|
|
LdSymbolPrivate *priv;
|
2010-09-13 19:24:53 +02:00
|
|
|
};
|
|
|
|
|
2010-09-25 20:59:20 +02:00
|
|
|
/**
|
|
|
|
* LdSymbolClass:
|
2011-01-28 17:39:40 +01:00
|
|
|
* @get_name: get the name of the symbol.
|
|
|
|
* @get_human_name: get the localized human name of the symbol.
|
|
|
|
* @get_area: get the area of the symbol.
|
|
|
|
* @get_terminals: get a list of symbol terminals.
|
|
|
|
* @draw: draw the symbol on a Cairo surface.
|
2010-09-25 20:59:20 +02:00
|
|
|
*/
|
2010-09-17 19:16:53 +02:00
|
|
|
struct _LdSymbolClass
|
2010-09-13 19:24:53 +02:00
|
|
|
{
|
2011-01-28 17:39:40 +01:00
|
|
|
/*< private >*/
|
2010-09-17 18:48:02 +02:00
|
|
|
GObjectClass parent_class;
|
2010-09-25 20:59:20 +02:00
|
|
|
|
2011-01-28 17:39:40 +01:00
|
|
|
/*< public >*/
|
2010-10-27 15:52:36 +02:00
|
|
|
const gchar *(*get_name) (LdSymbol *self);
|
|
|
|
const gchar *(*get_human_name) (LdSymbol *self);
|
2011-01-08 06:44:40 +01:00
|
|
|
void (*get_area) (LdSymbol *self, LdRectangle *area);
|
2011-01-08 12:09:45 +01:00
|
|
|
const LdPointArray *(*get_terminals) (LdSymbol *self);
|
2010-09-25 20:59:20 +02:00
|
|
|
void (*draw) (LdSymbol *self, cairo_t *cr);
|
2010-09-13 19:24:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
GType ld_symbol_get_type (void) G_GNUC_CONST;
|
2010-09-13 19:24:53 +02:00
|
|
|
|
2010-10-24 13:43:41 +02:00
|
|
|
const gchar *ld_symbol_get_name (LdSymbol *self);
|
2010-10-27 15:52:36 +02:00
|
|
|
const gchar *ld_symbol_get_human_name (LdSymbol *self);
|
2011-01-08 06:44:40 +01:00
|
|
|
void ld_symbol_get_area (LdSymbol *self, LdRectangle *area);
|
2011-01-08 12:09:45 +01:00
|
|
|
const LdPointArray *ld_symbol_get_terminals (LdSymbol *self);
|
2010-09-25 20:59:20 +02:00
|
|
|
void ld_symbol_draw (LdSymbol *self, cairo_t *cr);
|
|
|
|
|
2010-09-13 19:24:53 +02:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
#endif /* ! __LD_SYMBOL_H__ */
|
2010-09-13 19:24:53 +02:00
|
|
|
|