gtkdialogs.h
00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _PIDGINDIALOGS_H_
00026 #define _PIDGINDIALOGS_H_
00027
00028 #include "pidgin.h"
00029
00030 #include "account.h"
00031 #include "conversation.h"
00032
00033
00034 void pidgin_dialogs_destroy_all(void);
00035 void pidgin_dialogs_about(void);
00036 void pidgin_dialogs_im(void);
00037 void pidgin_dialogs_im_with_user(PurpleAccount *, const char *);
00038 void pidgin_dialogs_info(void);
00039 void pidgin_dialogs_log(void);
00040
00041 #if !(defined PIDGIN_DISABLE_DEPRECATED) || (defined _PIDGIN_GTKDIALOGS_C_)
00042
00046 void pidgin_dialogs_alias_contact(PurpleContact *);
00047 #endif
00048
00049 void pidgin_dialogs_alias_buddy(PurpleBuddy *);
00050 void pidgin_dialogs_alias_chat(PurpleChat *);
00051 void pidgin_dialogs_remove_buddy(PurpleBuddy *);
00052 void pidgin_dialogs_remove_group(PurpleGroup *);
00053 void pidgin_dialogs_remove_chat(PurpleChat *);
00054 void pidgin_dialogs_remove_contact(PurpleContact *);
00055 void pidgin_dialogs_merge_groups(PurpleGroup *, const char *);
00056
00057
00058
00059 #ifndef PIDGIN_DISABLE_DEPRECATED
00060
00061
00062 #define PIDGIN_DIALOG(x) x = gtk_window_new(GTK_WINDOW_TOPLEVEL); \
00063 gtk_window_set_type_hint(GTK_WINDOW(x), GDK_WINDOW_TYPE_HINT_DIALOG)
00064 #endif
00065
00066 #define PIDGIN_WINDOW_ICONIFIED(x) (gdk_window_get_state(GTK_WIDGET(x)->window) & GDK_WINDOW_STATE_ICONIFIED)
00067
00068 #endif