~ken-vandine/+junk/xdg-desktop-portal-gtk_0.10

« back to all changes in this revision

Viewing changes to src/remotedesktopdialog.h

  • Committer: Ken VanDine
  • Date: 2018-02-14 16:27:00 UTC
  • Revision ID: ken.vandine@canonical.com-20180214162700-e61q0115hwx2bb3z
init

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2018 Red Hat, Inc
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 */
 
18
 
 
19
#pragma once
 
20
 
 
21
#include <gtk/gtk.h>
 
22
 
 
23
#define REMOTE_DESKTOP_TYPE_DIALOG (remote_desktop_dialog_get_type ())
 
24
G_DECLARE_FINAL_TYPE (RemoteDesktopDialog, remote_desktop_dialog,
 
25
                      REMOTE_DESKTOP, DIALOG, GtkWindow)
 
26
 
 
27
RemoteDesktopDialog * remote_desktop_dialog_new (const char *app_id,
 
28
                                                 RemoteDesktopDeviceType device_types,
 
29
                                                 gboolean screen_cast_enable,
 
30
                                                 gboolean screen_cast_multiple);