public
Description: A handy OS X menu icon application for launching commands in Terminal.app and iTerm.
Homepage: http://mbcharbonneau.github.com/terminalicious
Clone URL: git://github.com/mbcharbonneau/terminalicious.git
terminalicious / DSHTransparentView.h
100755 21 lines (15 sloc) 0.314 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// DSHTransparentView.h
// Terminalicious
//
// Created by Marc Charbonneau on 3/13/05.
// Copyright 2005 Downtown Software House. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface DSHTransparentView : NSView
{
NSImage *background;
}
 
- (void)awakeFromNib;
- (void)drawRect:(NSRect)rect;
 
@end