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_
6 #include <glib-object.h>
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
);
24 #endif /* _GNM_INPUT_MSG_H_ */