~ubuntu-branches/ubuntu/precise/gnome-control-center/precise-updates

« back to all changes in this revision

Viewing changes to typing-break/drw-break-window.h

Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
 
/*
3
 
 * Copyright (C) 2002 CodeFactory AB
4
 
 * Copyright (C) 2002 Richard Hult <richard@imendio.com>
5
 
 *
6
 
 * This program is free software; you can redistribute it and/or
7
 
 * modify it under the terms of the GNU General Public License as
8
 
 * published by the Free Software Foundation; either version 2 of the
9
 
 * License, or (at your option) any later version.
10
 
 *
11
 
 * This program is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
 * General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public
17
 
 * License along with this program; if not, write to the
18
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19
 
 * Boston, MA 02111-1307, USA.
20
 
 */
21
 
 
22
 
#ifndef __DRW_BREAK_WINDOW_H__
23
 
#define __DRW_BREAK_WINDOW_H__
24
 
 
25
 
#include <gtk/gtk.h>
26
 
 
27
 
G_BEGIN_DECLS
28
 
 
29
 
#define DRW_TYPE_BREAK_WINDOW         (drw_break_window_get_type ())
30
 
#define DRW_BREAK_WINDOW(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), DRW_TYPE_BREAK_WINDOW, DrwBreakWindow))
31
 
#define DRW_BREAK_WINDOW_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), DRW_TYPE_BREAK_WINDOW, DrwBreakWindowClass))
32
 
#define DRW_IS_BREAK_WINDOW(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), DRW_TYPE_BREAK_WINDOW))
33
 
#define DRW_IS_BREAK_WINDOW_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), DRW_TYPE_BREAK_WINDOW))
34
 
#define DRW_BREAK_WINDOW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), DRW_TYPE_BREAK_WINDOW, DrwBreakWindowClass))
35
 
 
36
 
typedef struct _DrwBreakWindow         DrwBreakWindow;
37
 
typedef struct _DrwBreakWindowClass    DrwBreakWindowClass;
38
 
typedef struct _DrwBreakWindowPrivate  DrwBreakWindowPrivate;
39
 
 
40
 
struct _DrwBreakWindow {
41
 
        GtkWindow              parent;
42
 
 
43
 
        DrwBreakWindowPrivate *priv;
44
 
};
45
 
 
46
 
struct _DrwBreakWindowClass {
47
 
        GtkWindowClass parent_class;
48
 
};
49
 
 
50
 
GType       drw_break_window_get_type (void) G_GNUC_CONST;
51
 
GtkWidget * drw_break_window_new      (void);
52
 
 
53
 
G_END_DECLS
54
 
 
55
 
#endif /* __DRW_BREAK_WINDOW_H__ */