mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 05:00:09 +00:00
3fd931d392
This gets the basic mechanics of the drop portion of DnD working on the macOS backend. You can drag, for example, from TextEdit into GNOME Text Editor when using the macOS backend. Other content formats are supported, and match what is currently supported by the clipboard backend as the implementation to read from the pasteboard is shared. Currently, we look up the GdkDrag for the new GdkDrop. However, nothing is stashing the drag away for further lookup. More work is needed on GdkMacosDrag for that to be doable.
67 lines
2.3 KiB
C
67 lines
2.3 KiB
C
/*
|
|
* Copyright © 2021 Red Hat, Inc.
|
|
*
|
|
* 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.1 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef __GDK_MACOS_DROP_PRIVATE_H__
|
|
#define __GDK_MACOS_DROP_PRIVATE_H__
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#include "gdkdropprivate.h"
|
|
|
|
#include "gdkmacossurface-private.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GDK_TYPE_MACOS_DROP (gdk_macos_drop_get_type ())
|
|
#define GDK_MACOS_DROP(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_MACOS_DROP, GdkMacosDrop))
|
|
#define GDK_MACOS_DROP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_MACOS_DROP, GdkMacosDropClass))
|
|
#define GDK_IS_MACOS_DROP(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_MACOS_DROP))
|
|
#define GDK_IS_MACOS_DROP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_MACOS_DROP))
|
|
#define GDK_MACOS_DROP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_MACOS_DROP, GdkMacosDropClass))
|
|
|
|
typedef struct _GdkMacosDrop GdkMacosDrop;
|
|
typedef struct _GdkMacosDropClass GdkMacosDropClass;
|
|
|
|
struct _GdkMacosDrop
|
|
{
|
|
GdkDrop parent_instance;
|
|
|
|
NSPasteboard *pasteboard;
|
|
|
|
GdkDragAction all_actions;
|
|
GdkDragAction preferred_action;
|
|
GdkDragAction finish_action;
|
|
};
|
|
|
|
struct _GdkMacosDropClass
|
|
{
|
|
GdkDropClass parent_class;
|
|
};
|
|
|
|
GType gdk_macos_drop_get_type (void) G_GNUC_CONST;
|
|
GdkMacosDrop *_gdk_macos_drop_new (GdkMacosSurface *surface,
|
|
id<NSDraggingInfo> info);
|
|
NSDragOperation _gdk_macos_drop_operation (GdkMacosDrop *self);
|
|
void _gdk_macos_drop_update_actions (GdkMacosDrop *self,
|
|
id<NSDraggingInfo> info);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GDK_MACOS_DROP_PRIVATE_H__ */
|