summaryrefslogtreecommitdiff
path: root/pluma/pluma-statusbar.h
blob: 65d50748ac5e9fcdad2cdd8281268d93e655f80f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * pluma-statusbar.h
 * This file is part of pluma
 *
 * Copyright (C) 2005 - Paolo Borelli
 * Copyright (C) 2012-2021 MATE Developers
 *
 * 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., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, 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);

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);

G_END_DECLS

#endif