bmizerany / Elephant

An Adium Plugin for keeping realtime backup/full-text search of all chats

This URL has Read+Write access

Blake Mizerany (author)
Thu Jun 04 11:52:32 -0700 2009
Elephant / ElephantPreferencePane.m
100644 35 lines (27 sloc) 0.539 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// ElephantPreferencePane.m
// Elephant
//
// Created by blake on 6/4/09.
// Copyright 2009 Heroku. All rights reserved.
//
 
#import "ElephantPreferencePane.h"
 
@implementation ElephantPreferencePane
 
-(NSString *)label
{
  return @"Elephant";
}
 
-(NSString *)nibName
{
  return @"ElephantPreferencePane";
}
 
-(NSImage *)image
{
  NSURL *url = [NSURL URLWithString:@"http://www.treehugger.com/happy-elephant-01.jpg"];
  return [[NSImage alloc] initWithContentsOfURL:url];
}
 
-(NSString *)category
{
  return @"Search Elep";
}
 
@end