grim/guifications2

This was compatibility code for Pidgin 1.x.y; because it was written as a check
for "not 2.0.0" this code would be compiled in for 3.0.0. It looks like the
supporting code elsewhere was removed, causing this to leave an unresolved
symbol in guifications.so, thus causing Pidgin to refuse to load. Now we load
in Pidgin 3.0.0. Whether it works or not, I have no clue.
/*
* Guifications - The end all, be all, toaster popup plugin
* Copyright (C) 2003-2008 Gary Kramlich
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, USA.
*/
#ifndef GF_DISPLAY_H
#define GF_DISPLAY_H
typedef struct _GfDisplay GfDisplay;
#define GF_DISPLAY(obj) ((GfDisplay *)obj)
#include <glib.h>
#include <plugin.h>
#include "gf_event_info.h"
#include "gf_notification.h"
typedef enum _GfDisplayPosition {
GF_DISPLAY_POSITION_NW = 0,
GF_DISPLAY_POSITION_NE,
GF_DISPLAY_POSITION_SW,
GF_DISPLAY_POSITION_SE,
GF_DISPLAY_POSITION_UNKNOWN
} GfDisplayPosition;
typedef enum _GfDisplayZoom {
GF_DISPLAY_ZOOM_200 = 0,
GF_DISPLAY_ZOOM_175,
GF_DISPLAY_ZOOM_150,
GF_DISPLAY_ZOOM_125,
GF_DISPLAY_ZOOM_100,
GF_DISPLAY_ZOOM_75,
GF_DISPLAY_ZOOM_50,
GF_DISPLAY_ZOOM_25,
GF_DISPLAY_ZOOM_UNKNOWN
} GfDisplayZoom;
G_BEGIN_DECLS
GfDisplay *gf_display_new();
void gf_display_destroy(GfDisplay *display);
GfEventInfo *gf_display_get_event_info(GfDisplay *display);
void gf_display_show_event(GfEventInfo *info, GfNotification *notification);
void gf_display_init(PurplePlugin *plugin);
void gf_display_uninit();
#if GTK_CHECK_VERSION(2,2,0)
gint gf_display_get_default_screen();
gint gf_display_get_screen_count();
gint gf_display_get_default_monitor();
gint gf_display_get_monitor_count();
#endif /* GTK_CHECK_VERSION(2,2,0) */
gboolean gf_display_screen_saver_is_running();
/* private stuff, implemented in the x11/win32 static libraries */
gboolean gf_display_get_workarea(GdkRectangle *rect);
gboolean gf_display_screen_saver_is_running(void);
gint gf_display_get_screen(void);
gint gf_display_get_monitor(void);
G_END_DECLS
#endif /* GF_DISPLAY_H */