2010-09-13 19:24:53 +02:00
|
|
|
/*
|
2010-09-17 19:03:03 +02:00
|
|
|
* ld-symbol-category.h
|
2010-09-13 19:24:53 +02:00
|
|
|
*
|
|
|
|
* This file is a part of logdiag.
|
|
|
|
* Copyright Přemysl Janouch 2010. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the file LICENSE for licensing information.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
#ifndef __LD_SYMBOL_CATEGORY_H__
|
|
|
|
#define __LD_SYMBOL_CATEGORY_H__
|
2010-09-13 19:24:53 +02:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
#define LD_TYPE_SYMBOL_CATEGORY (ld_symbol_category_get_type ())
|
|
|
|
#define LD_SYMBOL_CATEGORY(obj) (G_TYPE_CHECK_INSTANCE_CAST \
|
|
|
|
((obj), LD_TYPE_SYMBOL_CATEGORY, LdSymbolCategory))
|
|
|
|
#define LD_SYMBOL_CATEGORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST \
|
|
|
|
((klass), LD_TYPE_SYMBOL_CATEGORY, LdSymbolCategoryClass))
|
|
|
|
#define LD_IS_SYMBOL_CATEGORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE \
|
|
|
|
((obj), LD_TYPE_SYMBOL_CATEGORY))
|
|
|
|
#define LD_IS_SYMBOL_CATEGORY_CLASS(klass) (G_TYPE_CHECK_INSTANCE_TYPE \
|
|
|
|
((klass), LD_TYPE_SYMBOL_CATEGORY))
|
|
|
|
#define LD_SYMBOL_CATEGORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS \
|
|
|
|
((obj), LD_SYMBOL_CATEGORY, LdSymbolCategoryClass))
|
2010-09-13 19:24:53 +02:00
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
typedef struct _LdSymbolCategory LdSymbolCategory;
|
2010-09-30 05:19:31 +02:00
|
|
|
typedef struct _LdSymbolCategoryPrivate LdSymbolCategoryPrivate;
|
2010-09-17 19:16:53 +02:00
|
|
|
typedef struct _LdSymbolCategoryClass LdSymbolCategoryClass;
|
2010-09-13 19:24:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-09-17 19:16:53 +02:00
|
|
|
* LdSymbolCategory:
|
2010-09-25 16:03:48 +02:00
|
|
|
*/
|
2010-09-17 19:16:53 +02:00
|
|
|
struct _LdSymbolCategory
|
2010-09-13 19:24:53 +02:00
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GObject parent_instance;
|
2010-09-30 05:19:31 +02:00
|
|
|
LdSymbolCategoryPrivate *priv;
|
2010-09-13 19:24:53 +02:00
|
|
|
};
|
|
|
|
|
2010-09-30 05:19:31 +02:00
|
|
|
/* TODO: If required sometime, categories (and maybe symbols) should implement
|
|
|
|
* a "changed" signal. This can be somewhat tricky. The library might be
|
|
|
|
* a good candidate for what they call a proxy. See GtkUIManager.
|
|
|
|
*/
|
2010-09-17 19:16:53 +02:00
|
|
|
struct _LdSymbolCategoryClass
|
2010-09-13 19:24:53 +02:00
|
|
|
{
|
2010-10-24 12:43:16 +02:00
|
|
|
/*< private >*/
|
2010-09-17 18:48:02 +02:00
|
|
|
GObjectClass parent_class;
|
2010-09-13 19:24:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
GType ld_symbol_category_get_type (void) G_GNUC_CONST;
|
2010-09-13 19:24:53 +02:00
|
|
|
|
2010-12-11 01:40:05 +01:00
|
|
|
LdSymbolCategory *ld_symbol_category_new (const gchar *name,
|
|
|
|
const gchar *human_name);
|
2010-09-30 05:19:31 +02:00
|
|
|
|
|
|
|
void ld_symbol_category_set_name (LdSymbolCategory *self, const gchar *name);
|
|
|
|
const gchar *ld_symbol_category_get_name (LdSymbolCategory *self);
|
2010-12-11 01:40:05 +01:00
|
|
|
void ld_symbol_category_set_human_name (LdSymbolCategory *self,
|
|
|
|
const gchar *human_name);
|
|
|
|
const gchar *ld_symbol_category_get_human_name (LdSymbolCategory *self);
|
2010-09-30 05:19:31 +02:00
|
|
|
void ld_symbol_category_set_image_path (LdSymbolCategory *self,
|
|
|
|
const gchar *image_path);
|
|
|
|
const gchar *ld_symbol_category_get_image_path (LdSymbolCategory *self);
|
2010-10-24 12:43:16 +02:00
|
|
|
|
2010-09-30 05:19:31 +02:00
|
|
|
void ld_symbol_category_insert_child (LdSymbolCategory *self,
|
|
|
|
GObject *child, gint pos);
|
|
|
|
void ld_symbol_category_remove_child (LdSymbolCategory *self,
|
|
|
|
GObject *child);
|
2010-10-24 12:43:16 +02:00
|
|
|
const GSList *ld_symbol_category_get_children (LdSymbolCategory *self);
|
2010-09-29 09:13:26 +02:00
|
|
|
|
2010-09-13 19:24:53 +02:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2010-09-17 19:16:53 +02:00
|
|
|
#endif /* ! __LD_SYMBOL_CATEGORY_H__ */
|
2010-09-13 19:24:53 +02:00
|
|
|
|