Fri, 25 Apr 2003 06:47:33 +0000
[gaim-migrate @ 5573]
I had a damn good commit message, but it was eaten. Let's try it again.
Announcing, Gaim Plugin API version 2.0, or GPAPIV2.0 for short.
There are lots'a cool thingies here.
Okay now, this isn't as cool as the previous message, but:
1) There's now a single entry function for all plugin types. It returns a
detailed information structure on the plugin. This removes a lot of the
ugliness from old plugins. Oh yeah, libicq wasn't converted to this, so
if you use it, well, you shouldn't have used it anyway, but now you
can't! bwahahaha. Use AIM/ICQ.
2) There are now 3 types of plugins: Standard, Loader, and Protocol
plugins.
Standard plugins are, well, standard, compiled plugins.
Loader plugins load other plugins. For example, the perl support is now
a loader plugin. It loads perl scripts. In the future, we'll have
Ruby and Python loader plugins.
Protocol plugins are, well, protocol plugins... yeah...
3) Plugins have unique IDs, so they can be referred to or automatically
updated from a plugin database in the future. Neat, huh?
4) Plugins will have dependency support in the future, and can be hidden,
so if you have, say, a logging core plugin, it won't have to show up,
but then you load the GTK+ logging plugin and it'll auto-load the core
plugin. Core/UI split plugins!
5) There will eventually be custom plugin signals and RPC of some sort, for
the core/ui split plugins.
So, okay, back up .gaimrc.
I'd like to thank my parents for their support, javabsp for helping convert
a bunch of protocol plugins, and Etan for helping convert a bunch of
standard plugins.
Have fun. If you have any problems, please let me know, but you probably
won't have anything major happen. You will have to convert your plugins,
though, and I'm not guaranteeing that all perl scripts will still work.
I'll end up changing the perl script API eventually, so I know they won't
down the road. Don't worry, though. It'll be mass cool.
faceprint wants me to just commit the damn code already. So, here we go!!!
..
..
I need a massage. From a young, cute girl. Are there any young, cute girls
in the audience? IM me plz k thx.
| 5032 | 1 | /** |
| 2 | * @file gtkpounce.h GTK+ buddy pounce API | |
|
5034
077678f7b048
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
3 | * @ingroup gtkui |
| 5032 | 4 | * |
| 5 | * gaim | |
| 6 | * | |
| 7 | * Copyright (C) 2003, Christian Hammond <chipx86@gnupdate.org> | |
| 8 | * | |
| 9 | * This program is free software; you can redistribute it and/or modify | |
| 10 | * it under the terms of the GNU General Public License as published by | |
| 11 | * the Free Software Foundation; either version 2 of the License, or | |
| 12 | * (at your option) any later version. | |
| 13 | * | |
| 14 | * This program is distributed in the hope that it will be useful, | |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 | * GNU General Public License for more details. | |
| 18 | * | |
| 19 | * You should have received a copy of the GNU General Public License | |
| 20 | * along with this program; if not, write to the Free Software | |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 22 | */ | |
| 23 | #ifndef _GAIM_GTK_POUNCE_H_ | |
| 24 | #define _GAIM_GTK_POUNCE_H_ | |
| 25 | ||
| 26 | #include "pounce.h" | |
| 27 | ||
| 28 | /** | |
| 29 | * Types of actions that gaim's GTK+ interface supports. | |
| 30 | */ | |
| 31 | typedef enum | |
| 32 | { | |
| 33 | GAIM_GTKPOUNCE_NONE = 0x00, /**< No action. */ | |
| 34 | GAIM_GTKPOUNCE_OPEN_WIN = 0x01, /**< Open an IM window. */ | |
| 35 | GAIM_GTKPOUNCE_POPUP = 0x02, /**< Popup notification. */ | |
| 36 | GAIM_GTKPOUNCE_SEND_MSG = 0x04, /**< Send a message. */ | |
| 37 | GAIM_GTKPOUNCE_EXEC_CMD = 0x08, /**< Execute a command. */ | |
| 38 | GAIM_GTKPOUNCE_PLAY_SOUND = 0x10 /**< Play a sound. */ | |
| 39 | ||
| 40 | } GaimGtkPounceAction; | |
| 41 | ||
| 42 | /** | |
| 43 | * GTK+ pounce-specific data. | |
| 44 | */ | |
| 45 | struct gaim_gtkpounce_data | |
| 46 | { | |
| 47 | GaimGtkPounceAction actions; /**< The action(s) for this pounce. */ | |
| 48 | ||
| 49 | char *message; /**< The message to send, if | |
| 50 | GAIM_GTKPOUNCE_SEND_MSG is in actions. */ | |
| 51 | char *command; /**< The command to execute, if | |
| 52 | GAIM_GTKPOUNCE_EXEC_CMD is in actions. */ | |
| 53 | char *sound; /**< The sound file to play, if | |
| 54 | GAIM_GTKPOUNCE_PLAY_SOUND is in actions. */ | |
| 55 | ||
| 56 | gboolean save; /**< If TRUE, the pounce should be saved after | |
| 57 | activation. */ | |
| 58 | }; | |
| 59 | ||
| 60 | #define GAIM_GTKPOUNCE(pounce) \ | |
| 61 | ((struct gaim_gtkpounce_data *)gaim_pounce_get_data(pounce)) | |
| 62 | ||
| 63 | /** | |
| 64 | * The pounce dialog. | |
| 65 | * | |
| 66 | * The structure is opaque, as nobody should be touching anything inside of | |
| 67 | * it. | |
| 68 | */ | |
| 69 | struct gaim_gtkpounce_dialog; | |
| 70 | ||
| 71 | /** | |
| 72 | * Creates a GTK-specific pounce. | |
| 73 | * | |
| 74 | * @param pouncer The account that will pounce. | |
| 75 | * @param pouncee The buddy to pounce on. | |
| 76 | * @param events The event(s) to pounce on. | |
| 77 | * @param actions The actions. | |
| 78 | * @param message The optional message to send. | |
| 79 | * @param command The optional command to execute. | |
| 80 | * @param sound The optional sound to play. | |
| 81 | * @param save Whether or not to save the data. | |
| 82 | * | |
| 83 | * @return The new buddy pounce. | |
| 84 | */ | |
| 85 | struct gaim_pounce *gaim_gtkpounce_new(struct gaim_account *pouncer, | |
| 86 | const char *pouncee, | |
| 87 | GaimPounceEvent events, | |
| 88 | GaimGtkPounceAction actions, | |
| 89 | const char *message, | |
| 90 | const char *command, | |
| 91 | const char *sound, | |
| 92 | gboolean save); | |
| 93 | ||
| 94 | /** | |
| 95 | * Displays a New Buddy Pounce or Edit Buddy Pounce dialog. | |
| 96 | * | |
| 97 | * @param buddy The optional buddy to pounce on. | |
| 98 | * @param cur_pounce The current buddy pounce, if editting an existing one. | |
| 99 | */ | |
| 100 | void gaim_gtkpounce_dialog_show(struct buddy *buddy, | |
| 101 | struct gaim_pounce *cur_pounce); | |
| 102 | ||
| 103 | /** | |
| 104 | * Displays all registered buddy pounces in a menu. | |
| 105 | * | |
| 106 | * @param menu The menu to add to. | |
| 107 | */ | |
| 108 | void gaim_gtkpounce_menu_build(GtkWidget *menu); | |
| 109 | ||
| 110 | #endif /* _GAIM_GTK_POUNCE_H_ */ |