Skip to content

Commit

Permalink
Update Growl framework
Browse files Browse the repository at this point in the history
  • Loading branch information
psychs committed Jul 28, 2012
1 parent 5a56955 commit 09c54a4
Show file tree
Hide file tree
Showing 11 changed files with 154 additions and 908 deletions.
18 changes: 18 additions & 0 deletions Classes/Controllers/Notifications/GrowlController.h
@@ -0,0 +1,18 @@
// LimeChat is copyrighted free software by Satoshi Nakagawa <psychs AT limechat DOT net>.
// You can redistribute it and/or modify it under the terms of the GPL version 2 (see the file GPL.txt).

#import <Foundation/Foundation.h>
#import "Growl/Growl.h"
#import "NotificationController.h"


@class IRCWorld;


@interface GrowlController : NSObject <GrowlApplicationBridgeDelegate>

@property (nonatomic, weak) IRCWorld* owner;

- (void)notify:(GrowlNotificationType)type title:(NSString*)title desc:(NSString*)desc context:(id)context;

@end
Expand Up @@ -26,6 +26,11 @@


@implementation GrowlController
{
__weak IRCWorld* owner;
id lastClickedContext;
CFAbsoluteTime lastClickedTime;
}

@synthesize owner;

Expand Down
Expand Up @@ -2,10 +2,6 @@
// You can redistribute it and/or modify it under the terms of the GPL version 2 (see the file GPL.txt).

#import <Foundation/Foundation.h>
#import "Growl/Growl.h"


@class IRCWorld;


typedef enum {
Expand All @@ -28,14 +24,9 @@ typedef enum {
} GrowlNotificationType;


@interface GrowlController : NSObject <GrowlApplicationBridgeDelegate>
{
__weak IRCWorld* owner;
id lastClickedContext;
CFAbsoluteTime lastClickedTime;
}
@protocol NotificationController <NSObject>

@property (nonatomic, weak) IRCWorld* owner;
@property (nonatomic, weak) id delegate;

- (void)notify:(GrowlNotificationType)type title:(NSString*)title desc:(NSString*)desc context:(id)context;

Expand Down
Binary file modified Frameworks/Growl.framework/Versions/A/Growl
Binary file not shown.
5 changes: 2 additions & 3 deletions Frameworks/Growl.framework/Versions/A/Headers/Growl.h
@@ -1,6 +1,5 @@
#include "GrowlDefines.h"
#include <Growl/GrowlDefines.h>

#ifdef __OBJC__
# include "GrowlApplicationBridge.h"
# include <Growl/GrowlApplicationBridge.h>
#endif
#include "GrowlApplicationBridge-Carbon.h"

0 comments on commit 09c54a4

Please sign in to comment.