gtk/plugins/perl/common/GtkUI.xs

Mon, 18 Sep 2006 04:26:33 +0000

author
Etan Reisner <deryni@pidgin.im>
date
Mon, 18 Sep 2006 04:26:33 +0000
changeset 14643
a058b716c189
parent 14631
6d58706a3eaa
permissions
-rw-r--r--

[gaim-migrate @ 17305]
Remove a couple more commented out functions, fix the class we were blessing
things into with smiley themes, and add an indentatation level to the
bootstrap section of GtkUI.xs (doesn't matter now but bit me during some of my
testing).

#include "gtkmodule.h"

/* Prototypes for the BOOT section below. */
GAIM_PERL_BOOT_PROTO(GtkUI__Account);
GAIM_PERL_BOOT_PROTO(GtkUI__BuddyList);
GAIM_PERL_BOOT_PROTO(GtkUI__Connection);
GAIM_PERL_BOOT_PROTO(GtkUI__Conversation);
GAIM_PERL_BOOT_PROTO(GtkUI__Conversation__Window);
GAIM_PERL_BOOT_PROTO(GtkUI__Debug);
GAIM_PERL_BOOT_PROTO(GtkUI__Dialogs);
GAIM_PERL_BOOT_PROTO(GtkUI__IMHtml);
GAIM_PERL_BOOT_PROTO(GtkUI__IMHtmlToolbar);
GAIM_PERL_BOOT_PROTO(GtkUI__Log);
GAIM_PERL_BOOT_PROTO(GtkUI__MenuTray);
GAIM_PERL_BOOT_PROTO(GtkUI__Plugin);
GAIM_PERL_BOOT_PROTO(GtkUI__PluginPref);
GAIM_PERL_BOOT_PROTO(GtkUI__Pounce);
GAIM_PERL_BOOT_PROTO(GtkUI__Prefs);
GAIM_PERL_BOOT_PROTO(GtkUI__Privacy);
GAIM_PERL_BOOT_PROTO(GtkUI__Roomlist);
GAIM_PERL_BOOT_PROTO(GtkUI__Status);
#ifndef _WIN32
GAIM_PERL_BOOT_PROTO(GtkUI__Session);
#endif
GAIM_PERL_BOOT_PROTO(GtkUI__Sound);
GAIM_PERL_BOOT_PROTO(GtkUI__StatusBox);
GAIM_PERL_BOOT_PROTO(GtkUI__Themes);
GAIM_PERL_BOOT_PROTO(GtkUI__Utils);
GAIM_PERL_BOOT_PROTO(GtkUI__Xfer);

MODULE = Gaim::GtkUI  PACKAGE = Gaim::GtkUI  PREFIX = gaim_gtk_
PROTOTYPES: ENABLE

BOOT:
	GAIM_PERL_BOOT(GtkUI__Account);
	GAIM_PERL_BOOT(GtkUI__BuddyList);
	GAIM_PERL_BOOT(GtkUI__Connection);
	GAIM_PERL_BOOT(GtkUI__Conversation);
	GAIM_PERL_BOOT(GtkUI__Conversation__Window);
	GAIM_PERL_BOOT(GtkUI__Debug);
	GAIM_PERL_BOOT(GtkUI__Dialogs);
	GAIM_PERL_BOOT(GtkUI__IMHtml);
	GAIM_PERL_BOOT(GtkUI__IMHtmlToolbar);
	GAIM_PERL_BOOT(GtkUI__Log);
	GAIM_PERL_BOOT(GtkUI__MenuTray);
	GAIM_PERL_BOOT(GtkUI__Plugin);
	GAIM_PERL_BOOT(GtkUI__PluginPref);
	GAIM_PERL_BOOT(GtkUI__Pounce);
	GAIM_PERL_BOOT(GtkUI__Prefs);
	GAIM_PERL_BOOT(GtkUI__Privacy);
	GAIM_PERL_BOOT(GtkUI__Roomlist);
	GAIM_PERL_BOOT(GtkUI__Status);
#ifndef _WIN32
	GAIM_PERL_BOOT(GtkUI__Session);
#endif
	GAIM_PERL_BOOT(GtkUI__Sound);
	GAIM_PERL_BOOT(GtkUI__StatusBox);
	GAIM_PERL_BOOT(GtkUI__Themes);
	GAIM_PERL_BOOT(GtkUI__Utils);
	GAIM_PERL_BOOT(GtkUI__Xfer);

mercurial