ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/UI.pm (file contents):
Revision 1.66 by root, Tue Apr 11 14:36:02 2006 UTC vs.
Revision 1.76 by root, Tue Apr 11 21:24:09 2006 UTC

1package CFClient::Widget; 1package CFClient::UI;
2 2
3use strict; 3use strict;
4 4
5use Scalar::Util; 5use Scalar::Util ();
6 6use List::Util ();
7use SDL::OpenGL;
8use SDL::OpenGL::Constants;
9 7
10use CFClient; 8use CFClient;
11 9
12our ($FOCUS, $HOVER, $GRAB); # various widgets 10our ($FOCUS, $HOVER, $GRAB); # various widgets
13 11
70 } 68 }
71 69
72 $HOVER->mouse_motion ($ev, $HOVER->translate ($x, $y)) if $HOVER; 70 $HOVER->mouse_motion ($ev, $HOVER->translate ($x, $y)) if $HOVER;
73} 71}
74 72
73#############################################################################
74
75package CFClient::UI::Base;
76
77use strict;
78
79use SDL::OpenGL;
80
75sub new { 81sub new {
76 my $class = shift; 82 my $class = shift;
77 83
78 bless { 84 bless {
79 x => 0, 85 x => 0,
80 y => 0, 86 y => 0,
81 z => 0, 87 z => 0,
88 w => -1,
89 h => -1,
82 @_ 90 @_
83 }, $class 91 }, $class
84} 92}
85 93
86sub move { 94sub move {
97sub size_request { 105sub size_request {
98 require Carp; 106 require Carp;
99 Carp::confess "size_request is abtract"; 107 Carp::confess "size_request is abtract";
100} 108}
101 109
102sub size_allocate { 110sub _size_allocate {
103 my ($self, $w, $h) = @_; 111 my ($self, $x, $y, $w, $h) = @_;
112
113 $self->{x} = $x;
114 $self->{y} = $y;
115
116 return unless $self->{w} != $w || $self->{h} != $h;
104 117
105 $self->{w} = $w; 118 $self->{w} = $w;
106 $self->{h} = $h; 119 $self->{h} = $h;
120
121 1
122}
123
124sub size_allocate {
125 my ($self, $x, $y, $w, $h) = @_;
126
127 $self->_size_allocate ($x, $y, $w, $h);
107} 128}
108 129
109# translate global koordinates to local coordinate system 130# translate global koordinates to local coordinate system
110sub translate { 131sub translate {
111 my ($self, $x, $y) = @_; 132 my ($self, $x, $y) = @_;
114} 135}
115 136
116sub focus_in { 137sub focus_in {
117 my ($self) = @_; 138 my ($self) = @_;
118 139
140 return if $FOCUS == $self;
141
119 my $focus = $FOCUS; $FOCUS = $self; 142 my $focus = $FOCUS; $FOCUS = $self;
120 $focus->update if $focus; 143 $focus->update if $focus;
121 $FOCUS->update; 144 $FOCUS->update;
122} 145}
123 146
130 $focus->update if $focus; #? 153 $focus->update if $focus; #?
131} 154}
132 155
133sub mouse_motion { } 156sub mouse_motion { }
134sub button_up { } 157sub button_up { }
135sub button_down { }
136sub key_down { } 158sub key_down { }
137sub key_up { } 159sub key_up { }
160
161sub button_down {
162 my ($self, $ev, $x, $y) = @_;
163
164 $self->focus_in;
165}
138 166
139sub w { $_[0]{w} = $_[1] if @_ > 1; $_[0]{w} } 167sub w { $_[0]{w} = $_[1] if @_ > 1; $_[0]{w} }
140sub h { $_[0]{h} = $_[1] if @_ > 1; $_[0]{h} } 168sub h { $_[0]{h} = $_[1] if @_ > 1; $_[0]{h} }
141sub x { $_[0]{x} = $_[1] if @_ > 1; $_[0]{x} } 169sub x { $_[0]{x} = $_[1] if @_ > 1; $_[0]{x} }
142sub y { $_[0]{y} = $_[1] if @_ > 1; $_[0]{y} } 170sub y { $_[0]{y} = $_[1] if @_ > 1; $_[0]{y} }
143sub z { $_[0]{z} = $_[1] if @_ > 1; $_[0]{z} } 171sub z { $_[0]{z} = $_[1] if @_ > 1; $_[0]{z} }
144 172
145sub draw { 173sub draw {
146 my ($self) = @_; 174 my ($self) = @_;
147 175
176 return unless $self->{h} && $self->{w};
177
148 glPushMatrix; 178 glPushMatrix;
149 glTranslate $self->{x}, $self->{y}, 0; 179 glTranslate $self->{x}, $self->{y}, 0;
150 $self->_draw; 180 $self->_draw;
181 glPopMatrix;
182
151 if ($self == $HOVER) { 183 if ($self == $HOVER) {
152 glColor 1, 1, 1, 0.4; 184 my ($x, $y) = @$self{qw(x y)};
185
186 glColor 0, 0, 1, 0.2;
153 glEnable GL_BLEND; 187 glEnable GL_BLEND;
188 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
154 glBegin GL_QUADS; 189 glBegin GL_QUADS;
155 glVertex 0 , 0; 190 glVertex $x , $y;
156 glVertex $self->{w}, 0; 191 glVertex $x + $self->{w}, $y;
157 glVertex $self->{w}, $self->{h}; 192 glVertex $x + $self->{w}, $y + $self->{h};
158 glVertex 0 , $self->{h}; 193 glVertex $x , $y + $self->{h};
159 glEnd; 194 glEnd;
160 glDisable GL_BLEND; 195 glDisable GL_BLEND;
161 } 196 }
162 glPopMatrix;
163} 197}
164 198
165sub _draw { 199sub _draw {
166 my ($self) = @_; 200 my ($self) = @_;
167 201
207 241
208 $self->{parent}->update 242 $self->{parent}->update
209 if $self->{parent}; 243 if $self->{parent};
210} 244}
211 245
246sub connect {
247 my ($self, $signal, $cb) = @_;
248
249 push @{ $self->{cb}{$signal} }, $cb;
250}
251
252sub emit {
253 my ($self, $signal, @args) = @_;
254
255 $_->($self, @args)
256 for @{$self->{cb}{$signal} || []};
257}
258
212sub DESTROY { 259sub DESTROY {
213 my ($self) = @_; 260 my ($self) = @_;
214 261
215 #$self->deactivate; 262 #$self->deactivate;
216} 263}
217 264
218############################################################################# 265#############################################################################
219 266
267package CFClient::UI::DrawBG;
268
269our @ISA = CFClient::UI::Base::;
270
271use strict;
272use SDL::OpenGL;
273
274sub new {
275 my $class = shift;
276
277 # range [value, low, high, page]
278
279 $class->SUPER::new (
280 bg => [0, 0, 0, 0.2],
281 active_bg => [1, 1, 1],
282 @_
283 )
284}
285
286sub _draw {
287 my ($self) = @_;
288
289 my ($w, $h) = @$self{qw(w h)};
290
291 glEnable GL_BLEND;
292 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
293 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} };
294
295 glBegin GL_QUADS;
296 glVertex 0 , 0;
297 glVertex 0 , $h;
298 glVertex $w, $h;
299 glVertex $w, 0;
300 glEnd;
301
302 glDisable GL_BLEND;
303}
304
305#############################################################################
306
220package CFClient::Widget::Empty; 307package CFClient::UI::Empty;
221 308
222our @ISA = CFClient::Widget::; 309our @ISA = CFClient::UI::Base::;
223 310
224sub size_request { 311sub size_request {
225 (0, 0) 312 (0, 0)
226} 313}
227 314
228sub draw { 315sub draw { }
229}
230 316
231############################################################################# 317#############################################################################
232 318
233package CFClient::Widget::Container; 319package CFClient::UI::Container;
234 320
235our @ISA = CFClient::Widget::; 321our @ISA = CFClient::UI::Base::;
236 322
237sub new { 323sub new {
238 my ($class, %arg) = @_; 324 my ($class, %arg) = @_;
239 325
240 my $children = delete $arg{children} || []; 326 my $children = delete $arg{children} || [];
254 $self->{children} = [ 340 $self->{children} = [
255 sort { $a->{z} <=> $b->{z} } 341 sort { $a->{z} <=> $b->{z} }
256 @{$self->{children}}, $chld 342 @{$self->{children}}, $chld
257 ]; 343 ];
258 344
259 $self->size_allocate ($self->{w}, $self->{h}) 345 $self->{w} = $self->{h} = -1;
260 if $self->{w}; #TODO: check for "realised state" 346 $self->update;
261} 347}
262 348
263sub remove { 349sub remove {
264 my ($self, $widget) = @_; 350 my ($self, $widget) = @_;
265 351
266 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ]; 352 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ];
267 353
268 $self->size_allocate ($self->{w}, $self->{h}); 354 $self->size_allocate (0, 0, $self->{w}, $self->{h});
269} 355}
270 356
271sub find_widget { 357sub find_widget {
272 my ($self, $x, $y) = @_; 358 my ($self, $x, $y) = @_;
273 359
290 $_->draw for @{$self->{children}}; 376 $_->draw for @{$self->{children}};
291} 377}
292 378
293############################################################################# 379#############################################################################
294 380
295package CFClient::Widget::Bin; 381package CFClient::UI::Bin;
296 382
297our @ISA = CFClient::Widget::Container::; 383our @ISA = CFClient::UI::Container::;
298 384
299sub new { 385sub new {
300 my ($class, %arg) = @_; 386 my ($class, %arg) = @_;
301 387
302 my $child = (delete $arg{child}) || new CFClient::Widget::Empty::; 388 my $child = (delete $arg{child}) || new CFClient::UI::Empty::;
303 389
304 $class->SUPER::new (children => [$child], %arg) 390 $class->SUPER::new (children => [$child], %arg)
305} 391}
306 392
307sub add { 393sub add {
315sub remove { 401sub remove {
316 my ($self, $widget) = @_; 402 my ($self, $widget) = @_;
317 403
318 $self->SUPER::remove ($widget); 404 $self->SUPER::remove ($widget);
319 405
320 $self->{children} = [new CFClient::Widget::Empty] 406 $self->{children} = [new CFClient::UI::Empty]
321 unless @{$self->{children}}; 407 unless @{$self->{children}};
322} 408}
323 409
324sub child { $_[0]->{children}[0] } 410sub child { $_[0]->{children}[0] }
325 411
326sub size_request { 412sub size_request {
327 $_[0]{children}[0]->size_request if $_[0]{children}[0]; 413 $_[0]{children}[0]->size_request
328} 414}
329 415
330sub size_allocate { 416sub size_allocate {
331 my ($self, $w, $h) = @_; 417 my ($self, $x, $y, $w, $h) = @_;
332 418
333 $self->SUPER::size_allocate ($w, $h); 419 $self->_size_allocate ($x, $y, $w, $h) or return;
420
334 $self->{children}[0]->size_allocate ($w, $h) 421 $self->{children}[0]->size_allocate (0, 0, $w, $h);
335 if $self->{children}[0]
336} 422}
337 423
338############################################################################# 424#############################################################################
339 425
340package CFClient::Widget::Window; 426package CFClient::UI::Window;
341 427
342our @ISA = CFClient::Widget::Bin::; 428our @ISA = CFClient::UI::Bin::;
343 429
344use SDL::OpenGL; 430use SDL::OpenGL;
345 431
346sub new { 432sub new {
347 my ($class, %arg) = @_; 433 my ($class, %arg) = @_;
365 $self->{w}, $self->{h}, sub { $self->child->draw } 451 $self->{w}, $self->{h}, sub { $self->child->draw }
366 ); 452 );
367} 453}
368 454
369sub size_allocate { 455sub size_allocate {
370 my ($self, $w, $h) = @_; 456 my ($self, $x, $y, $w, $h) = @_;
371 457
372 $self->{w} = $w; 458 $self->_size_allocate ($x, $y, $w, $h) or return;
373 $self->{h} = $h;
374 459
375 $self->child->size_allocate ($w, $h); 460 $self->child->size_allocate (0, 0, $w, $h);
376 461
377 $self->render_chld; 462 $self->render_chld;
378} 463}
379 464
380sub _draw { 465sub _draw {
384 469
385 my $tex = $self->{texture} 470 my $tex = $self->{texture}
386 or return; 471 or return;
387 472
388 glEnable GL_BLEND; 473 glEnable GL_BLEND;
474 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
389 glEnable GL_TEXTURE_2D; 475 glEnable GL_TEXTURE_2D;
390 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 476 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
391 477
392 $tex->draw_quad (0, 0, $w, $h); 478 $tex->draw_quad (0, 0, $w, $h);
393 479
395 glDisable GL_TEXTURE_2D; 481 glDisable GL_TEXTURE_2D;
396} 482}
397 483
398############################################################################# 484#############################################################################
399 485
400package CFClient::Widget::Frame; 486package CFClient::UI::Frame;
401 487
402our @ISA = CFClient::Widget::Bin::; 488our @ISA = CFClient::UI::Bin::;
403 489
404use SDL::OpenGL; 490use SDL::OpenGL;
405 491
406sub size_request { 492sub size_request {
407 my ($self) = @_; 493 my ($self) = @_;
412 498
413 map { $_ + 4 } $chld->size_request; 499 map { $_ + 4 } $chld->size_request;
414} 500}
415 501
416sub size_allocate { 502sub size_allocate {
417 my ($self, $w, $h) = @_; 503 my ($self, $x, $y, $w, $h) = @_;
418 504
419 $self->{w} = $w; 505 $self->_size_allocate ($x, $y, $w, $h) or return;
420 $self->{h} = $h;
421 506
422 $self->child->size_allocate ($w - 4, $h - 4); 507 $self->child->size_allocate (2, 2, $w - 4, $h - 4);
423 $self->child->move (2, 2);
424} 508}
425 509
426sub _draw { 510sub _draw {
427 my ($self) = @_; 511 my ($self) = @_;
428 512
441 $chld->draw; 525 $chld->draw;
442} 526}
443 527
444############################################################################# 528#############################################################################
445 529
446package CFClient::Widget::FancyFrame; 530package CFClient::UI::FancyFrame;
447 531
448our @ISA = CFClient::Widget::Bin::; 532our @ISA = CFClient::UI::Bin::;
449 533
450use SDL::OpenGL; 534use SDL::OpenGL;
451 535
452my @tex = 536my @tex =
453 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 537 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
456sub size_request { 540sub size_request {
457 my ($self) = @_; 541 my ($self) = @_;
458 542
459 my ($w, $h) = $self->SUPER::size_request; 543 my ($w, $h) = $self->SUPER::size_request;
460 544
461 $h += $tex[1]->{height}; 545 $h += $tex[1]->{h};
462 $h += $tex[4]->{height}; 546 $h += $tex[4]->{h};
463 $w += $tex[2]->{width}; 547 $w += $tex[2]->{w};
464 $w += $tex[3]->{width}; 548 $w += $tex[3]->{w};
465 549
466 ($w, $h) 550 ($w, $h)
467} 551}
468 552
469sub size_allocate { 553sub size_allocate {
470 my ($self, $w, $h) = @_; 554 my ($self, $x, $y, $w, $h) = @_;
471 555
472 $self->SUPER::size_allocate ($w, $h); 556 $self->_size_allocate ($x, $y, $w, $h) or return;
473 557
474 $h -= $tex[1]->{height}; 558 $h -= $tex[1]->{h};
475 $h -= $tex[4]->{height}; 559 $h -= $tex[4]->{h};
476 $w -= $tex[2]->{width}; 560 $w -= $tex[2]->{w};
477 $w -= $tex[3]->{width}; 561 $w -= $tex[3]->{w};
478 562
479 $h = $h < 0 ? 0 : $h; 563 $h = $h < 0 ? 0 : $h;
480 $w = $w < 0 ? 0 : $w; 564 $w = $w < 0 ? 0 : $w;
481 565
482 my $child = $self->child; 566 my $child = $self->child;
483 567
484 $child->size_allocate ($w, $h); 568 $child->size_allocate ($tex[3]->{w}, $tex[1]->{h}, $w, $h);
485 $child->move ($tex[3]->{width}, $tex[1]->{height});
486} 569}
487 570
488sub _draw { 571sub _draw {
489 my ($self) = @_; 572 my ($self) = @_;
490 573
491 my ($w, $h) = ($self->{w}, $self->{h}); 574 my ($w, $h) = ($self->{w}, $self->{h});
492 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 575 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
493 576
494 glEnable GL_BLEND; 577 glEnable GL_BLEND;
578 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
495 glEnable GL_TEXTURE_2D; 579 glEnable GL_TEXTURE_2D;
496 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
497 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 580 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
498 581
499 my $top = $tex[1]; 582 my $top = $tex[1];
500 $top->draw_quad (0, 0, $w, $top->{height}); 583 $top->draw_quad (0, 0, $w, $top->{h});
501 584
502 my $left = $tex[3]; 585 my $left = $tex[3];
503 $left->draw_quad (0, $top->{height}, $left->{width}, $ch); 586 $left->draw_quad (0, $top->{h}, $left->{w}, $ch);
504 587
505 my $right = $tex[2]; 588 my $right = $tex[2];
506 $right->draw_quad ($w - $right->{width}, $top->{height}, $right->{width}, $ch); 589 $right->draw_quad ($w - $right->{w}, $top->{h}, $right->{w}, $ch);
507 590
508 my $bottom = $tex[4]; 591 my $bottom = $tex[4];
509 $bottom->draw_quad (0, $h - $bottom->{height}, $w, $bottom->{height}); 592 $bottom->draw_quad (0, $h - $bottom->{h}, $w, $bottom->{h});
510 593
511 my $bg = $tex[0]; 594 my $bg = $tex[0];
595
512 glBindTexture GL_TEXTURE_2D, $bg->{name}; 596 glBindTexture GL_TEXTURE_2D, $bg->{name};
513 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 597 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
514 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT; 598 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT;
515 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT; 599 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT;
516 600
517 my $rep_x = $cw / $bg->{width}; 601 my $rep_x = $cw / $bg->{w};
518 my $rep_y = $ch / $bg->{height}; 602 my $rep_y = $ch / $bg->{h};
519 603
520 $bg->draw_quad ($left->{width}, $top->{height}, $cw, $ch); 604 $bg->draw_quad ($left->{w}, $top->{h}, $cw, $ch);
521 605
606 glDisable GL_TEXTURE_2D;
522 glDisable GL_BLEND; 607 glDisable GL_BLEND;
523 glDisable GL_TEXTURE_2D;
524 608
525 $self->child->draw; 609 $self->child->draw;
526 610
527} 611}
528 612
529############################################################################# 613#############################################################################
530 614
531package CFClient::Widget::Table; 615package CFClient::UI::Table;
532 616
533our @ISA = CFClient::Widget::Bin::; 617our @ISA = CFClient::UI::Base::;
618
619use List::Util qw(max sum);
534 620
535use SDL::OpenGL; 621use SDL::OpenGL;
536 622
537sub add { 623sub add {
538 my ($self, $x, $y, $chld) = @_; 624 my ($self, $x, $y, $chld) = @_;
539 my $old_chld = $self->{children}[$y][$x];
540 625
541 $self->{children}[$y][$x] = $chld; 626 $self->{children}[$y][$x] = $chld;
542 $chld->set_parent ($self); 627 $chld->set_parent ($self);
628
629 $self->{w} = $self->{h} = -1;
543 $self->update; 630 $self->update;
544} 631}
545 632
546sub max_row_height { 633sub get_wh {
547 my ($self, $row) = @_; 634 my ($self) = @_;
548 635
549 my $hs = 0; 636 my (@w, @h);
550 for (my $xi = 0; $xi <= $#{$self->{children}->[$row] || []}; $xi++) { 637
638 for my $y (0 .. $#{$self->{children}}) {
551 my $c = $self->{children}->[$row]->[$xi]; 639 my $row = $self->{children}[$y]
552 if ($c) { 640 or next;
641
642 for my $x (0 .. $#$row) {
643 my $widget = $row->[$x]
644 or next;
553 my ($w, $h) = $c->size_request; 645 my ($w, $h) = $widget->size_request;
554 if ($hs < $h) { $hs = $h } 646
647 $w[$x] = max $w[$x], $w;
648 $h[$y] = max $h[$y], $h;
555 } 649 }
556 } 650 }
557 return $hs;
558}
559 651
560sub max_col_width { 652 (\@w, \@h)
653}
654
655sub size_request {
561 my ($self, $col) = @_; 656 my ($self) = @_;
562 657
658 my ($ws, $hs) = $self->get_wh;
659
660 (
661 (List::Util::sum @$ws),
662 (List::Util::sum @$hs),
663 )
664}
665
666sub size_allocate {
667 my ($self, $x, $y, $w, $h) = @_;
668
669 $self->_size_allocate ($x, $y, $w, $h) or return;
670
671 my ($ws, $hs) = $self->get_wh;
672
673 my $req_w = List::Util::sum @$ws;
674 my $req_h = List::Util::sum @$hs;
675
676 # linearly scale sizes
677 $_ *= $req_w / $w for @$ws;
678 $_ *= $req_h / $h for @$hs;
679
680 my $y;
681
682 for my $r (0 .. $#{$self->{children}}) {
683 my $row = $self->{children}[$r]
684 or next;
685
563 my $ws = 0; 686 my $x = 0;
564 for (my $yi = 0; $yi <= $#{$self->{children} || []}; $yi++) { 687 my $row_h = $hs->[$r];
565 my $c = ($self->{children}->[$yi] || [])->[$col]; 688
566 if ($c) { 689 for my $c (0 .. $#$row) {
567 my ($w, $h) = $c->size_request; 690 my $widget = $row->[$c]
568 if ($ws < $w) { $ws = $w } 691 or next;
692
693 my $col_w = $ws->[$c];
694
695 $widget->size_allocate ($x, $y, $col_w, $row_h);
696
697 $x += $col_w;
569 } 698 }
699
700 $y += $row_h;
570 } 701 }
571 return $ws; 702
572} 703}
704
705sub find_widget {
706 my ($self, $x, $y) = @_;
707
708 $x -= $self->{x};
709 $y -= $self->{y};
710
711 my $res;
712
713 for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
714 $res = $_->find_widget ($x, $y)
715 and return $res;
716 }
717
718 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
719}
720
721sub _draw {
722 my ($self) = @_;
723
724 for (grep $_, @{$self->{children}}) {
725 $_->draw for grep $_, @$_;
726 }
727}
728
729#############################################################################
730
731package CFClient::UI::HBox;
732
733# TODO: wrap into common Box base class
734
735our @ISA = CFClient::UI::Container::;
573 736
574sub size_request { 737sub size_request {
575 my ($self) = @_; 738 my ($self) = @_;
576 739
740 my @alloc = map [$_->size_request], @{$self->{children}};
741
742 (
743 (List::Util::sum map $_->[0], @alloc),
744 (List::Util::max map $_->[1], @alloc),
745 )
746}
747
748sub size_allocate {
749 my ($self, $x, $y, $w, $h) = @_;
750
751 $self->_size_allocate ($x, $y, $w, $h) or return;
752
753 return unless $self->{w};
754
577 my ($hs, $ws) = (0, 0); 755 ($h, $w) = ($w, $h);
578 756
579 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 757 my $children = $self->{children};
580 $hs += $self->max_row_height ($yi);
581 }
582 758
583 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 759 my @h = map +($_->size_request)[0], @$children;
584 my $wm = 0; 760
585 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 761 my $req_h = List::Util::sum @h;
586 $wm += $self->max_col_width ($xi) 762
763 if ($req_h > $h) {
764 # ah well, not enough space
765 $_ = $h[$_] * $h / $req_h for @h;
766 } else {
767 my @exp = grep $_->{expand}, @$children;
768 @exp = @$children unless @exp;
769
770 my %exp = map +($_ => 1), @exp;
771
772 for (0 .. $#$children) {
773 my $child = $children->[$_];
774
775 my $alloc_h = $h[$_];
776 $alloc_h += ($h - $req_h) / @exp if $exp{$child};
777 $h[$_] = $alloc_h;
587 } 778 }
588 if ($ws < $wm) { $ws = $wm }
589 } 779 }
590
591 return ($ws, $hs);
592}
593
594sub _draw {
595 my ($self) = @_;
596 780
597 my $y = 0; 781 my $y = 0;
598 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 782 for (0 .. $#$children) {
783 my $child = $children->[$_];
599 my $x = 0; 784 my $h = $h[$_];
785 $child->size_allocate ($y, 0, $h, $w);
600 786
601 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 787 $y += $h;
602
603 my $c = $self->{children}->[$yi]->[$xi];
604 if ($c) {
605 $c->move ($x, $y, 0); #TODO: Move to size_request
606 $c->draw if $c;
607 }
608
609 $x += $self->max_col_width ($xi);
610 }
611
612 $y += $self->max_row_height ($yi);
613 } 788 }
614} 789}
615 790
616############################################################################# 791#############################################################################
617 792
618package CFClient::Widget::VBox; 793package CFClient::UI::VBox;
619 794
795# TODO: wrap into common Box base class
796
620our @ISA = CFClient::Widget::Container::; 797our @ISA = CFClient::UI::Container::;
621
622use SDL::OpenGL;
623 798
624sub size_request { 799sub size_request {
625 my ($self) = @_; 800 my ($self) = @_;
626 801
627 my @alloc = map [$_->size_request], @{$self->{children}}; 802 my @alloc = map [$_->size_request], @{$self->{children}};
631 (List::Util::sum map $_->[1], @alloc), 806 (List::Util::sum map $_->[1], @alloc),
632 ) 807 )
633} 808}
634 809
635sub size_allocate { 810sub size_allocate {
636 my ($self, $w, $h) = @_; 811 my ($self, $x, $y, $w, $h) = @_;
637 812
638 $self->w ($w); 813 $self->_size_allocate ($x, $y, $w, $h) or return;
639 $self->h ($h);
640 814
641 my $exp; 815 return unless $self->{h};
642 my @oth; 816
643 # find expand widget 817 my $children = $self->{children};
644 for (@{$self->{children}}) { 818
645 if ($_->{expand}) { 819 my @h = map +($_->size_request)[1], @$children;
646 $exp = $_; 820
647 last; 821 my $req_h = List::Util::sum @h;
822
823 if ($req_h > $h) {
824 # ah well, not enough space
825 $_ = $h[$_] * $h / $req_h for @h;
826 } else {
827 my @exp = grep $_->{expand}, @$children;
828 @exp = @$children unless @exp;
829
830 my %exp = map +($_ => 1), @exp;
831
832 for (0 .. $#$children) {
833 my $child = $children->[$_];
834
835 my $alloc_h = $h[$_];
836 $alloc_h += ($h - $req_h) / @exp if $exp{$child};
837 $h[$_] = $alloc_h;
648 } 838 }
649 push @oth, $_;
650 }
651
652 my ($ow, $oh);
653
654 # get sizes of other widgets
655 for (@oth) {
656 my ($w, $h) = $_->size_request;
657 $oh += $h;
658 if ($ow < $w) { $ow = $w }
659 } 839 }
660 840
661 my $y = 0; 841 my $y = 0;
662 for (@{$self->{children}}) { 842 for (0 .. $#$children) {
663 $_->move (0, $y); 843 my $child = $children->[$_];
664 844 my $h = $h[$_];
665 if ($_ == $exp) {
666 $_->size_allocate ($w, $h - $oh);
667 $y += $h - $oh;
668 } else {
669 my ($cw, $h) = $_->size_request;
670 $_->size_allocate ($w, $h); 845 $child->size_allocate (0, $y, $w, $h);
846
671 $y += $h; 847 $y += $h;
672 }
673 } 848 }
674} 849}
675 850
676############################################################################# 851#############################################################################
677 852
678package CFClient::Widget::Label; 853package CFClient::UI::Label;
679 854
680our @ISA = CFClient::Widget::; 855our @ISA = CFClient::UI::Base::;
681 856
682use SDL::OpenGL; 857use SDL::OpenGL;
683 858
684sub new { 859sub new {
685 my ($class, %arg) = @_; 860 my ($class, %arg) = @_;
686 861
687 # TODO: color, and make height, xyz etc. optional
688 my $self = $class->SUPER::new ( 862 my $self = $class->SUPER::new (
689 color => [1, 1, 1], 863 fg => [1, 1, 1],
690 height => $::FONTSIZE, 864 height => $::FONTSIZE,
691 text => "", 865 text => "",
866 align => -1,
867 padding => 2,
692 layout => new CFClient::Layout, 868 layout => new CFClient::Layout,
693 %arg 869 %arg
694 ); 870 );
695 871
696 $self->set_text ($self->{text}); 872 $self->set_text ($self->{text});
697 873
698 $self 874 $self
699} 875}
700 876
877sub escape_text {
878 local $_ = $_[1];
879
880 s/&/&amp;/g;
881 s/>/&gt;/g;
882 s/</&lt;/g;
883
884 $_[1]
885}
886
701sub set_text { 887sub set_text {
702 my ($self, $text) = @_; 888 my ($self, $text) = @_;
703 889
704 $self->{text} = $text; 890 $self->{text} = $text;
705 $self->{layout}->set_markup ($text); 891 $self->{layout}->set_markup ($text);
706 892
707 delete $self->{texture}; 893 delete $self->{texture};
894 $self->update;
708} 895}
709 896
710sub get_text { 897sub get_text {
711 my ($self, $text) = @_; 898 my ($self, $text) = @_;
712 899
716sub size_request { 903sub size_request {
717 my ($self) = @_; 904 my ($self) = @_;
718 905
719 $self->{layout}->set_width; 906 $self->{layout}->set_width;
720 $self->{layout}->set_height ($self->{height}); 907 $self->{layout}->set_height ($self->{height});
721 $self->{layout}->size 908 my ($w, $h) = $self->{layout}->size;
722# if ($self->{texture}{width} > 1 && $self->{texture}{height} > 1) { #TODO: hack 909
723# ( 910 (
724# $self->{texture}{width}, 911 $w + $self->{padding} * 2,
725# $self->{texture}{height}, 912 $h + $self->{padding} * 2,
726# ) 913 )
727# } else {
728# my ($w, $h, $data) = CFClient::font_render "Yy", $self->{height};
729#
730# ($w, $h)
731# }
732} 914}
733 915
734sub size_allocate { 916sub size_allocate {
735 my ($self, $w, $h) = @_; 917 my ($self, $x, $y, $w, $h) = @_;
736 918
737 $self->SUPER::size_allocate ($w, $h); 919 $self->_size_allocate ($x, $y, $w, $h) or return;
920
738 delete $self->{texture}; 921 delete $self->{texture};
922}
923
924sub update {
925 my ($self) = @_;
926
927 delete $self->{texture};
928 $self->SUPER::update;
739} 929}
740 930
741sub _draw { 931sub _draw {
742 my ($self) = @_; 932 my ($self) = @_;
743 933
744 my $tex = $self->{texture} ||= do { 934 my $tex = $self->{texture} ||= do {
745 $self->{layout}->set_width ($self->{w}); 935 $self->{layout}->set_width ($self->{w});
746 new_from_layout CFClient::Texture $self->{layout}; 936 new_from_layout CFClient::Texture $self->{layout}
747 }; 937 };
748 938
749 glEnable GL_BLEND; 939 glEnable GL_BLEND;
940 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
750 glEnable GL_TEXTURE_2D; 941 glEnable GL_TEXTURE_2D;
751 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
752 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 942 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
753 943
754 glColor @{$self->{color}}; 944 glColor @{$self->{fg}};
755 945
946 my $x =
947 $self->{align} < 0 ? $self->{padding}
948 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
949 : ($self->{w} - $tex->{w}) * 0.5;
950
756 $tex->draw_quad (0, 0); 951 $tex->draw_quad ($x, 0);
757 952
953 glDisable GL_TEXTURE_2D;
758 glDisable GL_BLEND; 954 glDisable GL_BLEND;
759 glDisable GL_TEXTURE_2D;
760} 955}
761 956
762############################################################################# 957#############################################################################
763 958
764package CFClient::Widget::Entry; 959package CFClient::UI::Entry;
765 960
766our @ISA = CFClient::Widget::Label::; 961our @ISA = CFClient::UI::Label::;
767 962
768use SDL; 963use SDL;
769use SDL::OpenGL; 964use SDL::OpenGL;
770 965
966sub new {
967 my $class = shift;
968
969 $class->SUPER::new (
970 fg => [1, 1, 1],
971 bg => [0, 0, 0, 0.2],
972 active_bg => [1, 1, 1],
973 active_fg => [0, 0, 0],
974 @_
975 )
976}
977
978sub _set_text {
979 my ($self, $text) = @_;
980
981 $self->{last_activity} = $::NOW;
982
983 $self->{text} = $text;
984 $self->{layout}->set_width ($self->{w});
985
986 $text =~ s/./*/g if $self->{hidden};
987
988 $self->{layout}->set_markup ($self->escape_text ($text) . " ");
989
990 $text = substr $text, 0, $self->{cursor};
991 utf8::encode $text;
992
993 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text);
994}
995
996sub size_request {
997 my ($self) = @_;
998
999 my ($w, $h) = $self->SUPER::size_request;
1000
1001 ($w + 1, $h) # add 1 for cursor
1002}
1003
1004sub size_allocate {
1005 my ($self, $x, $y, $w, $h) = @_;
1006
1007 $self->SUPER::size_allocate ($x, $y, $w, $h);
1008
1009 $self->_set_text ($self->{text});
1010}
1011
1012sub set_text {
1013 my ($self, $text) = @_;
1014
1015 $self->{cursor} = length $text;
1016 $self->_set_text ($text);
1017 $self->update;
1018}
1019
771sub key_down { 1020sub key_down {
772 my ($self, $ev) = @_; 1021 my ($self, $ev) = @_;
773 1022
774 my $mod = $ev->key_mod; 1023 my $mod = $ev->key_mod;
775 my $sym = $ev->key_sym; 1024 my $sym = $ev->key_sym;
777 my $uni = $ev->key_unicode; 1026 my $uni = $ev->key_unicode;
778 1027
779 my $text = $self->get_text; 1028 my $text = $self->get_text;
780 1029
781 if ($sym == SDLK_BACKSPACE) { 1030 if ($sym == SDLK_BACKSPACE) {
782 substr $text, -1, 1, ''; 1031 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1032 } elsif ($sym == SDLK_DELETE) {
1033 substr $text, $self->{cursor}, 1, "";
1034 } elsif ($sym == SDLK_LEFT) {
1035 --$self->{cursor} if $self->{cursor};
1036 } elsif ($sym == SDLK_RIGHT) {
1037 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1038 } elsif ($sym == SDLK_HOME) {
1039 $self->{cursor} = 0;
1040 } elsif ($sym == SDLK_END) {
1041 $self->{cursor} = length $text;
783 } elsif ($uni) { 1042 } elsif ($uni) {
784 $text .= chr $uni; 1043 substr $text, $self->{cursor}++, 0, chr $uni;
785 } 1044 }
786 1045
787 $self->set_text ($text); 1046 $self->_set_text ($text);
1047 $self->update;
1048}
1049
1050sub focus_in {
1051 my ($self) = @_;
1052
1053 $self->{last_activity} = $::NOW;
1054
1055 $self->SUPER::focus_in;
788} 1056}
789 1057
790sub button_down { 1058sub button_down {
791 my ($self, $ev) = @_; 1059 my ($self, $ev, $x, $y) = @_;
792 1060
793 $self->focus_in; 1061 $self->SUPER::button_down ($ev, $x, $y);
1062
1063 my $idx = $self->{layout}->xy_to_index ($x, $y);
1064
1065 # byte-index to char-index
1066 my $text = $self->{text};
1067 utf8::encode $text;
1068 $self->{cursor} = length substr $text, 0, $idx;
1069
1070 $self->_set_text ($self->{text});
1071 $self->update;
794} 1072}
795 1073
796sub mouse_motion { 1074sub mouse_motion {
797 my ($self, $ev, $x, $y) = @_; 1075 my ($self, $ev, $x, $y) = @_;
798 printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d# 1076# printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d#
799} 1077}
800 1078
801sub _draw { 1079sub _draw {
802 my ($self) = @_; 1080 my ($self) = @_;
803 1081
1082 local $self->{fg} = $self->{fg};
1083
804 if ($FOCUS == $self) { 1084 if ($FOCUS == $self) {
805 glColor 1, 1, 1; 1085 glColor @{$self->{active_bg}};
1086 $self->{fg} = $self->{active_fg};
806 } else { 1087 } else {
807 glColor 0.7, 0.7, 0.7; 1088 glColor @{$self->{bg}};
808 } 1089 }
809 1090
1091 glEnable GL_BLEND;
1092 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
810 glBegin GL_QUADS; 1093 glBegin GL_QUADS;
811 glVertex 0 , 0; 1094 glVertex 0 , 0;
812 glVertex 0 , $self->{h} - 1; 1095 glVertex 0 , $self->{h};
813 glVertex $self->{w} - 1, $self->{h} - 1; 1096 glVertex $self->{w}, $self->{h};
814 glVertex $self->{w} - 1, 0; 1097 glVertex $self->{w}, 0;
815 glEnd; 1098 glEnd;
1099 glDisable GL_BLEND;
816 1100
817 $self->SUPER::_draw; 1101 $self->SUPER::_draw;
818}
819 1102
820############################################################################# 1103 #TODO: force update every cursor change :(
1104 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1105 glColor @{$self->{fg}};
1106 glBegin GL_LINES;
1107 glVertex $self->{cur_x}, $self->{cur_y};
1108 glVertex $self->{cur_x}, $self->{cur_y} + $self->{cur_h};
1109 glEnd;
1110 }
1111}
821 1112
1113#############################################################################
1114
1115package CFClient::UI::Slider;
1116
1117use strict;
1118
1119use SDL::OpenGL;
1120
1121our @ISA = CFClient::UI::DrawBG::;
1122
1123sub new {
1124 my $class = shift;
1125
1126 # range [value, low, high, page]
1127
1128 my $self = $class->SUPER::new (
1129 fg => [1, 1, 1],
1130 active_fg => [0, 0, 0],
1131 range => [0, 0, 100, 10],
1132 req_w => 40,
1133 req_h => 10,
1134 vertical => 0,
1135 @_
1136 );
1137
1138 $self
1139}
1140
1141sub size_request {
1142 my ($self) = @_;
1143
1144 my $w = $self->{req_w};
1145 my $h = $self->{req_h};
1146
1147 $self->{vertical} ? ($h, $w) : ($w, $h)
1148}
1149
1150sub button_down {
1151 my ($self, $ev, $x, $y) = @_;
1152
1153 $self->SUPER::button_down ($ev, $x, $y);
1154 $self->mouse_motion ($ev, $x, $y);
1155}
1156
1157sub mouse_motion {
1158 my ($self, $ev, $x, $y) = @_;
1159
1160 if ($GRAB == $self) {
1161 my ($value, $lo, $hi, $page) = @{$self->{range}};
1162
1163 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
1164
1165 $x = $x * ($hi - $lo) / $w + $lo;
1166 $x = $lo if $x < $lo;
1167 $x = $hi - $page if $x > $hi - $page;
1168 $self->{range}[0] = $x;
1169
1170 $self->emit (changed => $x);
1171 $self->update;
1172 }
1173}
1174
1175sub _draw {
1176 my ($self) = @_;
1177
1178 $self->SUPER::_draw ();
1179
1180 my ($w, $h) = @$self{qw(w h)};
1181
1182 if ($self->{vertical}) {
1183 # draw a vertical slider like a rotated horizontal slider
1184
1185 glRotate 90, 0, 0, 1;
1186 glTranslate 0, -$self->{w}, 0;
1187
1188 ($w, $h) = ($h, $w);
1189 }
1190
1191 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
1192 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
1193
1194 my ($value, $lo, $hi, $page) = @{$self->{range}};
1195
1196 $page = int $page * $w / ($hi - $lo);
1197 $value = int +($value - $lo) * $w / ($hi - $lo);
1198
1199 $w -= $page;
1200 $page &= ~1;
1201 glTranslate $page * 0.5, 0, 0;
1202
1203 glColor @$fg;
1204 glBegin GL_LINES;
1205 glVertex 0, 0; glVertex 0, $h;
1206 glVertex $w - 1, 0; glVertex $w - 1, $h;
1207 glVertex 0, $h * 0.5; glVertex $w, $h * 0.5;
1208 glEnd;
1209
1210 my $knob_a = $value - $page * 0.5;
1211 my $knob_b = $value + $page * 0.5;
1212
1213 glBegin GL_QUADS;
1214 glColor @$fg;
1215 glVertex $knob_a, 0;
1216 glVertex $knob_a, $h;
1217 glVertex $knob_b, $h;
1218 glVertex $knob_b, 0;
1219
1220 if ($knob_a < $knob_b - 2) {
1221 glColor @$bg;
1222 glVertex $knob_a + 1, 1;
1223 glVertex $knob_a + 1, $h - 1;
1224 glVertex $knob_b - 1, $h - 1;
1225 glVertex $knob_b - 1, 1;
1226 }
1227 glEnd;
1228}
1229
1230#############################################################################
1231
822package CFClient::Widget::MapWidget; 1232package CFClient::UI::MapWidget;
823 1233
824use strict; 1234use strict;
825 1235
826use List::Util qw(min max); 1236use List::Util qw(min max);
827 1237
828use SDL; 1238use SDL;
829use SDL::OpenGL; 1239use SDL::OpenGL;
830use SDL::OpenGL::Constants;
831 1240
832our @ISA = CFClient::Widget::; 1241our @ISA = CFClient::UI::Base::;
833 1242
834sub new { 1243sub new {
835 my $class = shift; 1244 my $class = shift;
836 1245
837 $class->SUPER::new ( 1246 $class->SUPER::new (
857 1266
858sub update { 1267sub update {
859 my ($self) = @_; 1268 my ($self) = @_;
860 1269
861 $self->{need_update} = 1; 1270 $self->{need_update} = 1;
1271 $self->SUPER::update;
862} 1272}
863 1273
864sub _draw { 1274sub _draw {
865 my ($self) = @_; 1275 my ($self) = @_;
866 1276
889 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs}; 1299 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs};
890 } 1300 }
891 1301
892 glEnable GL_TEXTURE_2D; 1302 glEnable GL_TEXTURE_2D;
893 glEnable GL_BLEND; 1303 glEnable GL_BLEND;
1304 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
894 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1305 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
895 1306
896 my $sw4 = ($sw + 3) & ~3; 1307 my $sw4 = ($sw + 3) & ~3;
897 my $darkness = "\x00" x ($sw4 * $sh); 1308 my $darkness = "\x00" x ($sw4 * $sh);
898 1309
911 } 1322 }
912 1323
913 for my $num (grep $_, @$cell[1,2,3]) { 1324 for my $num (grep $_, @$cell[1,2,3]) {
914 my $tex = $::CONN->{face}[$num]{texture} || next; 1325 my $tex = $::CONN->{face}[$num]{texture} || next;
915 1326
916 my $w = $tex->{width}; 1327 my ($w, $h) = @$tex{qw(w h)};
917 my $h = $tex->{height};
918 1328
919 $tex->draw_quad (($x + 1) * 32 - $w, ($y + 1) * 32 - $h, $w, $h); 1329 $tex->draw_quad (($x + 1) * 32 - $w, ($y + 1) * 32 - $h, $w, $h);
920 } 1330 }
921 } 1331 }
922 } 1332 }
929# 1339#
930# $lighting = $pb->get_pixels; 1340# $lighting = $pb->get_pixels;
931# $lighting =~ s/(.)../$1/gs; 1341# $lighting =~ s/(.)../$1/gs;
932# } 1342# }
933 1343
934 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
935 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 1344 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
936 1345
937 $darkness = new CFClient::Texture 1346 $darkness = new CFClient::Texture
938 width => $sw4, 1347 w => $sw4,
939 height => $sh, 1348 h => $sh,
940 data => $darkness, 1349 data => $darkness,
941 internalformat => GL_ALPHA, 1350 internalformat => GL_ALPHA,
942 format => GL_ALPHA; 1351 format => GL_ALPHA;
943 1352
944 glColor 0.45, 0.45, 0.45, 1; 1353 glColor 0.45, 0.45, 0.45, 1;
1004 } 1413 }
1005} 1414}
1006 1415
1007############################################################################# 1416#############################################################################
1008 1417
1009package CFClient::Widget::Animator; 1418package CFClient::UI::Animator;
1010 1419
1011use SDL::OpenGL; 1420use SDL::OpenGL;
1012 1421
1013our @ISA = CFClient::Widget::Bin::; 1422our @ISA = CFClient::UI::Bin::;
1014 1423
1015sub moveto { 1424sub moveto {
1016 my ($self, $x, $y) = @_; 1425 my ($self, $x, $y) = @_;
1017 1426
1018 $self->{moveto} = [$self->{x}, $self->{y}, $x, $y]; 1427 $self->{moveto} = [$self->{x}, $self->{y}, $x, $y];
1046 glPopMatrix; 1455 glPopMatrix;
1047} 1456}
1048 1457
1049############################################################################# 1458#############################################################################
1050 1459
1051package CFClient::Widget::Toplevel; 1460package CFClient::UI::Toplevel;
1052 1461
1053our @ISA = CFClient::Widget::Container::; 1462our @ISA = CFClient::UI::Container::;
1054 1463
1055sub size_request { 1464sub size_request {
1056 ($::WIDTH, $::HEIGHT) 1465 ($::WIDTH, $::HEIGHT)
1057} 1466}
1058 1467
1059sub size_allocate { 1468sub size_allocate {
1060 my ($self, $w, $h) = @_; 1469 my ($self, $x, $y, $w, $h) = @_;
1061 1470
1062 $self->SUPER::size_allocate ($w, $h); 1471 $self->_size_allocate ($x, $y, $w, $h);
1063 1472
1064 $_->size_allocate ($_->size_request) 1473 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request)
1065 for @{$self->{children}}; 1474 for @{$self->{children}};
1066} 1475}
1067 1476
1068sub translate { 1477sub translate {
1069 my ($self, $x, $y) = @_; 1478 my ($self, $x, $y) = @_;
1072} 1481}
1073 1482
1074sub update { 1483sub update {
1075 my ($self) = @_; 1484 my ($self) = @_;
1076 1485
1077 $self->size_allocate ($self->size_request); 1486 $self->size_allocate (0, 0, $::WIDTH, $::HEIGHT);
1078 ::refresh (); 1487 ::refresh ();
1079} 1488}
1080 1489
1081sub add { 1490sub add {
1082 my ($self, $widget) = @_; 1491 my ($self, $widget) = @_;
1083 1492
1084 $self->SUPER::add ($widget); 1493 $self->SUPER::add ($widget);
1085 1494
1086 $widget->size_allocate ($widget->size_request); 1495 $widget->size_allocate ($widget->{x}, $widget->{y}, $widget->size_request);
1087} 1496}
1088 1497
1089sub draw { 1498sub draw {
1090 my ($self) = @_; 1499 my ($self) = @_;
1091 1500
1092 $self->_draw; 1501 $self->_draw;
1093} 1502}
1094 1503
1095############################################################################# 1504#############################################################################
1096 1505
1097package CFClient::Widget; 1506package CFClient::UI;
1098 1507
1099$TOPLEVEL = new CFClient::Widget::Toplevel; 1508$TOPLEVEL = new CFClient::UI::Toplevel;
1100 1509
11011 15101
1102 1511

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines