libgaim.framework [386] which has extensive debugging in the upnp module to try to...
[adiumx.git] / Source / ESiTunesPlugin.h
blob51da6c2e792fdadd7c868ca33c9c68663fbd5b5b
1 // ESiTunesPlugin.h
2 // Adium
3 //
4 // Started by Evan Schoenberg on 6/11/05.
5 // Assigned to Kiel Gillard (Trac Ticket #316)
7 #import <Adium/AIPlugin.h>
9 @protocol AIContentFilter;
11 typedef enum {
12 AUTODISABLES = 0,
13 ALWAYS_ENABLED = 1,
14 ENABLED_IF_ITUNES_PLAYING = 2,
15 RESPONDER_IS_WEBVIEW = 3
16 } KGiTunesPluginMenuItemKind;
18 @interface ESiTunesPlugin : AIPlugin <AIContentFilter> {
19 NSDictionary *iTunesCurrentInfo;
21 NSDictionary *substitutionDict;
22 NSDictionary *phraseSubstitutionDict;
23 BOOL iTunesIsStopped;
24 BOOL iTunesIsPaused;
27 @end