2 * Copyright (C) 2008-2011 Robert Ancell
4 * This program is free software: you can redistribute it and/or modify it under
5 * the terms of the GNU General Public License as published by the Free Software
6 * Foundation, either version 2 of the License, or (at your option) any later
7 * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
11 #ifndef MATH_PREFERENCES_H
12 #define MATH_PREFERENCES_H
14 #include <glib-object.h>
16 #include "math-equation.h"
20 #define MATH_PREFERENCES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), math_preferences_get_type(), MathPreferencesDialog))
22 typedef struct MathPreferencesDialogPrivate MathPreferencesDialogPrivate
;
26 GtkDialog parent_instance
;
27 MathPreferencesDialogPrivate
*priv
;
28 } MathPreferencesDialog
;
32 GtkDialogClass parent_class
;
33 } MathPreferencesDialogClass
;
35 GType
math_preferences_get_type(void);
37 MathPreferencesDialog
*math_preferences_dialog_new(MathEquation
*equation
);
41 #endif /* MATH_PREFERENCES_H */