2012-08-29 18:44:47 +02:00
|
|
|
/*
|
|
|
|
* ld-category.h
|
|
|
|
*
|
|
|
|
* This file is a part of logdiag.
|
2020-09-28 04:49:03 +02:00
|
|
|
* Copyright 2010, 2012 Přemysl Eric Janouch
|
2012-08-29 18:44:47 +02:00
|
|
|
*
|
|
|
|
* See the file LICENSE for licensing information.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LD_CATEGORY_H__
|
|
|
|
#define __LD_CATEGORY_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
#define LD_TYPE_CATEGORY (ld_category_get_type ())
|
2021-10-25 16:49:23 +02:00
|
|
|
#define LD_CATEGORY(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), LD_TYPE_CATEGORY, LdCategory))
|
|
|
|
#define LD_CATEGORY_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), LD_TYPE_CATEGORY, LdCategoryClass))
|
|
|
|
#define LD_IS_CATEGORY(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), LD_TYPE_CATEGORY))
|
|
|
|
#define LD_IS_CATEGORY_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((klass), LD_TYPE_CATEGORY))
|
|
|
|
#define LD_CATEGORY_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), LD_CATEGORY, LdCategoryClass))
|
2012-08-29 18:44:47 +02:00
|
|
|
|
|
|
|
typedef struct _LdCategory LdCategory;
|
|
|
|
typedef struct _LdCategoryPrivate LdCategoryPrivate;
|
|
|
|
typedef struct _LdCategoryClass LdCategoryClass;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* LdCategory:
|
|
|
|
*/
|
|
|
|
struct _LdCategory
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GObject parent_instance;
|
|
|
|
LdCategoryPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _LdCategoryClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GObjectClass parent_class;
|
2012-08-29 21:56:59 +02:00
|
|
|
|
|
|
|
guint symbols_changed_signal;
|
|
|
|
guint children_changed_signal;
|
2012-08-29 18:44:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType ld_category_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
LdCategory *ld_category_new (const gchar *name, const gchar *human_name);
|
|
|
|
|
|
|
|
void ld_category_set_name (LdCategory *self, const gchar *name);
|
|
|
|
const gchar *ld_category_get_name (LdCategory *self);
|
|
|
|
void ld_category_set_human_name (LdCategory *self, const gchar *human_name);
|
|
|
|
const gchar *ld_category_get_human_name (LdCategory *self);
|
|
|
|
|
|
|
|
gboolean ld_category_insert_symbol (LdCategory *self,
|
|
|
|
LdSymbol *symbol, gint pos);
|
|
|
|
void ld_category_remove_symbol (LdCategory *self, LdSymbol *symbol);
|
|
|
|
const GSList *ld_category_get_symbols (LdCategory *self);
|
|
|
|
|
2012-08-30 07:39:40 +02:00
|
|
|
void ld_category_set_parent (LdCategory *self, LdCategory *parent);
|
|
|
|
LdCategory *ld_category_get_parent (LdCategory *self);
|
2012-09-09 16:39:36 +02:00
|
|
|
gchar *ld_category_get_path (LdCategory *self);
|
2012-08-30 07:39:40 +02:00
|
|
|
|
2012-08-29 18:44:47 +02:00
|
|
|
gboolean ld_category_add_child (LdCategory *self, LdCategory *category);
|
|
|
|
void ld_category_remove_child (LdCategory *self, LdCategory *category);
|
|
|
|
const GSList *ld_category_get_children (LdCategory *self);
|
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* ! __LD_CATEGORY_H__ */
|