From be766f12c4c9629d720e149a983503034d75c192 Mon Sep 17 00:00:00 2001 From: Jonny Lamb Date: Tue, 4 Mar 2014 20:33:36 +0100 Subject: shell: remove old launcher grid and related widgets --- shell/app-launcher.h | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 shell/app-launcher.h (limited to 'shell/app-launcher.h') diff --git a/shell/app-launcher.h b/shell/app-launcher.h deleted file mode 100644 index 93965e8..0000000 --- a/shell/app-launcher.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (C) 2013 Collabora Ltd. - * - * Author: Emilio Pozuelo Monfort - */ - -#ifndef __APP_LAUNCHER_H__ -#define __APP_LAUNCHER_H__ - -#include -#include -#include - -#define APP_TYPE_LAUNCHER (app_launcher_get_type ()) -#define APP_LAUNCHER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), APP_TYPE_LAUNCHER, AppLauncher)) -#define APP_LAUNCHER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), APP_TYPE_LAUNCHER, AppLauncherClass)) -#define APP_IS_LAUNCHER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APP_TYPE_LAUNCHER)) -#define APP_IS_LAUNCHER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APP_TYPE_LAUNCHER)) -#define APP_LAUNCHER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), APP_TYPE_LAUNCHER, AppLauncherClass)) - -typedef struct AppLauncher AppLauncher; -typedef struct AppLauncherClass AppLauncherClass; -typedef struct AppLauncherPrivate AppLauncherPrivate; - -struct AppLauncher -{ - GtkBox parent; - - AppLauncherPrivate *priv; -}; - -struct AppLauncherClass -{ - GtkBoxClass parent_class; -}; - -GType app_launcher_get_type (void) G_GNUC_CONST; -GtkWidget *app_launcher_new_from_desktop_info (GDesktopAppInfo *info); -void app_launcher_activate (AppLauncher *self); - -#endif /* __APP_LAUNCHER_H__ */ -- cgit v1.3.1