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
|
# vim: set et ts=4 sw=4:
package ManaTools::Category;
#============================================================= -*-perl-*-
=head1 NAME
ManaTools::Category - add new category to window
=head1 SYNOPSIS
my $category = new ManaTools::Category({name => 'Category Name'});
=head1 DESCRIPTION
This class is used by MainDisplay internally and should not
be used outside, since MainDisplay::setupGui use it to
build GUI layout.
=head1 EXPORT
exported
=head1 SUPPORT
You can find documentation for this module with the perldoc command:
perldoc ManaTools::Category
=head1 SEE ALSO
ManaTools::MainDisplay
=head1 AUTHOR
Angelo Naselli <anaselli@linux.it>
=head1 COPYRIGHT and LICENSE
Copyright 2013-2015, Angelo Naselli.
Copyright 2012, Steven Tucker.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2, as
published by the Free Software Foundation.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
=head1 METHODS
=cut
use Moose;
use diagnostics;
use yui;
has 'name' => (
is => 'ro',
isa => 'Str',
);
has 'icon' => (
is => 'ro',
isa => 'Str',
);
has 'button' => (
is => 'rw',
isa => 'Maybe[yui::YPushButton]',
init_arg => undef,
);
has 'modules' => (
is => 'rw',
isa => 'ArrayRef[ManaTools::Module]',
init_arg => undef,
default => sub {[];},
);
## Can only add the config file data at constructor
## The Gui elements are added in setupGui inside MainDisplay
#=============================================================
=head2 new
=head3 INPUT
hash ref containing
name: new category name
icon: new category icon
=head3 DESCRIPTION
Constructor: creates a new category named Name
=cut
#=============================================================
## Add a new module to the list
#=============================================================
=head2 loadModule
=head3 INPUT
$self: this object
$module: module to add
=head3 OUTPUT
1: if the module has been added
0: otherwise
=head3 DESCRIPTION
This method adds a module to the loaded
modules if it is not already in.
=cut
#=============================================================
sub loadModule {
my ($self, $module) = @_;
if (!$self->moduleLoaded($module->{name})) {
push ( @{$self->modules()}, $module );
return 1;
}
return 0;
}
#=============================================================
=head2 moduleLoaded
=head3 INPUT
$self: this object
$module_name or -CLASS => name : module/CLASS name to look for
=head3 OUTPUT
$present: module present or not
=head3 DESCRIPTION
This method looks for the given module and if already in
returns true.
=cut
#=============================================================
sub moduleLoaded {
my $self = shift;
my ($module_name) = @_;
my %params = ();
if ($module_name eq '-CLASS') {
(%params) = @_;
}
my $present = 0;
if (!$module_name || (scalar @{$self->modules()} == 0) ) {
return $present;
}
foreach my $mod (@{$self->modules()}) {
if (exists $params{-CLASS} && ref($mod) eq $params{-CLASS}) {
$present = 1;
last;
}
elsif ($mod->name() eq $module_name) {
$present = 1;
last;
}
}
return $present;
}
#=============================================================
=head2 addButtons
=head3 INPUT
$self: this object
$panel: parent panel layout in which to create buttons
$factory: yui factory
=head3 DESCRIPTION
Creates and adds buttons for each module_name
=cut
#=============================================================
sub addButtons {
my($self, $panel, $factory) = @_;
my $tmpButton;
my $currLayout = 0;
my %weights = ();
my $curr;
my $count = 0;
foreach my $mod (@{$self->modules()}) {
if(($count % 2) != 1) {
$factory->createVSpacing($panel, 0.5);
$currLayout = $factory->createHBox($panel);
$factory->createHSpacing($currLayout, 1);
$currLayout->setWeight($yui::YD_VERT, 10);
}
$tmpButton = $factory->createPushButton(
$currLayout,
$mod->name
);
$count++;
if (($count < scalar @{$self->modules()}) || (($count >= scalar @{$self->modules()}) && ($count % 2) == 0)) {
$tmpButton->setWeight($yui::YD_HORIZ, 20);
}
$factory->createHSpacing($currLayout, 1);
$mod->setButton($tmpButton);
$tmpButton->setLabel($mod->name);
$tmpButton->setIcon($mod->icon);
}
}
#=============================================================
=head2 removeButtons
=head3 INPUT
$self: this object
=head3 DESCRIPTION
Delete the module buttons
=cut
#=============================================================
sub removeButtons {
my($self) = @_;
for(@{$self->modules()}) {
$_->removeButton();
}
}
#=============================================================
=head2 setIcon
=head3 INPUT
$self: this object
=head3 DESCRIPTION
set the button icon
=cut
#=============================================================
sub setIcon {
my($self) = @_;
$self->button()->setIcon($self->icon());
}
no Moose;
1;
|