File: gtk-custom-hruler.c

package info (click to toggle)
ardour 1%3A2.8.14-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 14,744 kB
  • sloc: cpp: 164,537; ansic: 15,983; sh: 1,185; asm: 740; python: 696; makefile: 133; xml: 8
file content (270 lines) | stat: -rw-r--r-- 7,797 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/* GTK - The GIMP Toolkit
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

/*
 * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
 * file for a list of people on the GTK+ Team.  See the ChangeLog
 * files for a list of changes.  These files are distributed with
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
 */

/* modified by andreas meyer <hexx3000@gmx.de> */
/* subsequently specialized for audio time displays by paul davis <paul@linuxaudiosystems.com> */

#include <math.h>
#include <stdio.h>
#include <string.h>
#include "gtk-custom-hruler.h"

#define RULER_HEIGHT          14
#define MINIMUM_INCR          5
#define MAXIMUM_SUBDIVIDE     5

#define ROUND(x) ((int) ((x) + 0.5))

static void gtk_custom_hruler_class_init (GtkCustomHRulerClass * klass);
static void gtk_custom_hruler_init (GtkCustomHRuler * custom_hruler);
static gint gtk_custom_hruler_motion_notify (GtkWidget * widget, GdkEventMotion * event);
static void gtk_custom_hruler_draw_ticks (GtkCustomRuler * ruler);
static void gtk_custom_hruler_draw_pos (GtkCustomRuler * ruler);

GType gtk_custom_hruler_get_type (void)
{
	static GType hruler_type = 0;
	
	if (!hruler_type)
	{
		static const GTypeInfo hruler_info =
			{
				sizeof (GtkCustomHRulerClass),
				NULL,		/* base_init */
				NULL,		/* base_finalize */
				(GClassInitFunc) gtk_custom_hruler_class_init,
				NULL,		/* class_finalize */
				NULL,		/* class_data */
				sizeof (GtkCustomHRuler),
				0,		/* n_preallocs */
				(GInstanceInitFunc) gtk_custom_hruler_init,
			};
		
		hruler_type = g_type_register_static (gtk_custom_ruler_get_type(), "GtkCustomHRuler",
						      &hruler_info, 0);
	}
	
	return hruler_type;
}

static void
gtk_custom_hruler_class_init (GtkCustomHRulerClass * klass)
{
	GtkWidgetClass *widget_class;
	GtkCustomRulerClass *ruler_class;

	widget_class = (GtkWidgetClass *) klass;
	ruler_class = (GtkCustomRulerClass *) klass;

	widget_class->motion_notify_event = gtk_custom_hruler_motion_notify;

	ruler_class->draw_ticks = gtk_custom_hruler_draw_ticks;
	ruler_class->draw_pos = gtk_custom_hruler_draw_pos;
}

static void
gtk_custom_hruler_init (GtkCustomHRuler * custom_hruler)
{
	GtkWidget *widget;

	widget = GTK_WIDGET (custom_hruler);
	widget->requisition.width = widget->style->xthickness * 2 + 1;
	widget->requisition.height = widget->style->ythickness * 2 + RULER_HEIGHT;
}


GtkWidget *
gtk_custom_hruler_new (void)
{
	return GTK_WIDGET (gtk_type_new (gtk_custom_hruler_get_type ()));
}

static gint
gtk_custom_hruler_motion_notify (GtkWidget * widget, GdkEventMotion * event)
{
	GtkCustomRuler *ruler;
	gint x;

	g_return_val_if_fail (widget != NULL, FALSE);
	g_return_val_if_fail (GTK_IS_CUSTOM_HRULER (widget), FALSE);
	g_return_val_if_fail (event != NULL, FALSE);

	ruler = GTK_CUSTOM_RULER (widget);

	if (event->is_hint)
		gdk_window_get_pointer (widget->window, &x, NULL, NULL);
	else
		x = event->x;

	ruler->position = ruler->lower + ((ruler->upper - ruler->lower) * x) / widget->allocation.width;

	/*  Make sure the ruler has been allocated already  */
	if (ruler->backing_store != NULL)
		gtk_custom_ruler_draw_pos (ruler);

	return FALSE;
}

static void
gtk_custom_hruler_draw_ticks (GtkCustomRuler * ruler)
{
	GtkWidget *widget;
	GdkGC *gc, *bg_gc;
	gint i;
	GtkCustomRulerMark *marks;
	gint xthickness;
	gint ythickness;
	gint nmarks;
	gint max_chars;
	gint digit_offset;
	PangoLayout *layout;
	PangoRectangle logical_rect, ink_rect;

	g_return_if_fail (ruler != NULL);
	g_return_if_fail (GTK_IS_CUSTOM_HRULER (ruler));

	if (!GTK_WIDGET_DRAWABLE (ruler))
		return;

	widget = GTK_WIDGET (ruler);

	gc = widget->style->fg_gc[GTK_STATE_NORMAL];
	bg_gc = widget->style->bg_gc[GTK_STATE_NORMAL];
	
	layout = gtk_widget_create_pango_layout (widget, "012456789");
	pango_layout_get_extents (layout, &ink_rect, &logical_rect);

	digit_offset = ink_rect.y;

	xthickness = widget->style->xthickness;
	ythickness = widget->style->ythickness;

	gtk_paint_box (widget->style, ruler->backing_store,
		       GTK_STATE_NORMAL, GTK_SHADOW_NONE,
		       NULL, widget, "custom_hruler", 0, 0, widget->allocation.width, widget->allocation.height);

	gdk_draw_line (ruler->backing_store, gc, 0, widget->allocation.height - 1, 
		       widget->allocation.width, widget->allocation.height - 1);

	if ((ruler->upper - ruler->lower) == 0) {
		return;
	}
	
	/* we have to assume a fixed width font here */

	max_chars = widget->allocation.width / 12; // XXX FIX ME: pixel with of the char `8'

	nmarks = ruler->metric->get_marks (&marks, ruler->lower, ruler->upper, max_chars);

	for (i = 0; i < nmarks; i++) {
		gint pos;
		gint height;

		pos = ROUND ((marks[i].position - ruler->lower) / ruler->metric->units_per_pixel);
		height = widget->allocation.height;

		switch (marks[i].style) {
		case GtkCustomRulerMarkMajor:
			gdk_draw_line (ruler->backing_store, gc, pos, height, pos, 0);
			break;
		case GtkCustomRulerMarkMinor:
			gdk_draw_line (ruler->backing_store, gc, pos, height, pos, height - (height/2));
			break;
		case GtkCustomRulerMarkMicro:
			gdk_draw_line (ruler->backing_store, gc, pos, height, pos, height - 3);
			break;
		}
		
		pango_layout_set_text (layout, marks[i].label, -1);
		pango_layout_get_extents (layout, &logical_rect, NULL);
		
		gtk_paint_layout (widget->style,
				  ruler->backing_store,
				  GTK_WIDGET_STATE (widget),
				  FALSE,
				  NULL,
				  widget,
				  "hruler",
				  pos + 2, ythickness + PANGO_PIXELS (logical_rect.y - digit_offset),
				  layout);
		
		g_free (marks[i].label);
	}
	
	if (nmarks) {
		g_free (marks);
	}
	
	g_object_unref (layout);
}

static void
gtk_custom_hruler_draw_pos (GtkCustomRuler * ruler)
{
	GtkWidget *widget;
	GdkGC *gc;
	int i;
	gint x, y;
	gint width, height;
	gint bs_width, bs_height;
	gint xthickness;
	gint ythickness;
	gfloat increment;

	g_return_if_fail (ruler != NULL);
	g_return_if_fail (GTK_IS_CUSTOM_HRULER (ruler));
	if (GTK_WIDGET_DRAWABLE (ruler) && (ruler->upper - ruler->lower) > 0) {
		widget = GTK_WIDGET (ruler);
		gc = widget->style->fg_gc[GTK_STATE_NORMAL];
		xthickness = widget->style->xthickness;
		ythickness = widget->style->ythickness;
		width = widget->allocation.width;
		height = widget->allocation.height - ythickness * 2;

		bs_width = height / 2;
		bs_width |= 1;			/* make sure it's odd */
		bs_height = bs_width / 2 + 1;

		if ((bs_width > 0) && (bs_height > 0)) {
			/*  If a backing store exists, restore the ruler  */
			if (ruler->backing_store && ruler->non_gr_exp_gc)
				gdk_draw_pixmap (ruler->widget.window,
						 ruler->non_gr_exp_gc,
						 ruler->backing_store, ruler->xsrc, ruler->ysrc, ruler->xsrc, ruler->ysrc, bs_width, bs_height);
			
			increment = (gfloat) width / (ruler->upper - ruler->lower);
			x = ROUND ((ruler->position - ruler->lower) * increment) + (xthickness - bs_width) / 2 - 1;
			y = (height + bs_height) / 2 + ythickness;

			for (i = 0; i < bs_height; i++)
				gdk_draw_line (widget->window, gc, x + i, y + i, x + bs_width - 1 - i, y + i);


			ruler->xsrc = x;
			ruler->ysrc = y;
		}
	}
}