1.12.39
[gnumeric.git] / src / input-msg.h
blob4bbba445c493fb951b124f363ec77ce307e842c0
1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 #ifndef _GNM_INPUT_MSG_H_
3 # define _GNM_INPUT_MSG_H_
5 #include "gnumeric.h"
6 #include <glib-object.h>
8 G_BEGIN_DECLS
10 #define GNM_INPUT_MSG_TYPE (gnm_input_msg_get_type ())
11 #define GNM_INPUT_MSG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNM_INPUT_MSG_TYPE, GnmInputMsg))
12 #define GNM_IS_INPUT_MSG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNM_INPUT_MSG_TYPE))
14 GType gnm_input_msg_get_type (void);
15 GnmInputMsg *gnm_input_msg_new (char const *msg, char const *title);
16 char const *gnm_input_msg_get_msg (GnmInputMsg const *msg);
17 char const *gnm_input_msg_get_title (GnmInputMsg const *msg);
19 gboolean gnm_input_msg_equal (GnmInputMsg const *a,
20 GnmInputMsg const *b);
22 G_END_DECLS
24 #endif /* _GNM_INPUT_MSG_H_ */