summaryrefslogtreecommitdiff
path: root/pluma/pluma-statusbar.h
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-11-07 19:52:18 -0300
committerPerberos <[email protected]>2011-11-07 19:52:18 -0300
commit5ded9cba8563f336939400303d6a841d5089b107 (patch)
treec5676588cff26ba37e12369fe4de24b54e9f6682 /pluma/pluma-statusbar.h
parentf00b3a11a199f9f85a4d46a600f9d14179b37dbf (diff)
downloadpluma-5ded9cba8563f336939400303d6a841d5089b107.tar.bz2
pluma-5ded9cba8563f336939400303d6a841d5089b107.tar.xz
renaming from gedit to pluma
Diffstat (limited to 'pluma/pluma-statusbar.h')
-rwxr-xr-xpluma/pluma-statusbar.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/pluma/pluma-statusbar.h b/pluma/pluma-statusbar.h
new file mode 100755
index 00000000..740c1d54
--- /dev/null
+++ b/pluma/pluma-statusbar.h
@@ -0,0 +1,99 @@
+/*
+ * pluma-statusbar.h
+ * This file is part of pluma
+ *
+ * Copyright (C) 2005 - Paolo Borelli
+ *
+ * This program 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
+ * (at your option) any later version.
+ *
+ * This program 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.
+ */
+
+/*
+ * Modified by the pluma Team, 2005. See the AUTHORS file for a
+ * list of people on the pluma Team.
+ * See the ChangeLog files for a list of changes.
+ */
+
+#ifndef PLUMA_STATUSBAR_H
+#define PLUMA_STATUSBAR_H
+
+#include <gtk/gtk.h>
+#include <pluma/pluma-window.h>
+
+G_BEGIN_DECLS
+
+#define PLUMA_TYPE_STATUSBAR (pluma_statusbar_get_type ())
+#define PLUMA_STATUSBAR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PLUMA_TYPE_STATUSBAR, PlumaStatusbar))
+#define PLUMA_STATUSBAR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PLUMA_TYPE_STATUSBAR, PlumaStatusbarClass))
+#define PLUMA_IS_STATUSBAR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PLUMA_TYPE_STATUSBAR))
+#define PLUMA_IS_STATUSBAR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PLUMA_TYPE_STATUSBAR))
+#define PLUMA_STATUSBAR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PLUMA_TYPE_STATUSBAR, PlumaStatusbarClass))
+
+typedef struct _PlumaStatusbar PlumaStatusbar;
+typedef struct _PlumaStatusbarPrivate PlumaStatusbarPrivate;
+typedef struct _PlumaStatusbarClass PlumaStatusbarClass;
+
+struct _PlumaStatusbar
+{
+ GtkStatusbar parent;
+
+ /* <private/> */
+ PlumaStatusbarPrivate *priv;
+};
+
+struct _PlumaStatusbarClass
+{
+ GtkStatusbarClass parent_class;
+};
+
+GType pluma_statusbar_get_type (void) G_GNUC_CONST;
+
+GtkWidget *pluma_statusbar_new (void);
+
+/* FIXME: status is not defined in any .h */
+#define PlumaStatus gint
+void pluma_statusbar_set_window_state (PlumaStatusbar *statusbar,
+ PlumaWindowState state,
+ gint num_of_errors);
+
+void pluma_statusbar_set_overwrite (PlumaStatusbar *statusbar,
+ gboolean overwrite);
+
+void pluma_statusbar_set_cursor_position (PlumaStatusbar *statusbar,
+ gint line,
+ gint col);
+
+void pluma_statusbar_clear_overwrite (PlumaStatusbar *statusbar);
+
+void pluma_statusbar_flash_message (PlumaStatusbar *statusbar,
+ guint context_id,
+ const gchar *format,
+ ...) G_GNUC_PRINTF(3, 4);
+/* FIXME: these would be nice for plugins...
+void pluma_statusbar_add_widget (PlumaStatusbar *statusbar,
+ GtkWidget *widget);
+void pluma_statusbar_remove_widget (PlumaStatusbar *statusbar,
+ GtkWidget *widget);
+*/
+
+/*
+ * Non exported functions
+ */
+void _pluma_statusbar_set_has_resize_grip (PlumaStatusbar *statusbar,
+ gboolean show);
+
+G_END_DECLS
+
+#endif