]> git.sur5r.net Git - glabels/blobdiff - src/label-text.h
Imported Upstream version 3.0.0
[glabels] / src / label-text.h
index 95c46230b4ea20fb84ccce1696c241015f10c25b..b99a04628f437575b71535b2f7267acf86607808 100644 (file)
@@ -1,31 +1,27 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
-
 /*
- *  (GLABELS) Label and Business Card Creation program for GNOME
- *
- *  label_text.h:  GLabels label text object
+ *  label-text.h
+ *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
  *
- *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
+ *  This file is part of gLabels.
  *
- *  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_TEXT_H__
 #define __LABEL_TEXT_H__
 
-#include <gtk/gtktextbuffer.h>
+#include <gtk/gtk.h>
 #include "text-node.h"
 #include "label-object.h"
 
@@ -34,16 +30,18 @@ G_BEGIN_DECLS
 #define GL_LABEL_TEXT_MARGIN 3.0
 
 
-#define GL_TYPE_LABEL_TEXT            (gl_label_text_get_type ())
-#define GL_LABEL_TEXT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_LABEL_TEXT, glLabelText))
-#define GL_LABEL_TEXT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_LABEL_TEXT, glLabelTextClass))
-#define GL_IS_LABEL_TEXT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_LABEL_TEXT))
-#define GL_IS_LABEL_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_LABEL_TEXT))
+#define GL_TYPE_LABEL_TEXT              (gl_label_text_get_type ())
+#define GL_LABEL_TEXT(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_LABEL_TEXT, glLabelText))
+#define GL_LABEL_TEXT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_LABEL_TEXT, glLabelTextClass))
+#define GL_IS_LABEL_TEXT(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_LABEL_TEXT))
+#define GL_IS_LABEL_TEXT_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_LABEL_TEXT))
+#define GL_LABEL_TEXT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), GL_TYPE_LABEL_TEXT, glLabelTextClass))
+
 
 typedef struct _glLabelText          glLabelText;
+typedef struct _glLabelTextPrivate   glLabelTextPrivate;
 typedef struct _glLabelTextClass     glLabelTextClass;
 
-typedef struct _glLabelTextPrivate   glLabelTextPrivate;
 
 struct _glLabelText {
        glLabelObject         object;
@@ -55,20 +53,44 @@ struct _glLabelTextClass {
        glLabelObjectClass    parent_class;
 };
 
-GType          gl_label_text_get_type     (void) G_GNUC_CONST;
 
-GObject       *gl_label_text_new          (glLabel          *label);
+GType          gl_label_text_get_type        (void) G_GNUC_CONST;
+
+GObject       *gl_label_text_new             (glLabel          *label,
+                                              gboolean          checkpoint);
+
+void           gl_label_text_set_lines       (glLabelText      *ltext,
+                                              GList            *lines,
+                                              gboolean          checkpoint);
+
+void           gl_label_text_set_text        (glLabelText      *ltext,
+                                              const gchar      *text,
+                                              gboolean          checkpoint);
 
-void           gl_label_text_set_lines    (glLabelText      *ltext,
-                                          GList            *lines);
-GtkTextBuffer *gl_label_text_get_buffer   (glLabelText      *ltext);
-GList         *gl_label_text_get_lines    (glLabelText      *ltext);
+GtkTextBuffer *gl_label_text_get_buffer      (glLabelText      *ltext);
+
+gchar         *gl_label_text_get_text        (glLabelText      *ltext);
+
+GList         *gl_label_text_get_lines       (glLabelText      *ltext);
 
 void           gl_label_text_set_auto_shrink (glLabelText      *ltext,
-                                             gboolean          auto_shrink);
+                                             gboolean          auto_shrink,
+                                              gboolean          checkpoint);
+
 gboolean       gl_label_text_get_auto_shrink (glLabelText      *ltext);
 
 
 G_END_DECLS
 
 #endif /* __LABEL_TEXT_H__ */
+
+
+
+/*
+ * Local Variables:       -- emacs
+ * mode: C                -- emacs
+ * c-basic-offset: 8      -- emacs
+ * tab-width: 8           -- emacs
+ * indent-tabs-mode: nil  -- emacs
+ * End:                   -- emacs
+ */