]> git.sur5r.net Git - glabels/blobdiff - glabels2/src/label-box.h
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels2 / src / label-box.h
index fc5b6f9e3b0db40633562ee455d320a638768399..fdd623f7aa61cff3fb1da55961b56679fff8849d 100644 (file)
@@ -1,23 +1,21 @@
 /*
- *  (GLABELS) Label and Business Card Creation program for GNOME
+ *  label-box.h
+ *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
  *
- *  label_box.h:  GLabels label box object
+ *  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 __LABEL_BOX_H__
@@ -43,34 +41,29 @@ typedef struct _glLabelBoxPrivate   glLabelBoxPrivate;
 struct _glLabelBox {
        glLabelObject         object;
 
-       glLabelBoxPrivate *private;
+       glLabelBoxPrivate    *priv;
 };
 
 struct _glLabelBoxClass {
        glLabelObjectClass    parent_class;
 };
 
-extern GType         gl_label_box_get_type       (void);
-
-extern GObject      *gl_label_box_new            (glLabel *label);
+GType         gl_label_box_get_type       (void) G_GNUC_CONST;
 
-extern glLabelBox   *gl_label_box_dup            (glLabelBox *lbox,
-                                                 glLabel *label);
+GObject      *gl_label_box_new            (glLabel    *label);
 
-extern void          gl_label_box_set_line_width (glLabelBox *lbox,
-                                                 gdouble line_width);
+G_END_DECLS
 
-extern void          gl_label_box_set_line_color (glLabelBox *lbox,
-                                                 guint line_color);
+#endif /* __LABEL_BOX_H__ */
 
-extern void          gl_label_box_set_fill_color (glLabelBox *lbox,
-                                                 guint fill_color);
 
-extern gdouble       gl_label_box_get_line_width (glLabelBox *lbox);
-extern guint         gl_label_box_get_line_color (glLabelBox *lbox);
-extern guint         gl_label_box_get_fill_color (glLabelBox *lbox);
 
 
-G_END_DECLS
-
-#endif /* __LABEL_BOX_H__ */
+/*
+ * Local Variables:       -- emacs
+ * mode: C                -- emacs
+ * c-basic-offset: 8      -- emacs
+ * tab-width: 8           -- emacs
+ * indent-tabs-mode: nil  -- emacs
+ * End:                   -- emacs
+ */