2005-11-22 10:03:32 +00:00
|
|
|
/* GdkQuartzWindow.m
|
|
|
|
*
|
2007-06-16 15:41:27 +00:00
|
|
|
* Copyright (C) 2005-2007 Imendio AB
|
2005-11-22 10:03:32 +00:00
|
|
|
*
|
|
|
|
* 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 "GdkQuartzWindow.h"
|
|
|
|
#include "gdkwindow-quartz.h"
|
|
|
|
#include "gdkprivate-quartz.h"
|
|
|
|
|
|
|
|
@implementation GdkQuartzWindow
|
|
|
|
|
|
|
|
-(BOOL)windowShouldClose:(id)sender
|
|
|
|
{
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_DELETE);
|
|
|
|
|
|
|
|
event->any.window = g_object_ref (window);
|
|
|
|
event->any.send_event = FALSE;
|
|
|
|
|
|
|
|
_gdk_event_queue_append (gdk_display_get_default (), event);
|
|
|
|
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2007-07-06 19:49:42 +00:00
|
|
|
-(void)windowWillMiniaturize:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
|
|
|
|
_gdk_quartz_window_detach_from_parent (window);
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
-(void)windowDidMiniaturize:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
|
|
|
|
gdk_synthesize_window_state (window, 0,
|
|
|
|
GDK_WINDOW_STATE_ICONIFIED);
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)windowDidDeminiaturize:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
|
2007-07-06 19:49:42 +00:00
|
|
|
_gdk_quartz_window_attach_to_parent (window);
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
gdk_synthesize_window_state (window, GDK_WINDOW_STATE_ICONIFIED, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)windowDidBecomeKey:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
|
2007-04-06 21:12:48 +00:00
|
|
|
_gdk_quartz_events_update_focus_window (window, TRUE);
|
2006-07-19 17:06:40 +00:00
|
|
|
}
|
|
|
|
|
2006-07-24 10:46:21 +00:00
|
|
|
-(void)windowDidResignKey:(NSNotification *)aNotification
|
2006-07-19 17:06:40 +00:00
|
|
|
{
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
|
2007-04-06 21:12:48 +00:00
|
|
|
_gdk_quartz_events_update_focus_window (window, FALSE);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-07-07 16:19:40 +00:00
|
|
|
-(void)windowDidBecomeMain:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
GdkWindow *window;
|
|
|
|
|
|
|
|
window = [[self contentView] gdkWindow];
|
|
|
|
_gdk_quartz_window_did_become_main (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)windowDidResignMain:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
GdkWindow *window;
|
|
|
|
|
|
|
|
window = [[self contentView] gdkWindow];
|
|
|
|
_gdk_quartz_window_did_resign_main (window);
|
|
|
|
}
|
|
|
|
|
2007-06-16 15:41:27 +00:00
|
|
|
/* Used in combination with NSLeftMouseUp in sendEvent to keep track
|
|
|
|
* of when the window is being moved with the mouse.
|
|
|
|
*/
|
|
|
|
-(void)windowWillMove:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
if (leftDown)
|
|
|
|
inMove = YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)sendEvent:(NSEvent *)event
|
|
|
|
{
|
|
|
|
switch ([event type])
|
|
|
|
{
|
|
|
|
case NSLeftMouseDown:
|
|
|
|
leftDown = YES;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NSLeftMouseUp:
|
|
|
|
leftDown = NO;
|
|
|
|
inMove = NO;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
[super sendEvent:event];
|
|
|
|
}
|
|
|
|
|
|
|
|
-(BOOL)isInMove
|
|
|
|
{
|
|
|
|
return inMove;
|
|
|
|
}
|
|
|
|
|
2006-03-21 07:36:54 +00:00
|
|
|
-(void)windowDidMove:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
NSRect content_rect = [self contentRectForFrameRect:[self frame]];
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
private->x = content_rect.origin.x;
|
2007-04-06 21:12:48 +00:00
|
|
|
private->y = _gdk_quartz_window_get_inverted_screen_y (content_rect.origin.y) - impl->height;
|
2006-03-21 07:36:54 +00:00
|
|
|
|
|
|
|
/* Synthesize a configure event */
|
|
|
|
event = gdk_event_new (GDK_CONFIGURE);
|
|
|
|
event->configure.window = g_object_ref (window);
|
|
|
|
event->configure.x = private->x;
|
|
|
|
event->configure.y = private->y;
|
|
|
|
event->configure.width = impl->width;
|
|
|
|
event->configure.height = impl->height;
|
|
|
|
|
|
|
|
_gdk_event_queue_append (gdk_display_get_default (), event);
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
-(void)windowDidResize:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
NSRect content_rect = [self contentRectForFrameRect:[self frame]];
|
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
impl->width = content_rect.size.width;
|
|
|
|
impl->height = content_rect.size.height;
|
|
|
|
|
2007-06-30 08:56:50 +00:00
|
|
|
[[self contentView] setBounds:NSMakeRect (0, 0, impl->width, impl->height)];
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
/* Synthesize a configure event */
|
|
|
|
event = gdk_event_new (GDK_CONFIGURE);
|
|
|
|
event->configure.window = g_object_ref (window);
|
|
|
|
event->configure.x = private->x;
|
|
|
|
event->configure.y = private->y;
|
|
|
|
event->configure.width = impl->width;
|
|
|
|
event->configure.height = impl->height;
|
|
|
|
|
|
|
|
_gdk_event_queue_append (gdk_display_get_default (), event);
|
|
|
|
}
|
|
|
|
|
|
|
|
-(id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag
|
|
|
|
{
|
|
|
|
self = [super initWithContentRect:contentRect
|
|
|
|
styleMask:styleMask
|
|
|
|
backing:backingType
|
|
|
|
defer:flag];
|
|
|
|
|
|
|
|
[self setAcceptsMouseMovedEvents:YES];
|
|
|
|
[self setDelegate:self];
|
|
|
|
[self setReleasedWhenClosed:YES];
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2006-01-02 16:34:21 +00:00
|
|
|
-(BOOL)canBecomeMainWindow
|
|
|
|
{
|
2006-07-19 09:13:24 +00:00
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
switch (impl->type_hint)
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NORMAL:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DIALOG:
|
|
|
|
return YES;
|
|
|
|
|
|
|
|
case GDK_WINDOW_TYPE_HINT_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLBAR:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_SPLASHSCREEN:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_UTILITY:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DOCK:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DESKTOP:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_POPUP_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLTIP:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NOTIFICATION:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_COMBO:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DND:
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2006-01-02 16:34:21 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(BOOL)canBecomeKeyWindow
|
|
|
|
{
|
2006-07-19 09:13:24 +00:00
|
|
|
GdkWindow *window = [[self contentView] gdkWindow];
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
2007-06-04 20:45:30 +00:00
|
|
|
if (!private->accept_focus)
|
|
|
|
return NO;
|
|
|
|
|
2007-06-06 08:21:14 +00:00
|
|
|
/* Popup windows should not be able to get focused in the window
|
|
|
|
* manager sense, it's only handled through grabs.
|
2006-07-29 11:05:15 +00:00
|
|
|
*/
|
2007-06-06 08:21:14 +00:00
|
|
|
if (private->window_type == GDK_WINDOW_TEMP)
|
2006-07-29 11:05:15 +00:00
|
|
|
return NO;
|
|
|
|
|
2006-07-19 09:13:24 +00:00
|
|
|
switch (impl->type_hint)
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NORMAL:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DIALOG:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLBAR:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_UTILITY:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DOCK:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DESKTOP:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_POPUP_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_COMBO:
|
|
|
|
return YES;
|
|
|
|
|
|
|
|
case GDK_WINDOW_TYPE_HINT_SPLASHSCREEN:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLTIP:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NOTIFICATION:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DND:
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2006-01-02 16:34:21 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2006-03-21 08:02:17 +00:00
|
|
|
static GdkDragContext *current_context = NULL;
|
|
|
|
|
|
|
|
static GdkDragAction
|
|
|
|
drag_operation_to_drag_action (NSDragOperation operation)
|
|
|
|
{
|
|
|
|
GdkDragAction result = 0;
|
|
|
|
|
|
|
|
if (operation & NSDragOperationGeneric)
|
|
|
|
result |= GDK_ACTION_COPY;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NSDragOperation
|
|
|
|
drag_action_to_drag_operation (GdkDragAction action)
|
|
|
|
{
|
|
|
|
NSDragOperation result = 0;
|
|
|
|
|
|
|
|
if (action & GDK_ACTION_COPY)
|
|
|
|
result |= NSDragOperationCopy;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_context_from_dragging_info (id <NSDraggingInfo> sender)
|
|
|
|
{
|
|
|
|
g_assert (current_context != NULL);
|
|
|
|
|
|
|
|
GDK_DRAG_CONTEXT_PRIVATE (current_context)->dragging_info = sender;
|
|
|
|
current_context->suggested_action = drag_operation_to_drag_action ([sender draggingSourceOperationMask]);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
|
|
|
GdkEvent event;
|
|
|
|
|
|
|
|
if (current_context)
|
|
|
|
g_object_unref (current_context);
|
|
|
|
|
|
|
|
current_context = gdk_drag_context_new ();
|
|
|
|
update_context_from_dragging_info (sender);
|
|
|
|
|
|
|
|
event.dnd.type = GDK_DRAG_ENTER;
|
|
|
|
event.dnd.window = g_object_ref ([[self contentView] gdkWindow]);
|
|
|
|
event.dnd.send_event = FALSE;
|
|
|
|
event.dnd.context = current_context;
|
|
|
|
event.dnd.time = GDK_CURRENT_TIME;
|
|
|
|
|
|
|
|
(*_gdk_event_func) (&event, _gdk_event_data);
|
|
|
|
|
|
|
|
return NSDragOperationNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)draggingEnded:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
|
|
|
g_object_unref (current_context);
|
|
|
|
current_context = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)draggingExited:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
|
|
|
GdkEvent event;
|
|
|
|
|
|
|
|
event.dnd.type = GDK_DRAG_LEAVE;
|
|
|
|
event.dnd.window = g_object_ref ([[self contentView] gdkWindow]);
|
|
|
|
event.dnd.send_event = FALSE;
|
|
|
|
event.dnd.context = current_context;
|
|
|
|
event.dnd.time = GDK_CURRENT_TIME;
|
|
|
|
|
|
|
|
(*_gdk_event_func) (&event, _gdk_event_data);
|
|
|
|
|
|
|
|
g_object_unref (current_context);
|
|
|
|
current_context = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
|
|
|
NSPoint point = [sender draggingLocation];
|
|
|
|
NSPoint screen_point = [self convertBaseToScreen:point];
|
|
|
|
GdkEvent event;
|
|
|
|
|
|
|
|
update_context_from_dragging_info (sender);
|
|
|
|
|
|
|
|
event.dnd.type = GDK_DRAG_MOTION;
|
|
|
|
event.dnd.window = g_object_ref ([[self contentView] gdkWindow]);
|
|
|
|
event.dnd.send_event = FALSE;
|
|
|
|
event.dnd.context = current_context;
|
|
|
|
event.dnd.time = GDK_CURRENT_TIME;
|
|
|
|
event.dnd.x_root = screen_point.x;
|
2007-04-06 21:12:48 +00:00
|
|
|
event.dnd.y_root = _gdk_quartz_window_get_inverted_screen_y (screen_point.y);
|
2006-03-21 08:02:17 +00:00
|
|
|
|
|
|
|
(*_gdk_event_func) (&event, _gdk_event_data);
|
|
|
|
|
|
|
|
g_object_unref (event.dnd.window);
|
|
|
|
|
|
|
|
return drag_action_to_drag_operation (current_context->action);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
|
|
|
|
{
|
|
|
|
NSPoint point = [sender draggingLocation];
|
|
|
|
NSPoint screen_point = [self convertBaseToScreen:point];
|
|
|
|
GdkEvent event;
|
|
|
|
|
|
|
|
update_context_from_dragging_info (sender);
|
|
|
|
|
|
|
|
event.dnd.type = GDK_DROP_START;
|
|
|
|
event.dnd.window = g_object_ref ([[self contentView] gdkWindow]);
|
|
|
|
event.dnd.send_event = FALSE;
|
|
|
|
event.dnd.context = current_context;
|
|
|
|
event.dnd.time = GDK_CURRENT_TIME;
|
|
|
|
event.dnd.x_root = screen_point.x;
|
2007-04-06 21:12:48 +00:00
|
|
|
event.dnd.y_root = _gdk_quartz_window_get_inverted_screen_y (screen_point.y);
|
2006-03-21 08:02:17 +00:00
|
|
|
|
|
|
|
(*_gdk_event_func) (&event, _gdk_event_data);
|
|
|
|
|
|
|
|
g_object_unref (event.dnd.window);
|
|
|
|
|
|
|
|
g_object_unref (current_context);
|
|
|
|
current_context = NULL;
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)wantsPeriodicDraggingUpdates
|
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)draggedImage:(NSImage *)anImage endedAt:(NSPoint)aPoint operation:(NSDragOperation)operation
|
|
|
|
{
|
|
|
|
GdkEvent event;
|
|
|
|
|
|
|
|
g_assert (_gdk_quartz_drag_source_context != NULL);
|
|
|
|
|
|
|
|
event.dnd.type = GDK_DROP_FINISHED;
|
|
|
|
event.dnd.window = g_object_ref ([[self contentView] gdkWindow]);
|
|
|
|
event.dnd.send_event = FALSE;
|
|
|
|
event.dnd.context = _gdk_quartz_drag_source_context;
|
|
|
|
|
|
|
|
(*_gdk_event_func) (&event, _gdk_event_data);
|
|
|
|
|
|
|
|
g_object_unref (event.dnd.window);
|
|
|
|
|
|
|
|
g_object_unref (_gdk_quartz_drag_source_context);
|
|
|
|
_gdk_quartz_drag_source_context = NULL;
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
@end
|