~ubuntu-branches/ubuntu/trusty/ggz-gtk-client/trusty

« back to all changes in this revision

Viewing changes to ggz-gtk/msgbox.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut, Josef Spillner, Peter Eisentraut
  • Date: 2006-10-20 23:06:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061020230651-u1vcph06q6fmbaa7
Tags: 0.0.13-3
[ Josef Spillner ]
* Section change: libggz-gtk0 is in libs

[ Peter Eisentraut ]
* Fixed package dependencies for binNMU compatibility
* Disabled gaim plugin for the time being (closes: #392457)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
23
23
 */
24
24
 
25
 
#ifdef GTK2
26
25
/* Creates a button with a stock icon and custom text. */
27
26
GtkWidget *stockbutton_new(const gchar *stock, const gchar *label_text);
28
 
#endif
 
27
void stockbutton_set_text(GtkWidget *button, const gchar *label_text);
29
28
 
30
29
/*
31
30
 * A very easily cusomisible message box. This message box can be used to 
61
60
        MSGBOX_MODAL    = 2,
62
61
}       MBModal;
63
62
 
64
 
MBReturn msgbox (gchar *textmessage, gchar *title, MBType type, MBIcon itype, MBModal modal);
 
63
MBReturn msgbox(gchar *textmessage, gchar *title, MBType type,
 
64
                MBIcon itype, MBModal modal);