2011-11-07 13:46:58 -06:00
|
|
|
/*
|
2011-11-07 16:52:18 -06:00
|
|
|
* pluma-message-area.h
|
|
|
|
* This file is part of pluma
|
2011-11-07 13:46:58 -06:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005 - Paolo Maggi
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2011-11-07 16:52:18 -06:00
|
|
|
* Modified by the pluma Team, 2005. See the AUTHORS file for a
|
|
|
|
* list of people on the pluma Team.
|
2011-11-07 13:46:58 -06:00
|
|
|
* See the ChangeLog files for a list of changes.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#ifndef __PLUMA_MESSAGE_AREA_H__
|
|
|
|
#define __PLUMA_MESSAGE_AREA_H__
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Type checking and casting macros
|
|
|
|
*/
|
2011-11-07 16:52:18 -06:00
|
|
|
#define PLUMA_TYPE_MESSAGE_AREA (pluma_message_area_get_type())
|
|
|
|
#define PLUMA_MESSAGE_AREA(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PLUMA_TYPE_MESSAGE_AREA, PlumaMessageArea))
|
|
|
|
#define PLUMA_MESSAGE_AREA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PLUMA_TYPE_MESSAGE_AREA, PlumaMessageAreaClass))
|
|
|
|
#define PLUMA_IS_MESSAGE_AREA(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PLUMA_TYPE_MESSAGE_AREA))
|
|
|
|
#define PLUMA_IS_MESSAGE_AREA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PLUMA_TYPE_MESSAGE_AREA))
|
|
|
|
#define PLUMA_MESSAGE_AREA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PLUMA_TYPE_MESSAGE_AREA, PlumaMessageAreaClass))
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
/* Private structure type */
|
2011-11-07 16:52:18 -06:00
|
|
|
typedef struct _PlumaMessageAreaPrivate PlumaMessageAreaPrivate;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Main object structure
|
|
|
|
*/
|
2011-11-07 16:52:18 -06:00
|
|
|
typedef struct _PlumaMessageArea PlumaMessageArea;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
struct _PlumaMessageArea
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
GtkHBox parent;
|
|
|
|
|
|
|
|
/*< private > */
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaMessageAreaPrivate *priv;
|
2011-11-07 13:46:58 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class definition
|
|
|
|
*/
|
2011-11-07 16:52:18 -06:00
|
|
|
typedef struct _PlumaMessageAreaClass PlumaMessageAreaClass;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
struct _PlumaMessageAreaClass
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
GtkHBoxClass parent_class;
|
|
|
|
|
|
|
|
/* Signals */
|
2011-11-07 16:52:18 -06:00
|
|
|
void (* response) (PlumaMessageArea *message_area, gint response_id);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
/* Keybinding signals */
|
2011-11-07 16:52:18 -06:00
|
|
|
void (* close) (PlumaMessageArea *message_area);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
/* Padding for future expansion */
|
2011-11-07 16:52:18 -06:00
|
|
|
void (*_pluma_reserved1) (void);
|
|
|
|
void (*_pluma_reserved2) (void);
|
2011-11-07 13:46:58 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Public methods
|
|
|
|
*/
|
2011-11-07 16:52:18 -06:00
|
|
|
GType pluma_message_area_get_type (void) G_GNUC_CONST;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
GtkWidget *pluma_message_area_new (void);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
GtkWidget *pluma_message_area_new_with_buttons (const gchar *first_button_text,
|
2011-11-07 13:46:58 -06:00
|
|
|
...);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
void pluma_message_area_set_contents (PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkWidget *contents);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
void pluma_message_area_add_action_widget (PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkWidget *child,
|
|
|
|
gint response_id);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
GtkWidget *pluma_message_area_add_button (PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
const gchar *button_text,
|
|
|
|
gint response_id);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
GtkWidget *pluma_message_area_add_stock_button_with_text
|
|
|
|
(PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
const gchar *text,
|
|
|
|
const gchar *stock_id,
|
|
|
|
gint response_id);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
void pluma_message_area_add_buttons (PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
const gchar *first_button_text,
|
|
|
|
...);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
void pluma_message_area_set_response_sensitive
|
|
|
|
(PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
gint response_id,
|
|
|
|
gboolean setting);
|
2011-11-07 16:52:18 -06:00
|
|
|
void pluma_message_area_set_default_response
|
|
|
|
(PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
gint response_id);
|
|
|
|
|
|
|
|
/* Emit response signal */
|
2011-11-07 16:52:18 -06:00
|
|
|
void pluma_message_area_response (PlumaMessageArea *message_area,
|
2011-11-07 13:46:58 -06:00
|
|
|
gint response_id);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#endif /* __PLUMA_MESSAGE_AREA_H__ */
|