1
0
Fork 0
mutter-performance-source/src/core/meta-selection-source-remote.h
Jonas Ådahl 5104a9b2ce remote-desktop/session: Add support for SelectionTransfer/Write
When a transfer request is done to the MetaSelectionSourceRemote source,
it's translated to a SelectionTransfer signal, which the remote desktop
server is supposed to respond to with SelectionWrite.

A timeout (set to 15 seconds) is added to handle too long timeouts,
which cancels the transfer request.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1552>
2021-02-05 16:44:27 +00:00

43 lines
1.9 KiB
C

/*
* Copyright (C) 2020 Red Hat
*
* 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 META_SELECTION_SOURCE_REMOTE_H
#define META_SELECTION_SOURCE_REMOTE_H
#include "backends/meta-remote-desktop.h"
#include "meta/meta-selection-source.h"
#define META_TYPE_SELECTION_SOURCE_REMOTE (meta_selection_source_remote_get_type ())
G_DECLARE_FINAL_TYPE (MetaSelectionSourceRemote,
meta_selection_source_remote,
META, SELECTION_SOURCE_REMOTE,
MetaSelectionSource)
void meta_selection_source_remote_complete_transfer (MetaSelectionSourceRemote *source_remote,
int fd,
GTask *task);
void meta_selection_source_remote_cancel_transfer (MetaSelectionSourceRemote *source_remote,
GTask *task);
MetaSelectionSourceRemote * meta_selection_source_remote_new (MetaRemoteDesktopSession *session,
GList *mime_types);
#endif /* META_SELECTION_SOURCE_REMOTE_H */