File: scrollbar_generic.cpp

package info (click to toggle)
clanlib 1.0~svn3827-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 24,312 kB
  • ctags: 16,513
  • sloc: cpp: 101,606; xml: 6,410; makefile: 1,747; ansic: 463; perl: 424; php: 247; sh: 53
file content (403 lines) | stat: -rw-r--r-- 10,143 bytes parent folder | download | duplicates (7)
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/*
**  ClanLib SDK
**  Copyright (c) 1997-2005 The ClanLib Team
**
**  This software is provided 'as-is', without any express or implied
**  warranty.  In no event will the authors be held liable for any damages
**  arising from the use of this software.
**
**  Permission is granted to anyone to use this software for any purpose,
**  including commercial applications, and to alter it and redistribute it
**  freely, subject to the following restrictions:
**
**  1. The origin of this software must not be misrepresented; you must not
**     claim that you wrote the original software. If you use this software
**     in a product, an acknowledgment in the product documentation would be
**     appreciated but is not required.
**  2. Altered source versions must be plainly marked as such, and must not be
**     misrepresented as being the original software.
**  3. This notice may not be removed or altered from any source distribution.
**
**  Note: Some of the libraries ClanLib may link to may have additional
**  requirements or restrictions.
**
**  File Author(s):
**
**    Magnus Norddahl
**    (if your name is missing here, please add it)
*/

#include "precomp.h"
#include "scrollbar_generic.h"
#include "API/GUI/scrollbar.h"
#include "API/GUI/component.h"
#include "API/GUI/stylemanager.h"
#include "API/GUI/button.h"
#include "API/Core/XML/dom_element.h"
#include "API/Display/keys.h"
#include "API/Core/System/error.h"
#include "API/Core/System/clanstring.h"

/////////////////////////////////////////////////////////////////////////////
// Construction:

CL_ScrollBar_Generic::CL_ScrollBar_Generic(
	CL_ScrollBar *self,
	int min,
	int max,
	int value,
	bool orientation,
	bool tracking)
:
	min_value(0),
	max_value(0),
	cur_value(0),
	tracking(tracking),
	fixed_length(false),
	dragging(false),
	scrollbar(self),
	capture_pos(0, 0),
	timer_scroll(250)
{
	vertical = !orientation;

	if(vertical)
		min_slider_length = scrollbar->get_height() / 6;
	else
		min_slider_length = scrollbar->get_width() / 6;
	if(min_slider_length < 20)
		min_slider_length = 20;

	set_min_value(min);
	set_max_value(max);
	set_value(value);

	CL_Rect rect(0, 0, scrollbar->get_width(), scrollbar->get_height());
	CL_Component *client_area = new CL_Component(rect, scrollbar);
	scrollbar->set_client_area(client_area);
	
	slots.connect(scrollbar->sig_set_options(), this, &CL_ScrollBar_Generic::on_set_options);
	slots.connect(client_area->sig_mouse_move(), this, &CL_ScrollBar_Generic::on_mouse_move);
	slots.connect(client_area->sig_mouse_down(), this, &CL_ScrollBar_Generic::on_mouse_down);
	slots.connect(client_area->sig_mouse_up(), this, &CL_ScrollBar_Generic::on_mouse_up);
	slots.connect(client_area->sig_resize(), this, &CL_ScrollBar_Generic::on_client_resize);
	slots.connect(timer_scroll.sig_timer(), this, &CL_ScrollBar_Generic::on_timer_scroll);
}

CL_ScrollBar_Generic::~CL_ScrollBar_Generic()
{
	delete scrollbar->get_client_area();
}

/////////////////////////////////////////////////////////////////////////////
// Attributes:

int CL_ScrollBar_Generic::get_range() const
{
	return max_value - min_value + 1;
}

/////////////////////////////////////////////////////////////////////////////
// Operations:

void CL_ScrollBar_Generic::set_vertical(bool enable)
{
	throw CL_Error("CL_ScrollBar_Generic::set_vertical() is not implemented");
}

void CL_ScrollBar_Generic::set_range(int new_min_value, int new_max_value)
{
	min_value = new_min_value;
	max_value = new_max_value;

	if(max_value < min_value)
		max_value = min_value;
	
	if(cur_value < min_value)
		cur_value = min_value;
	if(cur_value > max_value)
		cur_value = max_value;

	calculate_slider();
}

void CL_ScrollBar_Generic::set_min_value(int value)
{
	min_value = value;
	if(max_value < min_value)
		max_value = min_value;
	
	if(cur_value < min_value)
		cur_value = min_value;

	calculate_slider();
}

void CL_ScrollBar_Generic::set_max_value(int value)
{
	max_value = value;
	if(max_value < min_value)
		max_value = min_value;
	
	if(cur_value > max_value)
		cur_value = max_value;

	calculate_slider();
}

void CL_ScrollBar_Generic::set_value(int value, bool using_slider)
{
	if(value < min_value) value = min_value;
	if(value > max_value) value = max_value;

	if(cur_value != value)
	{
		cur_value = value;

		if(using_slider)
			sig_slider_moved(cur_value);

		if((using_slider && tracking) || using_slider == false)
			sig_value_changed(cur_value);
	}

	if(using_slider == false)
		calculate_slider();
}

/////////////////////////////////////////////////////////////////////////////
// Callbacks:

void CL_ScrollBar_Generic::on_set_options(const CL_DomElement &options)
{
	if (options.has_attribute("orientation"))
	{
		std::string s = CL_String::to_lower(options.get_attribute("orientation"));

		if(s == "hor" || s == "horz" | s == "horizontal" || s == "1")
			vertical = false;
		else if(s == "ver" || s == "vert" | s == "vertical" || s == "0")
			vertical = true;
		else
			throw CL_Error("Invalid scrollbar orientation value");
	}
	else
		vertical = true;
	
	if (options.has_attribute("min"))
		set_min_value(CL_String::to_int(options.get_attribute("min")));
	else
		set_min_value(0);

	if (options.has_attribute("max"))
		set_max_value(CL_String::to_int(options.get_attribute("max")));
	else
		set_max_value(min_value);

	if (options.has_attribute("value"))
		set_value(CL_String::to_int(options.get_attribute("value")));
	else
		set_value(min_value);

	if (options.has_attribute("tracking"))
		tracking = CL_String::to_bool(options.get_attribute("tracking"));
	else
		tracking = false;
		
	scrollbar->sig_resize()(0,0);
}

void CL_ScrollBar_Generic::on_client_resize(int old_width, int old_height)
{
	calculate_slider();
}

void CL_ScrollBar_Generic::on_mouse_down(const CL_InputEvent &key)
{
	if(key.id == CL_MOUSE_WHEEL_UP)
	{
		set_value(cur_value - 5);
		return;
	}
	if(key.id == CL_MOUSE_WHEEL_DOWN)
	{
		set_value(cur_value + 5);
		return;
	}
	if(key.id == CL_MOUSE_LEFT)
	{
		if(dragging == false)
		{
			if(key.mouse_pos.x > rect_slider.left && 
				key.mouse_pos.y > rect_slider.top && 
				key.mouse_pos.x < rect_slider.right && 
				key.mouse_pos.y < rect_slider.bottom)
			{
				dragging = true;
				scrollbar->get_client_area()->capture_mouse();

				capture_pos = key.mouse_pos;
				capture_slider = rect_slider;

				sig_slider_pressed();
			}
			else
			{
				int scrollbar_length;
				int slider_length;

				scroll_delta = 1;

				if(vertical)
				{
					scrollbar_length = scrollbar->get_client_area()->get_height();
					slider_length = rect_slider.get_height();

					if(key.mouse_pos.y < rect_slider.top)
						scroll_delta = -1;
				}
				else
				{
					scrollbar_length = scrollbar->get_client_area()->get_width();
					slider_length = rect_slider.get_width();

					if(key.mouse_pos.x < rect_slider.left)
						scroll_delta = -1;
				}

				float percent = slider_length / (float)(scrollbar_length - slider_length);
				scroll_delta *= (int)( get_range() * percent);

				on_timer_scroll();
				timer_scroll.enable();
				scrollbar->get_client_area()->capture_mouse();
			}
		}
	}
}

void CL_ScrollBar_Generic::on_mouse_up(const CL_InputEvent &key)
{
	if(key.id == CL_MOUSE_LEFT)
	{
		if(dragging)
		{
			scrollbar->get_client_area()->release_mouse();
			dragging = false;

			set_value(cur_value);

			if(tracking == false)
				sig_value_changed(cur_value);
			sig_slider_released();
		}
		else if(timer_scroll.is_enabled())
		{
			timer_scroll.disable();
			scrollbar->get_client_area()->release_mouse();
		}
	}
}

void CL_ScrollBar_Generic::on_mouse_move(const CL_InputEvent &key)
{
	if(dragging == false)
		return;

	CL_Point delta = key.mouse_pos - capture_pos;

	if(vertical)
	{
		int scrollbar_length = scrollbar->get_client_area()->get_height();
		int slider_length = rect_slider.get_height();

		rect_slider = capture_slider;
		rect_slider.top += delta.y;

		if(rect_slider.top < 0)
			rect_slider.top = 0;
		else if(rect_slider.top + slider_length > scrollbar_length)
			rect_slider.top = scrollbar_length - slider_length;

		rect_slider.bottom = rect_slider.top + slider_length;

		float percent = (float)rect_slider.top / (scrollbar_length - slider_length);
		float value = min_value + (get_range() * percent);
		set_value((int)value, true);
	} 
	else
	{
		int scrollbar_length = scrollbar->get_client_area()->get_width();
		int slider_length = rect_slider.get_width();

		rect_slider = capture_slider;
		rect_slider.left += delta.x;

		if(rect_slider.left < 0)
			rect_slider.left = 0;
		else if(rect_slider.left + slider_length > scrollbar_length)
			rect_slider.left = scrollbar_length - slider_length;

		rect_slider.right = rect_slider.left + slider_length;

		float percent = (float)rect_slider.left / (scrollbar_length - slider_length);
		float value = min_value + (get_range() * percent);
		set_value((int)value, true);
	}
}

void CL_ScrollBar_Generic::on_timer_scroll()
{
	set_value(cur_value + scroll_delta);
}

/////////////////////////////////////////////////////////////////////////////
// Implementation:

void CL_ScrollBar_Generic::calculate_slider()
{
	int slider_offset;
	int slider_length;

	if(fixed_length)
	{
		throw CL_Error("fixed-length sliders not implemented");
	}
	else {
		int scrollbar_length;
		if(vertical)
			scrollbar_length = scrollbar->get_client_area()->get_height();
		else
			scrollbar_length = scrollbar->get_client_area()->get_width();
		
		int range = get_range();

		slider_length = scrollbar_length / range;
		if(slider_length < min_slider_length)
			slider_length = min_slider_length;

		float y = 0.0f;
		if(range > 1)
		{
			int available_area = scrollbar_length - slider_length;
			y = (float)available_area / (range - 1);
		}

		slider_offset = (int) (y * (cur_value - min_value));
	}

	if(vertical)
	{
		rect_slider.top = slider_offset;
		rect_slider.bottom = slider_offset + slider_length;
		rect_slider.left = 0;
		rect_slider.right = scrollbar->get_client_area()->get_width();
	}
	else
	{
		rect_slider.left = slider_offset;
		rect_slider.right = slider_offset + slider_length;
		rect_slider.top = 0;
		rect_slider.bottom = scrollbar->get_client_area()->get_height();
	}
}