julius / bezelhud

Quicksilver Interface

This URL has Read+Write access

bezelhud / BHBackgroundView.h
100644 40 lines (30 sloc) 0.668 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
36
37
38
39
40
//
// BHBackgroundView.h
// BezelHUD
//
// Created by Julius Eckert on 20.01.08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import <QSInterface/QSBackgroundView.h>
 
@interface BHBackgroundView : QSBackgroundView {
IBOutlet NSTextField* text_title;
 
NSImage* image1;
NSImage* image2;
NSImage* image3;
NSImage* image4;
NSImage* image5;
NSImage* image6;
NSImage* image7;
NSImage* image8;
NSImage* image9;
 
NSImage* image_big;
NSImage* image_small;
}
 
-(NSTextField*) text_title;
-(IBAction) buttonClose:(id)sender;
 
@end
 
 
@interface NSObject (controller)
 
-(bool) isInEditorMode;
-(id) getEditorSender;
 
@end