Feature #1051 ยป 0056-gtk4x-Implement-FcScenRow-for-pages.c.patch
client/gui-gtk-5.0/pages.c | ||
---|---|---|
G_DEFINE_TYPE(FcPlrRow, fc_plr_row, G_TYPE_OBJECT)
|
||
#define FC_TYPE_SCEN_ROW (fc_scen_row_get_type())
|
||
G_DECLARE_FINAL_TYPE(FcScenRow, fc_scen_row, FC, SCEN_ROW, GObject)
|
||
struct _FcScenRow
|
||
{
|
||
GObject parent_instance;
|
||
char *desc;
|
||
char *authors;
|
||
char *filename;
|
||
char *ver;
|
||
};
|
||
struct _FcScenClass
|
||
{
|
||
GObjectClass parent_class;
|
||
};
|
||
G_DEFINE_TYPE(FcScenRow, fc_scen_row, G_TYPE_OBJECT)
|
||
/**********************************************************************//**
|
||
Initialization method for FcHostRow class
|
||
**************************************************************************/
|
||
... | ... | |
}
|
||
#endif
|
||
/**********************************************************************//**
|
||
Initialization method for FcScenRow class
|
||
**************************************************************************/
|
||
static void
|
||
fc_scen_row_class_init(FcScenRowClass *klass)
|
||
{
|
||
}
|
||
/**********************************************************************//**
|
||
Initialization method for FcScenRow
|
||
**************************************************************************/
|
||
static void
|
||
fc_scen_row_init(FcScenRow *self)
|
||
{
|
||
}
|
||
/**********************************************************************//**
|
||
FcScenRow creation method
|
||
**************************************************************************/
|
||
#if 0
|
||
static FcScenRow *fc_scen_row_new(void)
|
||
{
|
||
FcScenRow *result;
|
||
result = g_object_new(FC_TYPE_SCEN_ROW, nullptr);
|
||
return result;
|
||
}
|
||
#endif
|
||
/**********************************************************************//**
|
||
Spawn a server, if there isn't one, using the default settings.
|
||
**************************************************************************/
|