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 / DSHTransparentDraggableWindow.h
100755 22 lines (16 sloc) 0.415 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// DSHTransparentDraggableWindow.h
// Terminalicious
//
// Created by Marc Charbonneau on 3/14/05.
// Copyright 2005 Downtown Software House. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import "DSHTransparentWindow.h"
 
 
@interface DSHTransparentDraggableWindow : DSHTransparentWindow
{
NSPoint initialLocation;
}
 
- (void)mouseDown:(NSEvent *)theEvent;
- (void)mouseDragged:(NSEvent *)theEvent;
 
@end