~ubuntu-branches/ubuntu/oneiric/gdm3/oneiric

« back to all changes in this revision

Viewing changes to gui/simple-greeter/libnotificationarea/obox.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2010-03-25 20:02:20 UTC
  • Revision ID: james.westby@ubuntu.com-20100325200220-12cap62s6p304nuh
Tags: upstream-2.29.92
ImportĀ upstreamĀ versionĀ 2.29.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* OBox Copyright (C) 2002 Red Hat Inc. based on GtkHBox */
 
2
/* GTK - The GIMP Toolkit
 
3
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public
 
16
 * License along with this library; if not, write to the
 
17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
18
 * Boston, MA 02111-1307, USA.
 
19
 */
 
20
 
 
21
/*
 
22
 * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
 
23
 * file for a list of people on the GTK+ Team.  See the ChangeLog
 
24
 * files for a list of changes.  These files are distributed with
 
25
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
 
26
 */
 
27
 
 
28
#ifndef __NA_OBOX_H__
 
29
#define __NA_OBOX_H__
 
30
 
 
31
#include <gtk/gtk.h>
 
32
 
 
33
#ifdef __cplusplus
 
34
extern "C" {
 
35
#endif /* __cplusplus */
 
36
 
 
37
 
 
38
#define NA_TYPE_OBOX            (na_obox_get_type ())
 
39
#define NA_OBOX(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NA_TYPE_OBOX, NaOBox))
 
40
#define NA_OBOX_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NA_TYPE_OBOX, NaOBoxClass))
 
41
#define NA_IS_OBOX(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NA_TYPE_OBOX))
 
42
#define NA_IS_OBOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NA_TYPE_OBOX))
 
43
#define NA_OBOX_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NA_TYPE_OBOX, NaOBoxClass))
 
44
 
 
45
 
 
46
typedef struct _NaOBox       NaOBox;
 
47
typedef struct _NaOBoxClass  NaOBoxClass;
 
48
 
 
49
struct _NaOBox
 
50
{
 
51
  GtkBox box;
 
52
 
 
53
  GtkOrientation orientation;
 
54
};
 
55
 
 
56
struct _NaOBoxClass
 
57
{
 
58
  GtkBoxClass parent_class;
 
59
};
 
60
 
 
61
 
 
62
GType      na_obox_get_type (void) G_GNUC_CONST;
 
63
GtkWidget* na_obox_new      (void);
 
64
 
 
65
void na_obox_set_orientation (NaOBox         *obox,
 
66
                              GtkOrientation  orientation);
 
67
 
 
68
 
 
69
#ifdef __cplusplus
 
70
}
 
71
#endif /* __cplusplus */
 
72
 
 
73
#endif /* __NA_OBOX_H__ */