summaryrefslogtreecommitdiff
path: root/frontends/cocoa/ArrowWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/cocoa/ArrowWindow.h')
-rw-r--r--frontends/cocoa/ArrowWindow.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/frontends/cocoa/ArrowWindow.h b/frontends/cocoa/ArrowWindow.h
index 79f422f3e..94b49fbb6 100644
--- a/frontends/cocoa/ArrowWindow.h
+++ b/frontends/cocoa/ArrowWindow.h
@@ -6,16 +6,15 @@
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
-
#import <Cocoa/Cocoa.h>
#import "ArrowBox.h"
@interface ArrowWindow : NSWindow {
- ArrowBox *box;
- NSView *content;
- BOOL acceptsKey;
- NSWindow *attachedWindow;
+ ArrowBox *box;
+ NSView *content;
+ BOOL acceptsKey;
+ NSWindow *attachedWindow;
}
@property (readwrite, assign, nonatomic) BOOL acceptsKey;
@@ -25,8 +24,8 @@
@property (readwrite, assign, nonatomic) ArrowEdge arrowEdge;
@property (readwrite, assign, nonatomic) CGFloat cornerRadius;
-- (void) moveToPoint: (NSPoint) screenPoint;
-- (void) attachToView: (NSView *) view;
-- (void) detach;
+- (void)moveToPoint:(NSPoint)screenPoint;
+- (void)attachToView:(NSView *)view;
+- (void)detach;
@end