forked from AuroraMiddleware/gtk
14059afdf1
Bring back the actions tab; we don't receive changes anymore, since GtkActionMuxer lost the GActionGroup signals for this, and the action observer machinery has no way to listen for all changes.
62 lines
1.0 KiB
C
62 lines
1.0 KiB
C
|
|
#include "action-holder.h"
|
|
|
|
struct _ActionHolder {
|
|
GObject instance;
|
|
|
|
GObject *owner;
|
|
char *name;
|
|
};
|
|
|
|
G_DEFINE_TYPE (ActionHolder, action_holder, G_TYPE_OBJECT)
|
|
|
|
static void
|
|
action_holder_init (ActionHolder *holder)
|
|
{
|
|
}
|
|
|
|
static void
|
|
action_holder_finalize (GObject *object)
|
|
{
|
|
ActionHolder *holder = ACTION_HOLDER (object);
|
|
|
|
g_object_unref (holder->owner);
|
|
g_free (holder->name);
|
|
|
|
G_OBJECT_CLASS (action_holder_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
action_holder_class_init (ActionHolderClass *class)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
object_class->finalize = action_holder_finalize;
|
|
}
|
|
|
|
ActionHolder *
|
|
action_holder_new (GObject *owner,
|
|
const char *name)
|
|
{
|
|
ActionHolder *holder;
|
|
|
|
holder = g_object_new (ACTION_TYPE_HOLDER, NULL);
|
|
|
|
holder->owner = g_object_ref (owner);
|
|
holder->name = g_strdup (name);
|
|
|
|
return holder;
|
|
}
|
|
|
|
GObject *
|
|
action_holder_get_owner (ActionHolder *holder)
|
|
{
|
|
return holder->owner;
|
|
}
|
|
|
|
const char *
|
|
action_holder_get_name (ActionHolder *holder)
|
|
{
|
|
return holder->name;
|
|
}
|