aboutsummaryrefslogtreecommitdiff
path: root/libtopmenu-common/topmenu-background.h
blob: 76c9f6df4ec1ff79dd6e6f9b73c53d9c970209f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * Copyright 2014-2015 Javier S. Pedro <dev.git@javispedro.com>
 *
 * This file is part of TopMenu.
 *
 * TopMenu 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 3 of the License, or
 * (at your option) any later version.
 *
 * TopMenu 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 TopMenu.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _TOPMENU_BACKGROUND_H_
#define _TOPMENU_BACKGROUND_H_

#include <gtk/gtk.h>
#include <gdk/gdkx.h>

G_BEGIN_DECLS

#define TOPMENU_TYPE_BACKGROUND           topmenu_background_get_type()
#define TOPMENU_BACKGROUND(obj)           (G_TYPE_CHECK_INSTANCE_CAST((obj), TOPMENU_TYPE_BACKGROUND, TopMenuBackground))
#define TOPMENU_IS_BACKGROUND(obj)        (G_TYPE_CHECK_INSTANCE_TYPE((obj), TOPMENU_TYPE_BACKGROUND))
#define TOPMENU_BACKGROUND_CLASS(c)       (G_TYPE_CHECK_CLASS_CAST((c), TOPMENU_TYPE_BACKGROUND, TopMenuBackgroundClass))
#define TOPMENU_IS_BACKGROUND_CLASS(c)    (G_TYPE_CHECK_CLASS_TYPE((c), TOPMENU_TYPE_BACKGROUND))
#define TOPMENU_BACKGROUND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), TOPMENU_TYPE_BACKGROUND, TopMenuBackgroundClass))

typedef struct _TopMenuBackground        TopMenuBackground;
typedef struct _TopMenuBackgroundClass   TopMenuBackgroundClass;
typedef struct _TopMenuBackgroundPrivate TopMenuBackgroundPrivate;

struct _TopMenuBackground
{
	GObject parent_instance;
	TopMenuBackgroundPrivate *priv;
};

struct _TopMenuBackgroundClass
{
	GObjectClass parent_class;
};

GType topmenu_background_get_type(void) G_GNUC_CONST;

TopMenuBackground * topmenu_background_new(void);

void topmenu_background_set_from_color(TopMenuBackground *self, double red, double green, double blue, double alpha);
void topmenu_background_set_from_drawable(TopMenuBackground *self, Drawable drawable);
void topmenu_background_set_from_cairo_pattern(TopMenuBackground *self, cairo_pattern_t *pattern);
void topmenu_background_clear(TopMenuBackground *self);

gboolean topmenu_background_get_color(TopMenuBackground *self, double *red, double *green, double *blue, double *alpha);
gboolean topmenu_background_get_pixmap(TopMenuBackground *self, Pixmap *pixmap);

cairo_pattern_t * topmenu_background_get_cairo_pattern(TopMenuBackground *self);

void topmenu_background_fill_client_message(TopMenuBackground *self, XClientMessageEvent *event);
void topmenu_background_set_from_client_message(TopMenuBackground *self, XClientMessageEvent *event);

void topmenu_background_apply(TopMenuBackground *self, GtkWidget *widget);
void topmenu_background_unapply(TopMenuBackground *self, GtkWidget *widget);

void topmenu_background_connect(TopMenuBackground *self, GtkWidget *widget);
void topmenu_background_disconnect(TopMenuBackground *self, GtkWidget *widget);

G_END_DECLS

#endif