]> git.sur5r.net Git - glabels/blob - glabels2/src/view.h
Added object alignment commands.
[glabels] / glabels2 / src / view.h
1 /*
2  *  (GLABELS) Label and Business Card Creation program for GNOME
3  *
4  *  view.h:  GLabels View module header file
5  *
6  *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  */
22
23 #ifndef __VIEW_H__
24 #define __VIEW_H__
25
26 #include <gtk/gtk.h>
27 #include <libgnomecanvas/libgnomecanvas.h>
28
29 #include "label-object.h"
30
31 typedef enum {
32         GL_VIEW_STATE_ARROW,
33         GL_VIEW_STATE_OBJECT_CREATE
34 } glViewState;
35
36 #define GL_TYPE_VIEW            (gl_view_get_type ())
37 #define GL_VIEW(obj)            (GTK_CHECK_CAST((obj), GL_TYPE_VIEW, glView ))
38 #define GL_VIEW_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GL_TYPE_VIEW, glViewClass))
39 #define GL_IS_VIEW(obj)         (GTK_CHECK_TYPE ((obj), GL_TYPE_VIEW))
40 #define GL_IS_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GL_TYPE_VIEW))
41
42 typedef struct _glView      glView;
43 typedef struct _glViewClass glViewClass;
44
45 #include "view-object.h"
46
47 struct _glView {
48         GtkVBox           parent_widget;
49
50         glLabel          *label;
51
52         GtkWidget        *canvas;
53         gdouble           scale;
54
55         GnomeCanvasGroup *bg_group;              /* Background layer */
56         GnomeCanvasGroup *grid_group;            /* Grid layer */
57         GnomeCanvasGroup *markup_group;          /* Markup layer */
58         GnomeCanvasGroup *label_group;           /* Label layer (user objects) */
59         GnomeCanvasGroup *fg_group;              /* Foreground layer */
60         GnomeCanvasGroup *highlight_group;       /* Highlight layer */
61
62         gdouble           grid_spacing;
63
64         glViewState       state;
65         glLabelObjectType create_type;
66
67         GList             *object_list;           /* glViewObjects */
68         GList             *selected_object_list;  /* glViewObjects */
69
70         /* Clipboard selection stuff */
71         gint              have_selection;
72         glLabel           *selection_data;
73         GtkWidget         *invisible;
74
75         GtkWidget         *menu;
76 };
77
78 struct _glViewClass {
79         GtkVBoxClass      parent_class;
80
81         /* Selection changed signal */
82         void (*selection_changed) (glView   *view,
83                                    gpointer  user_data);
84
85         /* Signals to support a status bar */
86         void (*zoom_changed)      (glView   *view,
87                                    gdouble   zoom,
88                                    gpointer  user_data);
89         void (*pointer_moved)     (glView   *view,
90                                    gdouble   x,
91                                    gdouble   y,
92                                    gpointer  user_data);
93         void (*pointer_exit)      (glView   *view,
94                                    gpointer  user_data);
95         void (*mode_changed)      (glView   *view,
96                                    gpointer  user_data);
97 };
98
99 G_BEGIN_DECLS
100
101 guint      gl_view_get_type                (void);
102
103 GtkWidget *gl_view_new                     (glLabel           *label);
104
105
106 void       gl_view_show_grid               (glView            *view);
107
108 void       gl_view_hide_grid               (glView            *view);
109
110 void       gl_view_set_grid_spacing        (glView            *view,
111                                             gdouble            spacing);
112
113 void       gl_view_show_markup             (glView            *view);
114
115 void       gl_view_hide_markup             (glView            *view);
116
117 void       gl_view_arrow_mode              (glView            *view);
118
119 void       gl_view_object_create_mode      (glView            *view,
120                                             glLabelObjectType  type);
121
122
123 void       gl_view_select_object           (glView            *view,
124                                             glViewObject      *view_object);
125
126 void       gl_view_unselect_object         (glView            *view,
127                                             glViewObject      *view_object);
128
129 void       gl_view_select_all              (glView            *view);
130
131 void       gl_view_unselect_all            (glView            *view);
132
133 void       gl_view_select_region           (glView            *view,
134                                             gdouble            x1,
135                                             gdouble            y1,
136                                             gdouble            x2,
137                                             gdouble            y2);
138
139 gboolean   gl_view_is_selection_empty      (glView            *view);
140
141 gboolean   gl_view_is_selection_atomic     (glView            *view);
142
143 void       gl_view_delete_selection        (glView            *view);
144
145 void       gl_view_edit_object_props       (glView            *view);
146
147 void       gl_view_raise_selection         (glView            *view);
148
149 void       gl_view_lower_selection         (glView            *view);
150
151 void       gl_view_rotate_selection        (glView            *view,
152                                             gdouble            theta_degs);
153
154 void       gl_view_flip_selection_horiz    (glView            *view);
155
156 void       gl_view_flip_selection_vert     (glView            *view);
157
158 void       gl_view_align_selection_left    (glView            *view);
159
160 void       gl_view_align_selection_right   (glView            *view);
161
162 void       gl_view_align_selection_hcenter (glView            *view);
163
164 void       gl_view_align_selection_top     (glView            *view);
165
166 void       gl_view_align_selection_bottom  (glView            *view);
167
168 void       gl_view_align_selection_vcenter (glView            *view);
169
170 void       gl_view_cut                     (glView            *view);
171
172 void       gl_view_copy                    (glView            *view);
173
174 void       gl_view_paste                   (glView            *view);
175
176
177 void       gl_view_zoom_in                 (glView            *view);
178
179 void       gl_view_zoom_out                (glView            *view);
180
181 void       gl_view_set_zoom                (glView            *view,
182                                             gdouble            scale);
183
184 gdouble    gl_view_get_zoom                (glView            *view);
185
186 gboolean   gl_view_is_zoom_max             (glView            *view);
187
188 gboolean   gl_view_is_zoom_min             (glView            *view);
189
190
191 int        gl_view_item_event_handler      (GnomeCanvasItem   *item,
192                                             GdkEvent          *event,
193                                             glViewObject      *view_object);
194
195 G_END_DECLS
196
197 #endif