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_VARIABLE_POPUP_H
12 #define MATH_VARIABLE_POPUP_H
15 #include "math-equation.h"
19 #define MATH_VARIABLE_POPUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), math_variable_popup_get_type(), MathVariablePopup))
21 typedef struct MathVariablePopupPrivate MathVariablePopupPrivate
;
25 GtkWindow parent_instance
;
26 MathVariablePopupPrivate
*priv
;
31 GtkWindowClass parent_class
;
32 } MathVariablePopupClass
;
34 GType
math_variable_popup_get_type(void);
36 MathVariablePopup
*math_variable_popup_new(MathEquation
*equation
);
40 #endif /* MATH_VARIABLE_POPUP_H */