File: menubar_generic.cpp

package info (click to toggle)
clanlib 0.5.4-1-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,320 kB
  • ctags: 10,893
  • sloc: cpp: 76,056; xml: 3,281; sh: 2,961; perl: 1,204; asm: 837; makefile: 775
file content (77 lines) | stat: -rw-r--r-- 2,084 bytes parent folder | download
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
/*
	$Id: menubar_generic.cpp,v 1.8 2001/12/16 19:18:08 mbn Exp $
	
	ClanGUI, copyrights by various people. Have a look in the CREDITS file.
	
	This sourcecode is distributed using the Library GNU Public Licence,
	version 2 or (at your option) any later version. Please read LICENSE
	for details.
*/

#include "precomp.h"
#include "menubar_generic.h"
#include "API/GUI/component_options.h"
#include "API/GUI/gui_manager.h"

CL_ComponentOptions CL_MenuBar_Generic::create_options(
	const CL_Rect &pos)
{
	CL_ComponentOptions options;

	options.add_option("x", pos.x1);
	options.add_option("y", pos.y1);
	options.add_option("width", pos.get_width());
	options.add_option("height", pos.get_height());

	return options;
}

CL_MenuBar_Generic::CL_MenuBar_Generic(CL_MenuBar *self, const CL_ComponentOptions &options, CL_StyleManager *style)
:
	menubar(self)
{
	slot_child_add = menubar->sig_child_before_add().connect(
		this, &CL_MenuBar_Generic::on_child_add);
}

CL_MenuBar_Generic::~CL_MenuBar_Generic()
{
}

void CL_MenuBar_Generic::on_child_add(CL_Component *child)
{
	CL_Rect children_rect = menubar->get_children_rect();

	// Move first child left abit
	if(children_rect.x2 == 0)
		children_rect.x2 = 2;

	// Move and resize child to fit into menubar
	CL_Rect rect(children_rect.x2 + 1, 2, children_rect.x2 + child->get_width(), menubar->get_height() - 2);
	child->set_position(rect);

	// Hook into clicking on the child
	if(child->is_enabled())
	{
		CL_Slot *slot = new CL_Slot(child->sig_mouse_up().connect(
			this, &CL_MenuBar_Generic::on_child_click, child));
		slots_child_click.push_back(slot);
	}
}

void CL_MenuBar_Generic::on_child_click(const CL_Key &key, CL_Component *component)
{
	const std::list<CL_Component *> children = component->get_children();
	if(children.size())
	{
		CL_Component *submenu = *(children.begin());
		component->remove_child(submenu);
		menubar->get_gui_manager()->add_child(submenu);

		CL_Rect pos = menubar->get_screen_rect();
		submenu->set_position(pos.x1, pos.y1 + menubar->get_height());
		submenu->set_focus();
		submenu->show();
	}
}