aboutsummaryrefslogtreecommitdiff
path: root/Src/resources/skins/Big Bento/scripts/visbuttons.m
blob: f322d400ced0fc962512822d8a934e2564c16e5f (plain) (blame)
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
/*---------------------------------------------------
-----------------------------------------------------
Filename:	visbuttons.m
Version:	1.0
Type:		maki
Date:		16. Aug. 2007 - 23:54 
Author:		Martin Poehlmann aka Deimos
E-Mail:		martin@skinconsortium.com
Internet:	www.skinconsortium.com
		www.martin.deimos.de.vu
-----------------------------------------------------
---------------------------------------------------*/

#include <lib/std.mi>
#include attribs/init_appearance.m

Function updateObjectPosition(int w);

Global Group scriptGroup;
Global Button cfg, prv, nxt, rnd, rnda;
Global Boolean isBig;

System.onScriptLoaded ()
{
	initAttribs_Appearance();

	scriptGroup = getScriptGroup();

	cfg = scriptGroup.findObject("vis.cfg");
	prv = scriptGroup.findObject("vis.prv");
	nxt = scriptGroup.findObject("vis.nxt");
	rnd = scriptGroup.findObject("vis.rnd");
	rnda = scriptGroup.findObject("vis.rnd.active");

	isBig = (prv.getGuiX() == 31);
}

scriptGroup.onResize (int x, int y, int w, int h)
{
	updateObjectPosition(w);
}

/*

artist_info_buttons_attrib.onDataChanged ()
{
	updateObjectPosition(scriptGroup.getWidth());
}

updateObjectPosition (int w)
{
	if (isBig)
	{
		if (artist_info_buttons_attrib.getData() != "1")
		{
			w += 62;
		}

		if (w >= 248)
		{
			cfg.show();
			prv.show();
			rnd.show();
			rnda.show();
			nxt.show();
		}
		else if (w >= 217)
		{
			cfg.show();
			prv.show();
			rnd.show();
			rnda.show();
			nxt.hide();
		}
		else if (w >= 186)
		{
			cfg.show();
			prv.show();
			rnd.hide();
			rnda.hide();
			nxt.hide();
		}
		else if (w >= 155)
		{
			cfg.show();
			prv.hide();
			rnd.hide();
			rnda.hide();
			nxt.hide();
		}
		else
		{
			cfg.hide();
			prv.hide();
			rnd.hide();
			rnda.hide();
			nxt.hide();
		}
		return;
	}

	if (artist_info_buttons_attrib.getData() != "1")
	{
		w += 46;
	}

	if (w >= 192)
	{
		cfg.show();
		prv.show();
		rnd.show();
		rnda.show();
		nxt.show();
	}
	else if (w >= 168)
	{
		cfg.show();
		prv.show();
		rnd.show();
		rnda.show();
		nxt.hide();
	}
	else if (w >= 144)
	{
		cfg.show();
		prv.show();
		rnd.hide();
		rnda.hide();
		nxt.hide();
	}
	else if (w >= 120)
	{
		cfg.show();
		prv.hide();
		rnd.hide();
		rnda.hide();
		nxt.hide();
	}
	else
	{
		cfg.hide();
		prv.hide();
		rnd.hide();
		rnda.hide();
		nxt.hide();
	}

}*/