Blame src/shell-invert-lightness-effect.h

Packit Service ed5168
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
Packit Service ed5168
/*
Packit Service ed5168
 * Copyright © 2010-2012 Inclusive Design Research Centre, OCAD University.
Packit Service ed5168
 *
Packit Service ed5168
 * This program is free software; you can redistribute it and/or
Packit Service ed5168
 * modify it under the terms of the GNU Lesser General Public
Packit Service ed5168
 * License as published by the Free Software Foundation; either
Packit Service ed5168
 * version 2 of the License, or (at your option) any later version.
Packit Service ed5168
 *
Packit Service ed5168
 * This library is distributed in the hope that it will be useful,
Packit Service ed5168
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service ed5168
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service ed5168
 * Lesser General Public License for more details.
Packit Service ed5168
 *
Packit Service ed5168
 * You should have received a copy of the GNU Lesser General Public
Packit Service ed5168
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
Packit Service ed5168
 *
Packit Service ed5168
 * Author:
Packit Service ed5168
 *   Joseph Scheuhammer <clown@alum.mit.edu>
Packit Service ed5168
 */
Packit Service ed5168
#ifndef __SHELL_INVERT_LIGHTNESS_EFFECT_H__
Packit Service ed5168
#define __SHELL_INVERT_LIGHTNESS_EFFECT_H__
Packit Service ed5168
Packit Service ed5168
#include <clutter/clutter.h>
Packit Service ed5168
Packit Service ed5168
G_BEGIN_DECLS
Packit Service ed5168
Packit Service ed5168
#define SHELL_TYPE_INVERT_LIGHTNESS_EFFECT        (shell_invert_lightness_effect_get_type ())
Packit Service ed5168
#define SHELL_INVERT_LIGHTNESS_EFFECT(obj)        (G_TYPE_CHECK_INSTANCE_CAST ((obj), SHELL_TYPE_INVERT_LIGHTNESS_EFFECT, ShellInvertLightnessEffect))
Packit Service ed5168
#define SHELL_IS_INVERT_LIGHTNESS_EFFECT(obj)     (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SHELL_TYPE_INVERT_LIGHTNESS_EFFECT))
Packit Service ed5168
Packit Service ed5168
typedef struct _ShellInvertLightnessEffect        ShellInvertLightnessEffect;
Packit Service ed5168
typedef struct _ShellInvertLightnessEffectClass   ShellInvertLightnessEffectClass;
Packit Service ed5168
Packit Service ed5168
GType shell_invert_lightness_effect_get_type (void) G_GNUC_CONST;
Packit Service ed5168
Packit Service ed5168
ClutterEffect *shell_invert_lightness_effect_new (void);
Packit Service ed5168
Packit Service ed5168
G_END_DECLS
Packit Service ed5168
Packit Service ed5168
#endif /* __SHELL_INVERT_LIGHTNESS_EFFECT_H__ */