2017-06-21 06:23:44 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* 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
|
2023-08-07 09:50:23 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2017-06-21 06:23:44 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-07-21 13:37:20 +00:00
|
|
|
#pragma once
|
2017-06-21 06:23:44 +00:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
#include "backends/meta-monitor-manager-private.h"
|
|
|
|
#include "backends/meta-screen-cast-stream.h"
|
2018-12-12 10:35:58 +00:00
|
|
|
#include "backends/meta-screen-cast.h"
|
2017-06-21 06:23:44 +00:00
|
|
|
|
|
|
|
#define META_TYPE_SCREEN_CAST_MONITOR_STREAM (meta_screen_cast_monitor_stream_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaScreenCastMonitorStream,
|
|
|
|
meta_screen_cast_monitor_stream,
|
|
|
|
META, SCREEN_CAST_MONITOR_STREAM,
|
|
|
|
MetaScreenCastStream)
|
|
|
|
|
2018-12-14 16:47:57 +00:00
|
|
|
MetaScreenCastMonitorStream * meta_screen_cast_monitor_stream_new (MetaScreenCastSession *session,
|
|
|
|
GDBusConnection *connection,
|
|
|
|
MetaMonitor *monitor,
|
|
|
|
ClutterStage *stage,
|
|
|
|
MetaScreenCastCursorMode cursor_mode,
|
2020-04-21 14:54:54 +00:00
|
|
|
MetaScreenCastFlag flags,
|
2018-12-14 16:47:57 +00:00
|
|
|
GError **error);
|
2017-06-21 06:23:44 +00:00
|
|
|
|
|
|
|
ClutterStage * meta_screen_cast_monitor_stream_get_stage (MetaScreenCastMonitorStream *monitor_stream);
|
|
|
|
|
|
|
|
MetaMonitor * meta_screen_cast_monitor_stream_get_monitor (MetaScreenCastMonitorStream *monitor_stream);
|