From 17b7aef701c1dfac0376149aba64fbcdde278a32 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 4 Jan 2011 18:05:09 +0000 Subject: linux: use the number of active DRM devices to determine the system docked status Not ideal, but better than relying on ACPI. --- src/linux/up-dock.h | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/linux/up-dock.h (limited to 'src/linux/up-dock.h') diff --git a/src/linux/up-dock.h b/src/linux/up-dock.h new file mode 100644 index 0000000..1f7c80a --- /dev/null +++ b/src/linux/up-dock.h @@ -0,0 +1,58 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2010 Richard Hughes + * + * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef __UP_DOCK_H__ +#define __UP_DOCK_H__ + +#include + +#include "up-daemon.h" + +G_BEGIN_DECLS + +#define UP_TYPE_DOCK (up_dock_get_type ()) +#define UP_DOCK(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), UP_TYPE_DOCK, UpDock)) +#define UP_DOCK_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), UP_TYPE_DOCK, UpDockClass)) +#define UP_IS_DOCK(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), UP_TYPE_DOCK)) +#define UP_IS_DOCK_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), UP_TYPE_DOCK)) +#define UP_DOCK_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), UP_TYPE_DOCK, UpDockClass)) + +typedef struct UpDockPrivate UpDockPrivate; + +typedef struct +{ + GObject parent; + UpDockPrivate *priv; +} UpDock; + +typedef struct +{ + GObjectClass parent_class; +} UpDockClass; + +GType up_dock_get_type (void); +UpDock *up_dock_new (void); +gboolean up_dock_coldplug (UpDock *dock, + UpDaemon *daemon); + +G_END_DECLS + +#endif /* __UP_DOCK_H__ */ + -- cgit v1.2.3