source: proiecte/PPPP/gdm/gui/simple-greeter/libnotificationarea/obox.h @ 134

Last change on this file since 134 was 134, checked in by (none), 14 years ago

gdm sources with the modifications for webcam

File size: 2.2 KB
Line 
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
34extern "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
46typedef struct _NaOBox       NaOBox;
47typedef struct _NaOBoxClass  NaOBoxClass;
48
49struct _NaOBox
50{
51  GtkBox box;
52
53  GtkOrientation orientation;
54};
55
56struct _NaOBoxClass
57{
58  GtkBoxClass parent_class;
59};
60
61
62GType      na_obox_get_type (void) G_GNUC_CONST;
63GtkWidget* na_obox_new      (void);
64
65void na_obox_set_orientation (NaOBox         *obox,
66                              GtkOrientation  orientation);
67
68
69#ifdef __cplusplus
70}
71#endif /* __cplusplus */
72
73#endif /* __NA_OBOX_H__ */
Note: See TracBrowser for help on using the repository browser.