1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2008 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #ifndef PSPPIRE_AXIS_IMPL_H__
19 #define PSPPIRE_AXIS_IMPL_H__
22 #include <glib-object.h>
25 #include "psppire-axis.h"
26 #include <libpspp/tower.h>
31 /* --- type macros --- */
32 #define G_TYPE_PSPPIRE_AXIS_IMPL (psppire_axis_impl_get_type ())
33 #define PSPPIRE_AXIS_IMPL(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_PSPPIRE_AXIS_IMPL, PsppireAxisImpl))
34 #define PSPPIRE_AXIS_IMPL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_PSPPIRE_AXIS_IMPL, PsppireAxisImplClass))
35 #define PSPPIRE_IS_AXIS_IMPL(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_PSPPIRE_AXIS_IMPL))
36 #define PSPPIRE_IS_AXIS_IMPL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_PSPPIRE_AXIS_IMPL))
37 #define PSPPIRE_AXIS_IMPL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_PSPPIRE_AXIS_IMPL, PsppireAxisImplClass))
41 /* --- typedefs & structures --- */
42 typedef struct _PsppireAxisImpl PsppireAxisImpl;
43 typedef struct _PsppireAxisImplClass PsppireAxisImplClass;
47 struct _PsppireAxisImpl
51 struct tower pixel_tower;
52 struct tower unit_tower;
57 struct _PsppireAxisImplClass
59 PsppireAxisClass parent_class;
62 GType psppire_axis_impl_get_type (void);
64 PsppireAxisImpl* psppire_axis_impl_new (void);
67 /* Interface between axis and model */
71 void psppire_axis_impl_insert (PsppireAxisImpl *a, gint posn, gint size);
73 void psppire_axis_impl_append (PsppireAxisImpl *a, gint size);
76 void psppire_axis_impl_append_n (PsppireAxisImpl *a, gint n_units, gint size);
78 void psppire_axis_impl_resize (PsppireAxisImpl *a, gint posn, gint size);
80 void psppire_axis_impl_clear (PsppireAxisImpl *);
83 void psppire_axis_impl_delete (PsppireAxisImpl *, gint first, gint n_cases);
89 #endif /* PSPPIRE_AXIS_IMPL_H__ */