First shot at SDL_SetWindowDragAreas().
Only Cocoa implemented right now. --HG-- extra : amend_source : b178ad0ae25b933b284ed1bda89df750ddd27fb3
This commit is contained in:
parent
5f9c366fe2
commit
cce4ce44d4
11 changed files with 249 additions and 2 deletions
|
@ -580,3 +580,4 @@
|
|||
#define SDL_WinRTGetFSPathUTF8 SDL_WinRTGetFSPathUTF8_REAL
|
||||
#define SDL_WinRTRunApp SDL_WinRTRunApp_REAL
|
||||
#define SDL_CaptureMouse SDL_CaptureMouse_REAL
|
||||
#define SDL_SetWindowDragAreas SDL_SetWindowDragAreas_REAL
|
||||
|
|
|
@ -613,3 +613,4 @@ SDL_DYNAPI_PROC(const char*,SDL_WinRTGetFSPathUTF8,(SDL_WinRT_Path a),(a),return
|
|||
SDL_DYNAPI_PROC(int,SDL_WinRTRunApp,(int a, char **b, void *c),(a,b,c),return)
|
||||
#endif
|
||||
SDL_DYNAPI_PROC(int,SDL_CaptureMouse,(SDL_bool a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_SetWindowDragAreas,(SDL_Window *a, const SDL_Rect *b, int c),(a,b,c),return)
|
||||
|
|
|
@ -97,6 +97,9 @@ struct SDL_Window
|
|||
|
||||
SDL_WindowShaper *shaper;
|
||||
|
||||
int num_drag_areas;
|
||||
SDL_Rect *drag_areas;
|
||||
|
||||
SDL_WindowUserData *data;
|
||||
|
||||
void *driverdata;
|
||||
|
@ -261,6 +264,9 @@ struct SDL_VideoDevice
|
|||
/* MessageBox */
|
||||
int (*ShowMessageBox) (_THIS, const SDL_MessageBoxData *messageboxdata, int *buttonid);
|
||||
|
||||
/* Drag areas. Note that (areas) and (num_areas) are also copied to the SDL_Window for you after this call. */
|
||||
int (*SetWindowDragAreas)(SDL_Window * window, const SDL_Rect *areas, int num_areas);
|
||||
|
||||
/* * * */
|
||||
/* Data common to all drivers */
|
||||
SDL_bool suspend_screensaver;
|
||||
|
|
|
@ -1410,6 +1410,11 @@ SDL_RecreateWindow(SDL_Window * window, Uint32 flags)
|
|||
SDL_SetWindowIcon(window, icon);
|
||||
SDL_FreeSurface(icon);
|
||||
}
|
||||
|
||||
if (window->num_drag_areas > 0) {
|
||||
_this->SetWindowDragAreas(window, window->drag_areas, window->num_drag_areas);
|
||||
}
|
||||
|
||||
SDL_FinishWindowCreation(window, flags);
|
||||
|
||||
return 0;
|
||||
|
@ -2305,6 +2310,8 @@ SDL_DestroyWindow(SDL_Window * window)
|
|||
_this->windows = window->next;
|
||||
}
|
||||
|
||||
SDL_free(window->drag_areas);
|
||||
|
||||
SDL_free(window);
|
||||
}
|
||||
|
||||
|
@ -3380,4 +3387,34 @@ SDL_ShouldAllowTopmost(void)
|
|||
return SDL_TRUE;
|
||||
}
|
||||
|
||||
int
|
||||
SDL_SetWindowDragAreas(SDL_Window * window, const SDL_Rect *_areas, int num_areas)
|
||||
{
|
||||
SDL_Rect *areas = NULL;
|
||||
|
||||
CHECK_WINDOW_MAGIC(window, -1);
|
||||
|
||||
if (!_this->SetWindowDragAreas) {
|
||||
return SDL_Unsupported();
|
||||
}
|
||||
|
||||
if (num_areas > 0) {
|
||||
const size_t len = sizeof (SDL_Rect) * num_areas;
|
||||
areas = (SDL_Rect *) SDL_malloc(len);
|
||||
if (!areas) {
|
||||
return SDL_OutOfMemory();
|
||||
}
|
||||
SDL_memcpy(areas, _areas, len);
|
||||
}
|
||||
|
||||
if (_this->SetWindowDragAreas(window, areas, num_areas) == -1) {
|
||||
SDL_free(areas);
|
||||
return -1;
|
||||
}
|
||||
|
||||
SDL_free(window->drag_areas);
|
||||
window->drag_areas = areas;
|
||||
window->num_drag_areas = num_areas;
|
||||
}
|
||||
|
||||
/* vi: set ts=4 sw=4 expandtab: */
|
||||
|
|
|
@ -108,6 +108,7 @@ Cocoa_CreateDevice(int devindex)
|
|||
device->SetWindowGrab = Cocoa_SetWindowGrab;
|
||||
device->DestroyWindow = Cocoa_DestroyWindow;
|
||||
device->GetWindowWMInfo = Cocoa_GetWindowWMInfo;
|
||||
device->SetWindowDragAreas = Cocoa_SetWindowDragAreas;
|
||||
|
||||
device->shape_driver.CreateShaper = Cocoa_CreateShaper;
|
||||
device->shape_driver.SetWindowShape = Cocoa_SetWindowShape;
|
||||
|
|
|
@ -45,6 +45,7 @@ typedef enum
|
|||
PendingWindowOperation pendingWindowOperation;
|
||||
BOOL isMoving;
|
||||
int pendingWindowWarpX, pendingWindowWarpY;
|
||||
BOOL isDragAreaRunning;
|
||||
}
|
||||
|
||||
-(void) listen:(SDL_WindowData *) data;
|
||||
|
@ -75,6 +76,9 @@ typedef enum
|
|||
-(void) windowDidExitFullScreen:(NSNotification *) aNotification;
|
||||
-(NSApplicationPresentationOptions)window:(NSWindow *)window willUseFullScreenPresentationOptions:(NSApplicationPresentationOptions)proposedOptions;
|
||||
|
||||
/* See if event is in a drag area, toggle on window dragging. */
|
||||
-(BOOL) processDragArea:(NSEvent *)theEvent;
|
||||
|
||||
/* Window event handling */
|
||||
-(void) mouseDown:(NSEvent *) theEvent;
|
||||
-(void) rightMouseDown:(NSEvent *) theEvent;
|
||||
|
@ -115,6 +119,7 @@ struct SDL_WindowData
|
|||
SDL_bool inWindowMove;
|
||||
Cocoa_WindowListener *listener;
|
||||
struct SDL_VideoData *videodata;
|
||||
NSView *dragarea;
|
||||
};
|
||||
|
||||
extern int Cocoa_CreateWindow(_THIS, SDL_Window * window);
|
||||
|
@ -138,8 +143,8 @@ extern int Cocoa_SetWindowGammaRamp(_THIS, SDL_Window * window, const Uint16 * r
|
|||
extern int Cocoa_GetWindowGammaRamp(_THIS, SDL_Window * window, Uint16 * ramp);
|
||||
extern void Cocoa_SetWindowGrab(_THIS, SDL_Window * window, SDL_bool grabbed);
|
||||
extern void Cocoa_DestroyWindow(_THIS, SDL_Window * window);
|
||||
extern SDL_bool Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window,
|
||||
struct SDL_SysWMinfo *info);
|
||||
extern SDL_bool Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, struct SDL_SysWMinfo *info);
|
||||
extern int Cocoa_SetWindowDragAreas(SDL_Window *window, const SDL_Rect *areas, int num_areas);
|
||||
|
||||
#endif /* _SDL_cocoawindow_h */
|
||||
|
||||
|
|
|
@ -180,6 +180,7 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
inFullscreenTransition = NO;
|
||||
pendingWindowOperation = PENDING_OPERATION_NONE;
|
||||
isMoving = NO;
|
||||
isDragAreaRunning = NO;
|
||||
|
||||
center = [NSNotificationCenter defaultCenter];
|
||||
|
||||
|
@ -656,10 +657,46 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
/*NSLog(@"doCommandBySelector: %@\n", NSStringFromSelector(aSelector));*/
|
||||
}
|
||||
|
||||
- (BOOL)processDragArea:(NSEvent *)theEvent
|
||||
{
|
||||
const int num_areas = _data->window->num_drag_areas;
|
||||
|
||||
SDL_assert(isDragAreaRunning == [_data->nswindow isMovableByWindowBackground]);
|
||||
SDL_assert((num_areas > 0) || !isDragAreaRunning);
|
||||
|
||||
if (num_areas > 0) { /* if no drag areas, skip this. */
|
||||
int i;
|
||||
const NSPoint location = [theEvent locationInWindow];
|
||||
const SDL_Point point = { (int) location.x, _data->window->h - (((int) location.y)-1) };
|
||||
const SDL_Rect *areas = _data->window->drag_areas;
|
||||
for (i = 0; i < num_areas; i++) {
|
||||
if (SDL_PointInRect(&point, &areas[i])) {
|
||||
if (!isDragAreaRunning) {
|
||||
isDragAreaRunning = YES;
|
||||
[_data->nswindow setMovableByWindowBackground:YES];
|
||||
}
|
||||
return YES; /* started a new drag! */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (isDragAreaRunning) {
|
||||
isDragAreaRunning = NO;
|
||||
[_data->nswindow setMovableByWindowBackground:NO];
|
||||
return YES; /* was dragging, drop event. */
|
||||
}
|
||||
|
||||
return NO; /* not a drag area, carry on. */
|
||||
}
|
||||
|
||||
- (void)mouseDown:(NSEvent *)theEvent
|
||||
{
|
||||
int button;
|
||||
|
||||
if ([self processDragArea:theEvent]) {
|
||||
return; /* dragging, drop event. */
|
||||
}
|
||||
|
||||
switch ([theEvent buttonNumber]) {
|
||||
case 0:
|
||||
if (([theEvent modifierFlags] & NSControlKeyMask) &&
|
||||
|
@ -698,6 +735,10 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
{
|
||||
int button;
|
||||
|
||||
if ([self processDragArea:theEvent]) {
|
||||
return; /* stopped dragging, drop event. */
|
||||
}
|
||||
|
||||
switch ([theEvent buttonNumber]) {
|
||||
case 0:
|
||||
if (wasCtrlLeft) {
|
||||
|
@ -737,6 +778,10 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
NSPoint point;
|
||||
int x, y;
|
||||
|
||||
if ([self processDragArea:theEvent]) {
|
||||
return; /* dragging, drop event. */
|
||||
}
|
||||
|
||||
if (mouse->relative_mode) {
|
||||
return;
|
||||
}
|
||||
|
@ -883,6 +928,7 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
|
||||
/* The default implementation doesn't pass rightMouseDown to responder chain */
|
||||
- (void)rightMouseDown:(NSEvent *)theEvent;
|
||||
- (BOOL)mouseDownCanMoveWindow;
|
||||
@end
|
||||
|
||||
@implementation SDLView
|
||||
|
@ -891,6 +937,14 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
[[self nextResponder] rightMouseDown:theEvent];
|
||||
}
|
||||
|
||||
- (BOOL)mouseDownCanMoveWindow
|
||||
{
|
||||
/* Always say YES, but this doesn't do anything until we call
|
||||
-[NSWindow setMovableByWindowBackground:YES], which we ninja-toggle
|
||||
during mouse events when we're using a drag area. */
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (void)resetCursorRects
|
||||
{
|
||||
[super resetCursorRects];
|
||||
|
@ -1544,6 +1598,12 @@ Cocoa_SetWindowFullscreenSpace(SDL_Window * window, SDL_bool state)
|
|||
return succeeded;
|
||||
}
|
||||
|
||||
int
|
||||
Cocoa_SetWindowDragAreas(SDL_Window * window, const SDL_Rect *areas, int num_areas)
|
||||
{
|
||||
return 0; /* just succeed, the real work is done elsewhere. */
|
||||
}
|
||||
|
||||
#endif /* SDL_VIDEO_DRIVER_COCOA */
|
||||
|
||||
/* vi: set ts=4 sw=4 expandtab: */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue