forked from AuroraMiddleware/gtk
a862e9f6b9
2007-02-18 Richard Hult <richard@imendio.com> * gdk/quartz/GdkQuartzView.h: * gdk/quartz/GdkQuartzWindow.h: * gdk/quartz/gdkquartz.h: Import AppKit.h instead of Quartz.h. * gdk/quartz/gdkscreen-quartz.c: (get_mm_from_pixels): Don't use userSpaceScaleFactor for 10.3. Those changes bring us closer to working on panther, patch from Mathias Hasselmann. * gdk/quartz/gdkeventloop-quartz.c: Add includes to fix build warnings. svn path=/trunk/; revision=17323
36 lines
991 B
Objective-C
36 lines
991 B
Objective-C
/* GdkQuartzView.h
|
|
*
|
|
* Copyright (C) 2005 Imendio AB
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#import <AppKit/AppKit.h>
|
|
#include "gdkwindow.h"
|
|
|
|
@interface GdkQuartzView : NSView {
|
|
GdkWindow *gdk_window;
|
|
}
|
|
|
|
-(void)setGdkWindow:(GdkWindow *)window;
|
|
-(GdkWindow *)gdkWindow;
|
|
|
|
@end
|
|
|
|
|
|
|
|
|