summaryrefslogtreecommitdiff
path: root/src/backend/bacon-video-controls-actor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/bacon-video-controls-actor.h')
-rw-r--r--src/backend/bacon-video-controls-actor.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/backend/bacon-video-controls-actor.h b/src/backend/bacon-video-controls-actor.h
deleted file mode 100644
index be1288c59..000000000
--- a/src/backend/bacon-video-controls-actor.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Overlaid controls
- *
- * Copyright (C) 2013 Bastien Nocera <hadess@hadess.net>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2, 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 Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General
- * Public License along with this program; if not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifndef BACON_VIDEO_CONTROLS_ACTOR_H
-#define BACON_VIDEO_CONTROLS_ACTOR_H
-
-#include <glib-object.h>
-#include <clutter-gtk/clutter-gtk.h>
-
-G_BEGIN_DECLS
-
-#define OVERLAY_OPACITY 220
-
-#define BACON_TYPE_VIDEO_CONTROLS_ACTOR (bacon_video_controls_actor_get_type ())
-#define BACON_VIDEO_CONTROLS_ACTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BACON_TYPE_VIDEO_CONTROLS_ACTOR, BaconVideoControlsActor))
-#define BACON_VIDEO_CONTROLS_ACTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), BACON_TYPE_VIDEO_CONTROLS_ACTOR, BaconVideoControlsActorClass))
-#define BACON_IS_VIDEO_CONTROLS_ACTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BACON_TYPE_VIDEO_CONTROLS_ACTOR))
-#define BACON_IS_VIDEO_CONTROLS_ACTOR_CLASS(klass) (G_TYPE_INSTANCE_GET_CLASS ((klass), BACON_TYPE_VIDEO_CONTROLS_ACTOR))
-#define BACON_VIDEO_CONTROLS_ACTOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), BACON_TYPE_VIDEO_CONTROLS_ACTOR, BaconVideoControlsActorClass))
-
-typedef struct BaconVideoControlsActor BaconVideoControlsActor;
-typedef struct BaconVideoControlsActorClass BaconVideoControlsActorClass;
-typedef struct BaconVideoControlsActorPrivate BaconVideoControlsActorPrivate;
-
-struct BaconVideoControlsActor {
- GtkClutterActor parent;
-
- BaconVideoControlsActorPrivate *priv;
-};
-
-struct BaconVideoControlsActorClass {
- GtkClutterActorClass parent_class;
-};
-
-GType bacon_video_controls_actor_get_type (void);
-
-ClutterActor * bacon_video_controls_actor_new (void);
-
-G_END_DECLS
-
-#endif