]> git.sur5r.net Git - glabels/blobdiff - glabels2/src/view-ellipse.h
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels2 / src / view-ellipse.h
index d7f13b6f196318b06372509f97741fada2f51f49..a73c899079f2dd15a8d0d39afe958e6dcc98f76f 100644 (file)
@@ -1,23 +1,21 @@
 /*
- *  (GLABELS) Label and Business Card Creation program for GNOME
+ *  view-ellipse.h
+ *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
  *
- *  view_ellipse.h:  GLabels canvas item wrapper widget
+ *  This file is part of gLabels.
  *
- *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
- *
- *  This program is free software; you can redistribute it and/or modify
+ *  gLabels is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
- *  This program is distributed in the hope that it will be useful,
+ *  gLabels is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  along with gLabels.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef __VIEW_ELLIPSE_H__
@@ -43,7 +41,7 @@ typedef struct _glViewEllipsePrivate   glViewEllipsePrivate;
 struct _glViewEllipse {
        glViewObject          parent_object;
 
-       glViewEllipsePrivate  *private;
+       glViewEllipsePrivate *priv;
 };
 
 struct _glViewEllipseClass {
@@ -54,17 +52,37 @@ struct _glViewEllipseClass {
 GType          gl_view_ellipse_get_type (void) G_GNUC_CONST;
 
 glViewObject  *gl_view_ellipse_new      (glLabelEllipse *object,
-                                        glView         *view);
+                                         glView     *view);
 
 
 /* cursor for creating ellipse objects */
 GdkCursor *gl_view_ellipse_get_create_cursor (void);
 
-/* event handler for creating ellipse objects */
-gint gl_view_ellipse_create_event_handler    (GnomeCanvas *canvas,
-                                             GdkEvent    *event,
-                                             glView      *view);
+/* Object creation handlers. */
+void       gl_view_ellipse_create_button_press_event   (glView *view,
+                                                        gdouble x,
+                                                        gdouble y);
+
+void       gl_view_ellipse_create_motion_event         (glView *view,
+                                                        gdouble x,
+                                                        gdouble y);
+
+void       gl_view_ellipse_create_button_release_event (glView *view,
+                                                        gdouble x,
+                                                        gdouble y);
+
 
 G_END_DECLS
 
 #endif /* __VIEW_ELLIPSE_H__ */
+
+
+
+/*
+ * Local Variables:       -- emacs
+ * mode: C                -- emacs
+ * c-basic-offset: 8      -- emacs
+ * tab-width: 8           -- emacs
+ * indent-tabs-mode: nil  -- emacs
+ * End:                   -- emacs
+ */