~ubuntu-branches/ubuntu/utopic/glame/utopic

« back to all changes in this revision

Viewing changes to src/gui/util/glame_hruler.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-09 17:14:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020409171412-jzpnov7mbz2w6zsr
Tags: upstream-0.6.2
ImportĀ upstreamĀ versionĀ 0.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GTK - The GIMP Toolkit
 
2
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
/*
 
21
 * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
 
22
 * file for a list of people on the GTK+ Team.  See the ChangeLog
 
23
 * files for a list of changes.  These files are distributed with
 
24
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
 
25
 */
 
26
 
 
27
#ifndef __GLAME_HRULER_H__
 
28
#define __GLAME_HRULER_H__
 
29
 
 
30
 
 
31
#include <gdk/gdk.h>
 
32
#include "glame_ruler.h"
 
33
 
 
34
 
 
35
#ifdef __cplusplus
 
36
extern "C" {
 
37
#endif /* __cplusplus */
 
38
 
 
39
 
 
40
typedef struct _GlameHRuler       GlameHRuler;
 
41
typedef struct _GlameHRulerClass  GlameHRulerClass;
 
42
 
 
43
#define GLAME_TYPE_HRULER           (glame_hruler_get_type ())
 
44
#define GLAME_HRULER(obj)            (GTK_CHECK_CAST ((obj), GLAME_TYPE_HRULER, GlameHRuler))
 
45
#define GLAME_HRULER_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GLAME_TYPE_HRULER, GlameHRulerClass))
 
46
#define GLAME_IS_HRULER(obj)         (GTK_CHECK_TYPE ((obj), GLAME_TYPE_HRULER))
 
47
#define GLAME_IS_HRULER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GLAME_TYPE_HRULER))
 
48
#define GLAME_HRULER_GET_CLASS(obj)  ((GlameHRulerClass *)(((GtkObject *)(obj))->klass))
 
49
 
 
50
 
 
51
struct _GlameHRuler
 
52
{
 
53
  GlameRuler ruler; 
 
54
};
 
55
 
 
56
struct _GlameHRulerClass
 
57
{
 
58
  GlameRulerClass parent_class;
 
59
};
 
60
 
 
61
 
 
62
GtkType    glame_hruler_get_type (void);
 
63
GtkWidget* glame_hruler_new      (void);
 
64
 
 
65
 
 
66
#ifdef __cplusplus
 
67
}
 
68
#endif /* __cplusplus */
 
69
 
 
70
 
 
71
#endif /* __GLAME_HRULER_H__ */