support for glade and new new session dialog
[ardour.git] / gtk2_ardour / gtk-custom-ruler.h
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 /* modified by andreas meyer <hexx3000@gmx.de> */
28
29 #ifndef __GTK_CUSTOM_RULER_H__
30 #define __GTK_CUSTOM_RULER_H__
31
32 #include <gdk/gdk.h>
33 #include <gtk/gtkwidget.h>
34
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif /* __cplusplus */
39
40 #define GTK_TYPE_CUSTOM_RULER            (gtk_custom_ruler_get_type ())
41 #define GTK_CUSTOM_RULER(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_CUSTOM_RULER, GtkCustomRuler))
42 #define GTK_CUSTOM_RULER_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_CUSTOM_RULER, GtkCustomRulerClass))
43 #define GTK_IS_CUSTOM_RULER(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_CUSTOM_RULER))
44 #define GTK_IS_CUSTOM_RULER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CUSTOM_RULER))
45
46 typedef struct _GtkCustomRuler          GtkCustomRuler;
47 typedef struct _GtkCustomRulerClass     GtkCustomRulerClass;
48 typedef struct _GtkCustomMetric         GtkCustomMetric;
49 typedef struct _GtkCustomRulerMark      GtkCustomRulerMark;
50
51 struct _GtkCustomRuler {
52   GtkWidget widget;
53
54   GdkPixmap *backing_store;
55   GdkGC *non_gr_exp_gc;
56   GtkCustomMetric *metric;
57   gint xsrc, ysrc;
58   gint slider_size;
59   gboolean show_position;
60     
61   /* The upper limit of the ruler (in points) */
62   gulong lower;
63   /* The lower limit of the ruler */
64   gulong upper;
65   /* The position of the mark on the ruler */
66   gulong position;
67   /* The maximum size of the ruler */
68   gulong max_size;
69 };
70
71 struct _GtkCustomRulerClass {
72   GtkWidgetClass parent_class;
73
74   void (* draw_ticks) (GtkCustomRuler *ruler);
75   void (* draw_pos)   (GtkCustomRuler *ruler);
76 };
77
78 typedef enum {
79    GtkCustomRulerMarkMajor,
80    GtkCustomRulerMarkMinor,
81    GtkCustomRulerMarkMicro
82 } GtkCustomRulerMarkStyle;
83
84 struct _GtkCustomRulerMark {
85   gchar                  *label;
86   gulong                  position;
87   GtkCustomRulerMarkStyle style;
88 };
89
90 struct _GtkCustomMetric {
91   gfloat units_per_pixel;
92   gint (* get_marks) (GtkCustomRulerMark **marks, gulong lower, gulong upper, gint maxchars);
93 };
94
95 GtkType gtk_custom_ruler_get_type            (void);
96 void    gtk_custom_ruler_set_metric          (GtkCustomRuler *ruler, GtkCustomMetric *metric);
97 void    gtk_custom_ruler_set_range           (GtkCustomRuler *ruler,
98                                                  gulong lower,
99                                                  gulong upper,
100                                                  gulong position,
101                                                  gulong max_size);
102 void    gtk_custom_ruler_draw_ticks          (GtkCustomRuler *ruler);
103 void    gtk_custom_ruler_draw_pos            (GtkCustomRuler *ruler);
104 void    gtk_custom_ruler_set_show_position   (GtkCustomRuler *rule, gboolean yn);
105
106 #ifdef __cplusplus
107 }
108 #endif /* __cplusplus */
109
110
111 #endif /* __GTK_CUSTOM_RULER_H__ */