docs: Improve example code formatting
Improve code formatting to adhere to Clutter uncrustify rules.
This commit is contained in:
parent
7b9eaeeadb
commit
b3954878c2
@ -20,15 +20,13 @@ struct _CbButtonPrivate
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* enumerates signal identifiers for this class */
|
/* enumerates signal identifiers for this class */
|
||||||
enum
|
enum {
|
||||||
{
|
|
||||||
CLICKED,
|
CLICKED,
|
||||||
LAST_SIGNAL
|
LAST_SIGNAL
|
||||||
};
|
};
|
||||||
|
|
||||||
/* enumerates property identifiers for this class */
|
/* enumerates property identifiers for this class */
|
||||||
enum
|
enum {
|
||||||
{
|
|
||||||
PROP_0,
|
PROP_0,
|
||||||
PROP_TEXT
|
PROP_TEXT
|
||||||
};
|
};
|
||||||
@ -107,9 +105,9 @@ cb_button_get_property (GObject *gobject,
|
|||||||
|
|
||||||
/* use the actor's allocation for the ClutterBox */
|
/* use the actor's allocation for the ClutterBox */
|
||||||
static void
|
static void
|
||||||
cb_button_allocate (ClutterActor *actor,
|
cb_button_allocate (ClutterActor *actor,
|
||||||
const ClutterActorBox *box,
|
const ClutterActorBox *box,
|
||||||
ClutterAllocationFlags flags)
|
ClutterAllocationFlags flags)
|
||||||
{
|
{
|
||||||
CbButtonPrivate *priv = CB_BUTTON (actor)->priv;
|
CbButtonPrivate *priv = CB_BUTTON (actor)->priv;
|
||||||
ClutterActorBox child_box = { 0, };
|
ClutterActorBox child_box = { 0, };
|
||||||
@ -278,7 +276,7 @@ cb_button_set_text (CbButton *self,
|
|||||||
* Set the color of the button's background
|
* Set the color of the button's background
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
cb_button_set_background_color (CbButton *self,
|
cb_button_set_background_color (CbButton *self,
|
||||||
const ClutterColor *color)
|
const ClutterColor *color)
|
||||||
{
|
{
|
||||||
g_return_if_fail (CB_IS_BUTTON (self));
|
g_return_if_fail (CB_IS_BUTTON (self));
|
||||||
@ -294,7 +292,7 @@ cb_button_set_background_color (CbButton *self,
|
|||||||
* Set the color of the text on the button
|
* Set the color of the text on the button
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
cb_button_set_text_color (CbButton *self,
|
cb_button_set_text_color (CbButton *self,
|
||||||
const ClutterColor *color)
|
const ClutterColor *color)
|
||||||
{
|
{
|
||||||
g_return_if_fail (CB_IS_BUTTON (self));
|
g_return_if_fail (CB_IS_BUTTON (self));
|
||||||
|
@ -14,20 +14,20 @@
|
|||||||
GType cb_button_get_type (void);
|
GType cb_button_get_type (void);
|
||||||
|
|
||||||
/* GObject type macros */
|
/* GObject type macros */
|
||||||
#define CB_TYPE_BUTTON (cb_button_get_type ())
|
#define CB_TYPE_BUTTON (cb_button_get_type ())
|
||||||
#define CB_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CB_TYPE_BUTTON, CbButton))
|
#define CB_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CB_TYPE_BUTTON, CbButton))
|
||||||
#define CB_IS_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CB_TYPE_BUTTON))
|
#define CB_IS_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CB_TYPE_BUTTON))
|
||||||
#define CB_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CB_TYPE_BUTTON, CbButtonClass))
|
#define CB_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CB_TYPE_BUTTON, CbButtonClass))
|
||||||
#define CB_IS_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CB_TYPE_BUTTON))
|
#define CB_IS_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CB_TYPE_BUTTON))
|
||||||
#define CB_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CB_TYPE_BUTTON, CbButtonClass))
|
#define CB_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CB_TYPE_BUTTON, CbButtonClass))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Private instance fields; see
|
* Private instance fields; see
|
||||||
* http://www.gotw.ca/gotw/024.htm for the rationalse
|
* http://www.gotw.ca/gotw/024.htm for the rationale
|
||||||
*/
|
*/
|
||||||
typedef struct _CbButtonPrivate CbButtonPrivate;
|
typedef struct _CbButtonPrivate CbButtonPrivate;
|
||||||
typedef struct _CbButton CbButton;
|
typedef struct _CbButton CbButton;
|
||||||
typedef struct _CbButtonClass CbButtonClass;
|
typedef struct _CbButtonClass CbButtonClass;
|
||||||
|
|
||||||
/* object structure */
|
/* object structure */
|
||||||
struct _CbButton
|
struct _CbButton
|
||||||
@ -44,7 +44,7 @@ struct _CbButton
|
|||||||
struct _CbButtonClass
|
struct _CbButtonClass
|
||||||
{
|
{
|
||||||
/* signals */
|
/* signals */
|
||||||
void (* clicked) (CbButton *button);
|
void (* clicked)(CbButton *button);
|
||||||
|
|
||||||
/*<private>*/
|
/*<private>*/
|
||||||
ClutterActorClass parent_class;
|
ClutterActorClass parent_class;
|
||||||
@ -61,12 +61,13 @@ G_CONST_RETURN gchar * cb_button_get_text (CbButton *self);
|
|||||||
/* setters - these are wrappers round functions
|
/* setters - these are wrappers round functions
|
||||||
* which change properties of the internal actors
|
* which change properties of the internal actors
|
||||||
*/
|
*/
|
||||||
void cb_button_set_text (CbButton *self, const gchar *text);
|
void cb_button_set_text (CbButton *self,
|
||||||
|
const gchar *text);
|
||||||
|
|
||||||
void cb_button_set_background_color (CbButton *self,
|
void cb_button_set_background_color (CbButton *self,
|
||||||
const ClutterColor *color);
|
const ClutterColor *color);
|
||||||
|
|
||||||
void cb_button_set_text_color (CbButton *self,
|
void cb_button_set_text_color (CbButton *self,
|
||||||
const ClutterColor *color);
|
const ClutterColor *color);
|
||||||
|
|
||||||
#endif /* __CB_BUTTON_H__ */
|
#endif /* __CB_BUTTON_H__ */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user