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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* class group object */
/* vim: set sw=2 et: */

/*
 * Copyright (C) 2003 Ximian, Inc.
 * Authors: Federico Mena-Quintero <federico@ximian.com>
 * Copyright (C) 2006-2007 Vincent Untz
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

#if !defined (__LIBVNCK_H_INSIDE__) && !defined (VNCK_COMPILATION)
#error "Only <libvnck/libvnck.h> can be included directly."
#endif

#ifndef VNCK_CLASS_GROUP_H
#define VNCK_CLASS_GROUP_H

#include <glib-object.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libvnck/screen.h>

G_BEGIN_DECLS

#define VNCK_TYPE_CLASS_GROUP              (vnck_class_group_get_type ())
#define VNCK_CLASS_GROUP(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), VNCK_TYPE_CLASS_GROUP, VnckClassGroup))
#define VNCK_CLASS_GROUP_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), VNCK_TYPE_CLASS_GROUP, VnckClassGroupClass))
#define VNCK_IS_CLASS_GROUP(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), VNCK_TYPE_CLASS_GROUP))
#define VNCK_IS_CLASS_GROUP_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), VNCK_TYPE_CLASS_GROUP))
#define VNCK_CLASS_GROUP_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), VNCK_TYPE_CLASS_GROUP, VnckClassGroupClass))

typedef struct _VnckClassGroupClass   VnckClassGroupClass;
typedef struct _VnckClassGroupPrivate VnckClassGroupPrivate;

/**
 * VnckClassGroup:
 *
 * The #VnckClassGroup struct contains only private fields and should not be
 * directly accessed.
 */
struct _VnckClassGroup
{
  GObject parent_instance;

  VnckClassGroupPrivate *priv;
};

struct _VnckClassGroupClass
{
  GObjectClass parent_class;

  void (* name_changed) (VnckClassGroup *group);
  void (* icon_changed) (VnckClassGroup *group);

  /* Padding for future expansion */
  void (* pad1) (void);
  void (* pad2) (void);
  void (* pad3) (void);
  void (* pad4) (void);
};

GType vnck_class_group_get_type (void) G_GNUC_CONST;

VnckClassGroup *vnck_class_group_get (const char *id);

GList *vnck_class_group_get_windows (VnckClassGroup *class_group);
const char * vnck_class_group_get_id (VnckClassGroup *class_group);

const char * vnck_class_group_get_name (VnckClassGroup *class_group);

GdkPixbuf *vnck_class_group_get_icon (VnckClassGroup *class_group);
GdkPixbuf *vnck_class_group_get_mini_icon (VnckClassGroup *class_group);

#ifndef VNCK_DISABLE_DEPRECATED
G_DEPRECATED_FOR(vnck_class_group_get_id)<--- There is an unknown macro here somewhere. Configuration is required. If G_DEPRECATED_FOR is a macro then please configure it.
const char * vnck_class_group_get_res_class (VnckClassGroup *class_group);
#endif

G_END_DECLS

#endif /* VNCK_CLASS_GROUP_H */