diff options
Diffstat (limited to 'src/math-buttons.h')
-rw-r--r-- | src/math-buttons.h | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/src/math-buttons.h b/src/math-buttons.h index 7e85e33..711db6f 100644 --- a/src/math-buttons.h +++ b/src/math-buttons.h @@ -29,34 +29,32 @@ G_BEGIN_DECLS typedef struct MathButtonsPrivate MathButtonsPrivate; -typedef struct -{ +typedef struct { GtkVBox parent_instance; - MathButtonsPrivate *priv; + MathButtonsPrivate* priv; } MathButtons; -typedef struct -{ - GtkVBoxClass parent_class; +typedef struct { + GtkVBoxClass parent_class; } MathButtonsClass; typedef enum { - BASIC, - ADVANCED, - FINANCIAL, - PROGRAMMING + BASIC, + ADVANCED, + FINANCIAL, + PROGRAMMING } ButtonMode; GType math_buttons_get_type(void); -MathButtons *math_buttons_new(MathEquation *equation); +MathButtons* math_buttons_new(MathEquation* equation); -void math_buttons_set_mode(MathButtons *buttons, ButtonMode mode); +void math_buttons_set_mode(MathButtons* buttons, ButtonMode mode); -ButtonMode math_buttons_get_mode(MathButtons *buttons); +ButtonMode math_buttons_get_mode(MathButtons* buttons); -void math_buttons_set_programming_base(MathButtons *buttons, gint base); +void math_buttons_set_programming_base(MathButtons* buttons, gint base); -gint math_buttons_get_programming_base(MathButtons *buttons); +gint math_buttons_get_programming_base(MathButtons* buttons); #endif /* MATH_BUTTONS_H */ |