/* AbiSource Application Framework * Copyright (C) 1998 AbiSource, Inc. * Copyright (C) 2001, 2009 Hubert Figuiere * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef XAP_COCOAFRAME_H #define XAP_COCOAFRAME_H #import #include "xap_Frame.h" class XAP_CocoaApp; class EV_CocoaKeyboard; class EV_CocoaMouse; class EV_CocoaMenuBar; class EV_CocoaMenuPopup; /***************************************************************** ****************************************************************** ** This file defines the cocoa-platform-specific class for the ** cross-platform application frame. This is used to hold all ** cocoa-specific data. One of these is created for each top-level ** document window. ****************************************************************** *****************************************************************/ class GR_CocoaCairoGraphics; class FV_View; @protocol XAP_MouseEventDelegate - (void)mouseDown:(NSEvent *)theEvent from:(id)sender; - (void)mouseDragged:(NSEvent *)theEvent from:(id)sender; - (void)mouseUp:(NSEvent *)theEvent from:(id)sender; @end // TODO should figure out if need default values @interface XAP_CocoaNSView : NSView { NSCursor *_cursor; XAP_Frame *m_pFrame; GR_CocoaCairoGraphics *m_pGR; NSObject *_eventDelegate; } - (id)initWith:(XAP_Frame *)frame andFrame:(NSRect)windowFrame; - (BOOL)acceptsFirstResponder; - (BOOL)becomeFirstResponder; - (XAP_Frame *)xapFrame; - (void)setGraphics:(GR_CocoaCairoGraphics *)gr; - (void)setEventDelegate:(NSObject*)delegate; - (NSObject*)eventDelegate; - (void)drawRect:(NSRect)aRect; - (BOOL)isFlipped; - (BOOL)isOpaque; - (void)hasBeenResized:(NSNotification*)notif; - (void)setCursor:(NSCursor*)cursor; @end #endif /* XAP_COCOAFRAME_H */