e72f81c24f
Now that we have a setuid launcher binary, we can make use of using a private protocol through the socket we're passed at startup. We also use the new hook in clutter-evdev to ask mutter-launch for the FDs of the input devices we need, and we emulate the old X DRM lock with a nested GMainContext without sources. In the future, mutter-launch will be replaced with the new logind API currently in development. https://bugzilla.gnome.org/show_bug.cgi?id=705861
56 lines
2.3 KiB
C
56 lines
2.3 KiB
C
/*
|
|
* Copyright (C) 2013 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
|
|
* 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_WESTON_LAUNCH_H
|
|
#define META_WESTON_LAUNCH_H
|
|
|
|
#include <glib-object.h>
|
|
#include "weston-launch.h"
|
|
|
|
#define META_TYPE_LAUNCHER (meta_launcher_get_type())
|
|
#define META_LAUNCHER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), META_TYPE_LAUNCHER, MetaLauncher))
|
|
#define META_LAUNCHER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), META_TYPE_LAUNCHER, MetaLauncherClass))
|
|
#define META_IS_LAUNCHER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), META_TYPE_LAUNCHER))
|
|
#define META_IS_LAUNCHER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), META_TYPE_LAUNCHER))
|
|
#define META_LAUNCHER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), META_LAUNCHER, MetaLauncherClass))
|
|
|
|
typedef struct _MetaLauncher MetaLauncher;
|
|
typedef struct _MetaLauncherClass MetaLauncherClass;
|
|
|
|
GType meta_launcher_get_type (void) G_GNUC_CONST;
|
|
|
|
MetaLauncher *meta_launcher_new (void);
|
|
|
|
gboolean meta_launcher_activate_vt (MetaLauncher *self,
|
|
int number,
|
|
GError **error);
|
|
|
|
gboolean meta_launcher_set_drm_fd (MetaLauncher *self,
|
|
int drm_fd,
|
|
GError **error);
|
|
gboolean meta_launcher_set_master (MetaLauncher *self,
|
|
gboolean master,
|
|
GError **error);
|
|
int meta_launcher_open_input_device (MetaLauncher *self,
|
|
const char *name,
|
|
int flags,
|
|
GError **error);
|
|
|
|
#endif
|