forked from AuroraMiddleware/gtk
04700789e1
Just a straight conversion from list box to column view.
18 lines
524 B
C
18 lines
524 B
C
#ifndef __PROP_HOLDER_H__
|
|
#define __PROP_HOLDER_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#define PROP_TYPE_HOLDER (prop_holder_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (PropHolder, prop_holder, PROP, HOLDER, GObject)
|
|
|
|
PropHolder * prop_holder_new (GObject *object,
|
|
GParamSpec *pspeC);
|
|
|
|
GObject *prop_holder_get_object (PropHolder *holder);
|
|
GParamSpec *prop_holder_get_pspec (PropHolder *holder);
|
|
const char *prop_holder_get_name (PropHolder *holder);
|
|
|
|
#endif /* __PROP_HOLDER_H__ */
|