math-buttons: Remove widget background color tints
[gcalctool.git] / src / math-preferences.h
blob0cfd6e12ec5a686e9de4fe017eb0645968557268
1 /*
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
8 * license.
9 */
11 #ifndef MATH_PREFERENCES_H
12 #define MATH_PREFERENCES_H
14 #include <glib-object.h>
15 #include <gtk/gtk.h>
16 #include "math-equation.h"
18 G_BEGIN_DECLS
20 #define MATH_PREFERENCES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), math_preferences_get_type(), MathPreferencesDialog))
22 typedef struct MathPreferencesDialogPrivate MathPreferencesDialogPrivate;
24 typedef struct
26 GtkDialog parent_instance;
27 MathPreferencesDialogPrivate *priv;
28 } MathPreferencesDialog;
30 typedef struct
32 GtkDialogClass parent_class;
33 } MathPreferencesDialogClass;
35 GType math_preferences_get_type(void);
37 MathPreferencesDialog *math_preferences_dialog_new(MathEquation *equation);
39 G_END_DECLS
41 #endif /* MATH_PREFERENCES_H */