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.136 by root, Wed Apr 19 20:46:44 2006 UTC vs.
Revision 1.154 by root, Sun Apr 23 02:20:57 2006 UTC

8use CFClient; 8use CFClient;
9 9
10our ($FOCUS, $HOVER, $GRAB); # various widgets 10our ($FOCUS, $HOVER, $GRAB); # various widgets
11 11
12our $ROOT; 12our $ROOT;
13our $TOOLTIP;
13our $BUTTON_STATE; 14our $BUTTON_STATE;
15
16sub check_tooltip {
17 if (!$GRAB) {
18 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) {
19 if (exists $widget->{tooltip}) {
20
21 if ($TOOLTIP->{owner} != $widget) {
22 $TOOLTIP->{owner} = $widget;
23 $TOOLTIP->set_text ($widget->{tooltip});
24 $TOOLTIP->move ($widget->coord2global ($widget->{w}, 0));
25 $TOOLTIP->show;
26 }
27
28 return;
29 }
30 }
31 }
32
33 $TOOLTIP->hide;
34 delete $TOOLTIP->{owner};
35}
14 36
15# class methods for events 37# class methods for events
16sub feed_sdl_key_down_event { 38sub feed_sdl_key_down_event {
17 $FOCUS->key_down ($_[0]) if $FOCUS; 39 $FOCUS->key_down ($_[0]) if $FOCUS;
18} 40}
21 $FOCUS->key_up ($_[0]) if $FOCUS; 43 $FOCUS->key_up ($_[0]) if $FOCUS;
22} 44}
23 45
24sub feed_sdl_button_down_event { 46sub feed_sdl_button_down_event {
25 my ($ev) = @_; 47 my ($ev) = @_;
26 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 48 my ($x, $y) = ($ev->{x}, $ev->{y});
27 49
28 if (!$BUTTON_STATE) { 50 if (!$BUTTON_STATE) {
29 my $widget = $ROOT->find_widget ($x, $y); 51 my $widget = $ROOT->find_widget ($x, $y);
30 52
31 $GRAB = $widget; 53 $GRAB = $widget;
32 $GRAB->update if $GRAB; 54 $GRAB->update if $GRAB;
33 }
34 55
56 check_tooltip;
57 }
58
35 $BUTTON_STATE |= 1 << ($ev->button - 1); 59 $BUTTON_STATE |= 1 << ($ev->{button} - 1);
36 60
37 $GRAB->button_down ($ev, $GRAB->coord2local ($x, $y)) if $GRAB; 61 $GRAB->button_down ($ev, $GRAB->coord2local ($x, $y)) if $GRAB;
38} 62}
39 63
40sub feed_sdl_button_up_event { 64sub feed_sdl_button_up_event {
41 my ($ev) = @_; 65 my ($ev) = @_;
42 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 66 my ($x, $y) = ($ev->{x}, $ev->{y});
43 67
44 my $widget = $GRAB || $ROOT->find_widget ($x, $y); 68 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
45 69
46 $BUTTON_STATE &= ~(1 << ($ev->button - 1)); 70 $BUTTON_STATE &= ~(1 << ($ev->{button} - 1));
47 71
48 $GRAB->button_up ($ev, $GRAB->coord2local ($x, $y)) if $GRAB; 72 $GRAB->button_up ($ev, $GRAB->coord2local ($x, $y)) if $GRAB;
49 73
50 if (!$BUTTON_STATE) { 74 if (!$BUTTON_STATE) {
51 my $grab = $GRAB; undef $GRAB; 75 my $grab = $GRAB; undef $GRAB;
52 $grab->update if $grab; 76 $grab->update if $grab;
53 $GRAB->update if $GRAB; 77 $GRAB->update if $GRAB;
78
79 check_tooltip;
54 } 80 }
55} 81}
56 82
57sub feed_sdl_motion_event { 83sub feed_sdl_motion_event {
58 my ($ev) = @_; 84 my ($ev) = @_;
59 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 85 my ($x, $y) = ($ev->{x}, $ev->{y});
60 86
61 my $widget = $GRAB || $ROOT->find_widget ($x, $y); 87 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
62 88
63 if ($widget != $HOVER) { 89 if ($widget != $HOVER) {
64 my $hover = $HOVER; $HOVER = $widget; 90 my $hover = $HOVER; $HOVER = $widget;
65 91
66 $hover->update if $hover && $hover->{can_hover}; 92 $hover->update if $hover && $hover->{can_hover};
67 $HOVER->update if $HOVER && $HOVER->{can_hover}; 93 $HOVER->update if $HOVER && $HOVER->{can_hover};
94
95 check_tooltip;
68 } 96 }
69 97
70 $HOVER->mouse_motion ($ev, $HOVER->coord2local ($x, $y)) if $HOVER; 98 $HOVER->mouse_motion ($ev, $HOVER->coord2local ($x, $y)) if $HOVER;
71} 99}
72 100
87 115
88package CFClient::UI::Base; 116package CFClient::UI::Base;
89 117
90use strict; 118use strict;
91 119
92use SDL::OpenGL; 120use CFClient::OpenGL;
93 121
94sub new { 122sub new {
95 my $class = shift; 123 my $class = shift;
96 124
97 my $self = bless { 125 my $self = bless {
98 x => 0, 126 x => 0,
99 y => 0, 127 y => 0,
100 z => 0, 128 z => 0,
129 can_events => 1,
101 @_ 130 @_
102 }, $class; 131 }, $class;
103 132
104 for (keys %$self) { 133 for (keys %$self) {
105 if (/^connect_(.*)$/) { 134 if (/^connect_(.*)$/) {
140 0 169 0
141} 170}
142 171
143sub size_request { 172sub size_request {
144 require Carp; 173 require Carp;
145 Carp::confess "size_request is abtract"; 174 Carp::confess "size_request is abstract";
146} 175}
147 176
148sub configure { 177sub configure {
149 my ($self, $x, $y, $w, $h) = @_; 178 my ($self, $x, $y, $w, $h) = @_;
150 179
180 if ($self->{aspect}) {
181 my $w2 = List::Util::min $w, int $h * $self->{aspect};
182 my $h2 = List::Util::min $h, int $w / $self->{aspect};
183
184 # use alignment to adjust x, y
185
186 $x += int +($w - $w2) * 0.5;
187 $y += int +($h - $h2) * 0.5;
188
189 ($w, $h) = ($w2, $h2);
190 }
191
192 if ($self->{x} != $x || $self->{y} != $y) {
151 $self->{x} = $x; 193 $self->{x} = $x;
152 $self->{y} = $y; 194 $self->{y} = $y;
195 $self->update;
196 }
153 197
154 return unless $self->{w} != $w || $self->{h} != $h; 198 if ($self->{w} != $w || $self->{h} != $h) {
155
156 $self->{w} = $w; 199 $self->{w} = $w;
157 $self->{h} = $h; 200 $self->{h} = $h;
158 201
159 $self->size_allocate ($w, $h); 202 $self->size_allocate ($w, $h);
160 $self->update; 203 $self->update;
204 }
161} 205}
162 206
163sub size_allocate { 207sub size_allocate {
164 # nothing to be done 208 # nothing to be done
165} 209}
263} 307}
264 308
265sub find_widget { 309sub find_widget {
266 my ($self, $x, $y) = @_; 310 my ($self, $x, $y) = @_;
267 311
312 return () unless $self->{can_events};
313
268 return $self 314 return $self
269 if $x >= $self->{x} && $x < $self->{x} + $self->{w} 315 if $x >= $self->{x} && $x < $self->{x} + $self->{w}
270 && $y >= $self->{y} && $y < $self->{y} + $self->{h}; 316 && $y >= $self->{y} && $y < $self->{y} + $self->{h};
271 317
272 () 318 ()
279} 325}
280 326
281sub check_size { 327sub check_size {
282 my ($self) = @_; 328 my ($self) = @_;
283 329
330 return unless $self->{parent};
331
284 my ($w, $h) = $self->size_request; 332 my ($w, $h) = $self->size_request;
285 333
286 if ($w != $self->{req_w} || $h != $self->{req_h}) { 334 if ($w != $self->{req_w} || $h != $self->{req_h}) {
287 $self->{req_w} = $w; 335 $self->{req_w} = $w;
288 $self->{req_h} = $h; 336 $self->{req_h} = $h;
289 337
290 $self->{parent}->check_size 338 $self->{parent}->check_size;
291 if $self->{parent};
292 } 339 }
293} 340}
294 341
295sub update { 342sub update {
296 my ($self) = @_; 343 my ($self) = @_;
324package CFClient::UI::DrawBG; 371package CFClient::UI::DrawBG;
325 372
326our @ISA = CFClient::UI::Base::; 373our @ISA = CFClient::UI::Base::;
327 374
328use strict; 375use strict;
329use SDL::OpenGL; 376use CFClient::OpenGL;
330 377
331sub new { 378sub new {
332 my $class = shift; 379 my $class = shift;
333 380
334 # range [value, low, high, page] 381 # range [value, low, high, page]
363 410
364package CFClient::UI::Empty; 411package CFClient::UI::Empty;
365 412
366our @ISA = CFClient::UI::Base::; 413our @ISA = CFClient::UI::Base::;
367 414
415sub new {
416 my ($class, %arg) = @_;
417 $class->SUPER::new (can_events => 0, %arg);
418}
419
368sub size_request { 420sub size_request {
369 (0, 0) 421 (0, 0)
370} 422}
371 423
372sub draw { } 424sub draw { }
380sub new { 432sub new {
381 my ($class, %arg) = @_; 433 my ($class, %arg) = @_;
382 434
383 my $children = delete $arg{children} || []; 435 my $children = delete $arg{children} || [];
384 436
385 my $self = $class->SUPER::new (children => [], %arg); 437 my $self = $class->SUPER::new (children => [], can_events => 0, %arg);
386 $self->add ($_) for @$children; 438 $self->add ($_) for @$children;
387 439
388 $self 440 $self
389} 441}
390 442
409 delete $child->{parent}; 461 delete $child->{parent};
410 462
411 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ]; 463 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ];
412 464
413 $self->check_size; 465 $self->check_size;
466 $self->update;
414} 467}
415 468
416sub find_widget { 469sub find_widget {
417 my ($self, $x, $y) = @_; 470 my ($self, $x, $y) = @_;
418 471
482 535
483package CFClient::UI::Window; 536package CFClient::UI::Window;
484 537
485our @ISA = CFClient::UI::Bin::; 538our @ISA = CFClient::UI::Bin::;
486 539
487use SDL::OpenGL; 540use CFClient::OpenGL;
488 541
489sub new { 542sub new {
490 my ($class, %arg) = @_; 543 my ($class, %arg) = @_;
491 544
492 my $self = $class->SUPER::new (%arg); 545 my $self = $class->SUPER::new (%arg);
546sub new { die } 599sub new { die }
547 600
548sub size_request { 601sub size_request {
549 my ($self) = @_; 602 my ($self) = @_;
550 603
551 @$self{qw(child_w child_h)} = $self->child->size_request; 604 @$self{qw(child_w child_h)} = @{$self->child}{qw(req_w req_h)};
552 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)}); 605 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)});
553 606
554 @$self{qw(child_w child_h)} 607 @$self{qw(child_w child_h)}
555} 608}
556 609
565 618
566package CFClient::UI::Frame; 619package CFClient::UI::Frame;
567 620
568our @ISA = CFClient::UI::Bin::; 621our @ISA = CFClient::UI::Bin::;
569 622
570use SDL::OpenGL; 623use CFClient::OpenGL;
571
572sub size_request {
573 my ($self) = @_;
574 my $chld = $self->child
575 or return (0, 0);
576
577 $chld->move (2, 2);
578
579 map { $_ + 4 } $chld->size_request;
580}
581
582sub size_allocate {
583 my ($self, $x, $y, $w, $h) = @_;
584
585 $self->child->configure (2, 2, $w - 4, $h - 4);
586}
587
588sub _draw {
589 my ($self) = @_;
590
591 my $chld = $self->child;
592
593 my ($w, $h) = $chld->size_request;
594
595 glBegin GL_QUADS;
596 glColor 0, 0, 0;
597 glVertex 0 , 0;
598 glVertex 0 , $h + 4;
599 glVertex $w + 4 , $h + 4;
600 glVertex $w + 4 , 0;
601 glEnd;
602
603 $chld->draw;
604}
605
606#############################################################################
607
608package CFClient::UI::FancyFrame;
609
610our @ISA = CFClient::UI::Bin::;
611
612use SDL::OpenGL;
613
614my @tex =
615 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
616 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
617 624
618sub new { 625sub new {
619 my $class = shift; 626 my $class = shift;
620 627
621 # TODO: user_x, user_y, overwrite moveto?
622
623 $class->SUPER::new ( 628 my $self = $class->SUPER::new (
624 bg => [1, 1, 1, 1], 629 bg => [1, 1, 1, 1],
625 border_bg => [1, 1, 1, 1], 630 border_bg => [1, 1, 1, 1],
626 border => 0.8, 631 border => 0.8,
627 @_ 632 @_
628 ) 633 );
634
635 $self
636}
637
638sub set_size {
639 my ($self, $w, $h) = @_;
640 $self->{req_w} = $w;
641 $self->{req_h} = $h;
642 $self->check_size;
643}
644
645sub size_request {
646 my ($self) = @_;
647 ($self->{req_w}, $self->{req_h})
648}
649
650sub size_allocate {
651 my ($self, $w, $h) = @_;
652 $self->{w} = $w;
653 $self->{h} = $h;
654 $self->child->configure (0, 0, $w, $h);
655}
656
657sub _draw {
658 my ($self) = @_;
659
660 my ($w, $h) = ($self->{w}, $self->{h});
661
662 glEnable GL_BLEND;
663 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
664 glEnable GL_TEXTURE_2D;
665 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
666
667# glBegin GL_QUADS;
668# glColor 0, 0, 0, 0;
669# glVertex 0 , 0;
670# glVertex 0 , $h;
671# glVertex $w, $h;
672# glVertex $w, 0;
673# glEnd;
674
675
676 $self->child->draw;
677 glDisable GL_BLEND;
678 glDisable GL_TEXTURE_2D;
679}
680
681#############################################################################
682
683package CFClient::UI::FancyFrame;
684
685our @ISA = CFClient::UI::Bin::;
686
687use CFClient::OpenGL;
688
689my @tex =
690 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
691 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
692
693sub new {
694 my $class = shift;
695
696 # TODO: user_x, user_y, overwrite moveto?
697
698 my $self = $class->SUPER::new (
699 bg => [1, 1, 1, 1],
700 border_bg => [1, 1, 1, 1],
701 border => 0.8,
702 can_events => 1,
703 @_
704 );
705
706 $self->{title} &&= new CFClient::UI::Label
707 align => 0,
708 valign => 1,
709 text => $self->{title},
710 fontsize => 1;
711
712 $self
629} 713}
630 714
631sub border { 715sub border {
632 int $_[0]{border} * $::FONTSIZE 716 int $_[0]{border} * $::FONTSIZE
633} 717}
649 my ($self, $w, $h) = @_; 733 my ($self, $w, $h) = @_;
650 734
651 $h -= List::Util::max 0, $self->border * 2; 735 $h -= List::Util::max 0, $self->border * 2;
652 $w -= List::Util::max 0, $self->border * 2; 736 $w -= List::Util::max 0, $self->border * 2;
653 737
738 $self->{title}->configure ($self->border, $self->border - $::FONTSIZE * 2, $w, $::FONTSIZE * 2)
739 if $self->{title};
740
654 $self->child->configure ($self->border, $self->border, $w, $h); 741 $self->child->configure ($self->border, $self->border, $w, $h);
655} 742}
656 743
657sub button_down { 744sub button_down {
658 my ($self, $ev, $x, $y) = @_; 745 my ($self, $ev, $x, $y) = @_;
660 my $border = $self->border; 747 my $border = $self->border;
661 748
662 if ($x < $self->{w} && $x >= $self->{w} - $border 749 if ($x < $self->{w} && $x >= $self->{w} - $border
663 && $y < $self->{h} && $y >= $self->{h} - $border) { 750 && $y < $self->{h} && $y >= $self->{h} - $border) {
664 751
665 my ($ox, $oy) = ($ev->button_x, $ev->button_y); 752 my ($ox, $oy) = ($ev->{x}, $ev->{y});
666 my ($bw, $bh) = ($self->{w}, $self->{h}); 753 my ($bw, $bh) = ($self->{w}, $self->{h});
667 754
668 $self->{motion} = sub { 755 $self->{motion} = sub {
669 my ($ev, $x, $y) = @_; 756 my ($ev, $x, $y) = @_;
670 757
671 ($x, $y) = ($ev->motion_x, $ev->motion_y); 758 ($x, $y) = ($ev->{x}, $ev->{y});
672 759
673 $self->{user_w} = $bw + $x - $ox; 760 $self->{user_w} = $bw + $x - $ox;
674 $self->{user_h} = $bh + $y - $oy; 761 $self->{user_h} = $bh + $y - $oy;
675 $self->check_size; 762 $self->check_size;
676 }; 763 };
677 764
678 } elsif ($x >= 0 && $x < $self->{w} 765 } elsif ($x >= 0 && $x < $self->{w}
679 && $y >= 0 && $y < $border) { 766 && $y >= 0 && $y < $border) {
680 767
681 my ($ox, $oy) = ($ev->button_x, $ev->button_y); 768 my ($ox, $oy) = ($ev->{x}, $ev->{y});
682 my ($bx, $by) = ($self->{x}, $self->{y}); 769 my ($bx, $by) = ($self->{x}, $self->{y});
683 770
684 $self->{motion} = sub { 771 $self->{motion} = sub {
685 my ($ev, $x, $y) = @_; 772 my ($ev, $x, $y) = @_;
686 773
687 ($x, $y) = ($ev->motion_x, $ev->motion_y); 774 ($x, $y) = ($ev->{x}, $ev->{y});
688 775
689 $self->move ($bx + $x - $ox, $by + $y - $oy); 776 $self->move ($bx + $x - $ox, $by + $y - $oy);
690 $self->update; 777 $self->update;
691 }; 778 };
692 } 779 }
737 $bg->draw_quad ($border, $border, $cw, $ch); 824 $bg->draw_quad ($border, $border, $cw, $ch);
738 825
739 glDisable GL_TEXTURE_2D; 826 glDisable GL_TEXTURE_2D;
740 glDisable GL_BLEND; 827 glDisable GL_BLEND;
741 828
829 $self->{title}->draw if $self->{title};
742 $self->child->draw; 830 $self->child->draw;
743} 831}
744 832
745############################################################################# 833#############################################################################
746 834
748 836
749our @ISA = CFClient::UI::Base::; 837our @ISA = CFClient::UI::Base::;
750 838
751use List::Util qw(max sum); 839use List::Util qw(max sum);
752 840
753use SDL::OpenGL; 841use CFClient::OpenGL;
754 842
755sub new { 843sub new {
756 my $class = shift; 844 my $class = shift;
757 845
758 $class->SUPER::new ( 846 $class->SUPER::new (
788 or next; 876 or next;
789 877
790 for my $x (0 .. $#$row) { 878 for my $x (0 .. $#$row) {
791 my $widget = $row->[$x] 879 my $widget = $row->[$x]
792 or next; 880 or next;
793 my ($w, $h) = $widget->size_request; 881 my ($w, $h) = @$widget{qw(req_w req_h)};
794 882
795 $w[$x] = max $w[$x], $w; 883 $w[$x] = max $w[$x], $w;
796 $h[$y] = max $h[$y], $h; 884 $h[$y] = max $h[$y], $h;
797 } 885 }
798 } 886 }
903 991
904 ($h, $w) = ($w, $h); 992 ($h, $w) = ($w, $h);
905 993
906 my $children = $self->{children}; 994 my $children = $self->{children};
907 995
908 my @h = map +($_->size_request)[0], @$children; 996 my @h = map $_->{req_w}, @$children;
909 997
910 my $req_h = List::Util::sum @h; 998 my $req_h = List::Util::sum @h;
911 999
912 if ($req_h > $h) { 1000 if ($req_h > $h) {
913 # ah well, not enough space 1001 # ah well, not enough space
961sub size_allocate { 1049sub size_allocate {
962 my ($self, $w, $h) = @_; 1050 my ($self, $w, $h) = @_;
963 1051
964 my $children = $self->{children}; 1052 my $children = $self->{children};
965 1053
966 my @h = map +($_->size_request)[1], @$children; 1054 my @h = map $_->{req_h}, @$children;
967 1055
968 my $req_h = List::Util::sum @h; 1056 my $req_h = List::Util::sum @h;
969 1057
970 if ($req_h > $h) { 1058 if ($req_h > $h) {
971 # ah well, not enough space 1059 # ah well, not enough space
999 1087
1000package CFClient::UI::Label; 1088package CFClient::UI::Label;
1001 1089
1002our @ISA = CFClient::UI::Base::; 1090our @ISA = CFClient::UI::Base::;
1003 1091
1004use SDL::OpenGL; 1092use CFClient::OpenGL;
1005 1093
1006sub new { 1094sub new {
1007 my ($class, %arg) = @_; 1095 my ($class, %arg) = @_;
1008 1096
1009 my $self = $class->SUPER::new ( 1097 my $self = $class->SUPER::new (
1012 text => "", 1100 text => "",
1013 align => -1, 1101 align => -1,
1014 valign => -1, 1102 valign => -1,
1015 padding => 2, 1103 padding => 2,
1016 layout => new CFClient::Layout, 1104 layout => new CFClient::Layout,
1105 can_events => 0,
1017 %arg 1106 %arg
1018 ); 1107 );
1019 1108
1020 $self->{xxx}++ if $self->{text} eq "Client Setup" && $self->{align};#d# 1109 if (exists $self->{template}) {
1110 my $layout = new CFClient::Layout;
1111 $layout->set_text (delete $self->{template});
1112 $self->{template} = $layout;
1113 }
1021 1114
1022 $self->set_text (delete $self->{text}) if exists $self->{text}; 1115 $self->set_text (delete $self->{text}) if exists $self->{text};
1023 $self->set_markup (delete $self->{markup}) if exists $self->{markup}; 1116 $self->set_markup (delete $self->{markup}) if exists $self->{markup};
1024 1117
1025 $self 1118 $self
1039 my ($self, $text) = @_; 1132 my ($self, $text) = @_;
1040 1133
1041 $self->{layout}->set_text ($text); 1134 $self->{layout}->set_text ($text);
1042 1135
1043 delete $self->{texture}; 1136 delete $self->{texture};
1137 $self->check_size;
1044 $self->update; 1138 $self->update;
1045} 1139}
1046 1140
1047sub set_markup { 1141sub set_markup {
1048 my ($self, $markup) = @_; 1142 my ($self, $markup) = @_;
1049 1143
1050 $self->{layout}->set_markup ($markup); 1144 $self->{layout}->set_markup ($markup);
1051 1145
1052 delete $self->{texture}; 1146 delete $self->{texture};
1147 $self->check_size;
1053 $self->update; 1148 $self->update;
1054} 1149}
1055 1150
1056sub size_request { 1151sub size_request {
1057 my ($self) = @_; 1152 my ($self) = @_;
1058 1153
1059 $self->{layout}->set_width; 1154 $self->{layout}->set_width;
1060 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE); 1155 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1061 1156
1062 my ($w, $h) = $self->{layout}->size; 1157 my ($w, $h) = $self->{layout}->size;
1158
1159 if (exists $self->{template}) {
1160 $self->{template}->set_height ($self->{fontsize} * $::FONTSIZE);
1161
1162 my ($w2, $h2) = $self->{template}->size;
1163
1164 $w = List::Util::max $w, $w2;
1165 $h = List::Util::max $h, $h2;
1166 }
1063 1167
1064 ( 1168 (
1065 $w + $self->{padding} * 2, 1169 $w + $self->{padding} * 2,
1066 $h + $self->{padding} * 2, 1170 $h + $self->{padding} * 2,
1067 ) 1171 )
1069 1173
1070sub size_allocate { 1174sub size_allocate {
1071 my ($self, $w, $h) = @_; 1175 my ($self, $w, $h) = @_;
1072 1176
1073 delete $self->{texture}; 1177 delete $self->{texture};
1178}
1179
1180sub set_fontsize {
1181 my ($self, $fontsize) = @_;
1182
1183 $self->{fontsize} = $fontsize;
1184 delete $self->{texture};
1185 $self->check_size;
1186 $self->update;
1074} 1187}
1075 1188
1076sub _draw { 1189sub _draw {
1077 my ($self) = @_; 1190 my ($self) = @_;
1078 1191
1111 1224
1112package CFClient::UI::EntryBase; 1225package CFClient::UI::EntryBase;
1113 1226
1114our @ISA = CFClient::UI::Label::; 1227our @ISA = CFClient::UI::Label::;
1115 1228
1116use SDL::OpenGL; 1229use CFClient::OpenGL;
1117 1230
1118sub new { 1231sub new {
1119 my $class = shift; 1232 my $class = shift;
1120 1233
1121 $class->SUPER::new ( 1234 $class->SUPER::new (
1124 active_bg => [1, 1, 1, 0.5], 1237 active_bg => [1, 1, 1, 0.5],
1125 active_fg => [0, 0, 0], 1238 active_fg => [0, 0, 0],
1126 can_hover => 1, 1239 can_hover => 1,
1127 can_focus => 1, 1240 can_focus => 1,
1128 valign => 0, 1241 valign => 0,
1242 can_events => 1,
1129 @_ 1243 @_
1130 ) 1244 )
1131} 1245}
1132 1246
1133sub _set_text { 1247sub _set_text {
1161} 1275}
1162 1276
1163sub size_allocate { 1277sub size_allocate {
1164 my ($self, $w, $h) = @_; 1278 my ($self, $w, $h) = @_;
1165 1279
1166 $self->_set_text ($self->{text}); 1280 $self->_set_text (delete $self->{text});#d# don't check for == inside _set_text
1167} 1281}
1168 1282
1169sub set_text { 1283sub set_text {
1170 my ($self, $text) = @_; 1284 my ($self, $text) = @_;
1171 1285
1175} 1289}
1176 1290
1177sub key_down { 1291sub key_down {
1178 my ($self, $ev) = @_; 1292 my ($self, $ev) = @_;
1179 1293
1180 my $mod = $ev->key_mod; 1294 my $mod = $ev->{mod};
1181 my $sym = $ev->key_sym; 1295 my $sym = $ev->{sym};
1182
1183 my $uni = $ev->key_unicode; 1296 my $uni = $ev->{unicode};
1184 1297
1185 my $text = $self->get_text; 1298 my $text = $self->get_text;
1186 1299
1187 if ($sym == 8) { 1300 if ($sym == 8) {
1188 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1301 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1279 1392
1280package CFClient::UI::Entry; 1393package CFClient::UI::Entry;
1281 1394
1282our @ISA = CFClient::UI::EntryBase::; 1395our @ISA = CFClient::UI::EntryBase::;
1283 1396
1284use SDL::OpenGL; 1397use CFClient::OpenGL;
1285 1398
1286sub key_down { 1399sub key_down {
1287 my ($self, $ev) = @_; 1400 my ($self, $ev) = @_;
1288 1401
1289 my $sym = $ev->key_sym; 1402 my $sym = $ev->{sym};
1290 1403
1291 if ($sym == 13) { 1404 if ($sym == 13) {
1292 $self->emit (activate => $self->get_text); 1405 $self->emit (activate => $self->get_text);
1293 $self->update; 1406 $self->update;
1294 1407
1302 1415
1303package CFClient::UI::Button; 1416package CFClient::UI::Button;
1304 1417
1305our @ISA = CFClient::UI::Label::; 1418our @ISA = CFClient::UI::Label::;
1306 1419
1307use SDL::OpenGL; 1420use CFClient::OpenGL;
1308 1421
1309my @tex = 1422my @tex =
1310 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1423 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1311 qw(b1_button_active.png); 1424 qw(b1_button_active.png);
1312 1425
1313sub new { 1426sub new {
1314 my $class = shift; 1427 my $class = shift;
1315 1428
1319 bg => [1, 1, 1, 0.2], 1432 bg => [1, 1, 1, 0.2],
1320 active_fg => [0, 0, 1], 1433 active_fg => [0, 0, 1],
1321 can_hover => 1, 1434 can_hover => 1,
1322 align => 0, 1435 align => 0,
1323 valign => 0, 1436 valign => 0,
1437 can_events => 1,
1324 @_ 1438 @_
1325 ) 1439 )
1326} 1440}
1327 1441
1328sub button_up { 1442sub button_up {
1362package CFClient::UI::CheckBox; 1476package CFClient::UI::CheckBox;
1363 1477
1364our @ISA = CFClient::UI::DrawBG::; 1478our @ISA = CFClient::UI::DrawBG::;
1365 1479
1366my @tex = 1480my @tex =
1367 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1481 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1368 qw(c1_checkbox_bg.png c1_checkbox_active.png); 1482 qw(c1_checkbox_bg.png c1_checkbox_active.png);
1369 1483
1370use SDL::OpenGL; 1484use CFClient::OpenGL;
1371 1485
1372sub new { 1486sub new {
1373 my $class = shift; 1487 my $class = shift;
1374 1488
1375 $class->SUPER::new ( 1489 $class->SUPER::new (
1421 glDisable GL_BLEND; 1535 glDisable GL_BLEND;
1422} 1536}
1423 1537
1424############################################################################# 1538#############################################################################
1425 1539
1426package CFClient::UI::VGauge; 1540package CFClient::UI::Image;
1427 1541
1428our @ISA = CFClient::UI::Base::; 1542our @ISA = CFClient::UI::Base::;
1429 1543
1430use SDL::OpenGL; 1544use CFClient::OpenGL;
1545use Carp qw/confess/;
1431 1546
1432my %tex = ( 1547our %loaded_images;
1433 food => [
1434 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1435 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1436 ],
1437 grace => [
1438 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1439 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png/
1440 ],
1441 hp => [
1442 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1443 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1444 ],
1445 mana => [
1446 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1447 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png/
1448 ],
1449);
1450 1548
1451# eg. VGauge->new (gauge => 'food'), default gauge: food
1452sub new { 1549sub new {
1453 my $class = shift; 1550 my $class = shift;
1454 1551
1455 my $self = $class->SUPER::new (gauge => 'food', @_); 1552 my $self = $class->SUPER::new (can_events => 0, @_);
1553
1554 $self->{image} or confess "Image has 'image' not set. This is a fatal error!";
1555
1556 $loaded_images{$self->{image}} ||=
1557 new_from_file CFClient::Texture CFClient::find_rcfile $self->{image}, mipmap => 1;
1558
1559 my $tex = $self->{tex} = $loaded_images{$self->{image}};
1560
1561 Scalar::Util::weaken $loaded_images{$self->{image}};
1562
1563 $self->{aspect} = $tex->{w} / $tex->{h};
1456 1564
1457 $self 1565 $self
1458} 1566}
1459 1567
1460sub size_request { 1568sub size_request {
1461 my ($self) = @_; 1569 my ($self) = @_;
1462 1570
1463 my $tex = $tex{$self->{gauge}}[0]; 1571 ($self->{tex}->{w}, $self->{tex}->{h})
1464
1465 @$tex{qw(w h)}
1466}
1467
1468sub set_max {
1469 my ($self, $max) = @_;
1470
1471 $self->{max_val} = $max;
1472}
1473
1474sub set_value {
1475 my ($self, $val, $max) = @_;
1476
1477 $self->set_max ($max)
1478 if defined $max;
1479
1480 $max = $self->{max_val};
1481 $self->{val} = $val;
1482
1483 $self->update;
1484} 1572}
1485 1573
1486sub _draw { 1574sub _draw {
1487 my ($self) = @_; 1575 my ($self) = @_;
1488 1576
1489 my $tex = $tex{$self->{gauge}}; 1577 my $tex = $self->{tex};
1490 1578
1491 my ($w, $h) = ($self->{w}, $self->{h}); 1579 my ($w, $h) = ($self->{w}, $self->{h});
1492 1580
1493 my $ycut = $self->{val} / ($self->{max_val} || 1); 1581 if ($self->{rot90}) {
1494 $ycut = 1 if $self->{val} > $self->{max_val}; 1582 glRotate 90, 0, 0, 1;
1583 glTranslate 0, -$self->{w}, 0;
1495 1584
1496 my $t1 = $tex->[0]; 1585 ($w, $h) = ($h, $w);
1497 my $t2 = $tex->[1]; 1586 }
1498 1587
1499 glEnable GL_BLEND; 1588 glEnable GL_BLEND;
1500 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 1589 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1501 glEnable GL_TEXTURE_2D; 1590 glEnable GL_TEXTURE_2D;
1502 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1591 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1503 1592
1593 $tex->draw_quad (0, 0, $w, $h);
1594
1595 glDisable GL_BLEND;
1596 glDisable GL_TEXTURE_2D;
1597}
1598
1599#############################################################################
1600
1601package CFClient::UI::VGauge;
1602
1603our @ISA = CFClient::UI::Base::;
1604
1605use CFClient::OpenGL;
1606
1607my %tex = (
1608 food => [
1609 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1610 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1611 ],
1612 grace => [
1613 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1614 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png/
1615 ],
1616 hp => [
1617 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1618 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1619 ],
1620 mana => [
1621 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1622 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png/
1623 ],
1624);
1625
1626# eg. VGauge->new (gauge => 'food'), default gauge: food
1627sub new {
1628 my $class = shift;
1629
1630 my $self = $class->SUPER::new (
1631 type => 'food',
1632 @_
1633 );
1634
1635 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
1636
1637 $self
1638}
1639
1640sub size_request {
1641 my ($self) = @_;
1642
1643 #my $tex = $tex{$self->{type}}[0];
1644 #@$tex{qw(w h)}
1645 (0, 0)
1646}
1647
1648sub set_max {
1649 my ($self, $max) = @_;
1650
1651 $self->{max_val} = $max;
1652}
1653
1654sub set_value {
1655 my ($self, $val, $max) = @_;
1656
1657 $self->set_max ($max)
1658 if defined $max;
1659
1660 $max = $self->{max_val};
1661 $self->{val} = $val;
1662
1663 $self->update;
1664}
1665
1666sub _draw {
1667 my ($self) = @_;
1668
1669 my $tex = $tex{$self->{type}};
1670
1671 my ($w, $h) = ($self->{w}, $self->{h});
1672
1673 if ($self->{vertical}) {
1674 glRotate 90, 0, 0, 1;
1675 glTranslate 0, -$self->{w}, 0;
1676
1677 ($w, $h) = ($h, $w);
1678 }
1679
1680 my $ycut = $self->{val} / ($self->{max_val} || 1);
1681 $ycut = 1 if $self->{val} > $self->{max_val};
1682
1683 my $t1 = $tex->[0];
1684 my $t2 = $tex->[1];
1685
1686 glEnable GL_BLEND;
1687 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1688 glEnable GL_TEXTURE_2D;
1689 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1690
1504 my $h1 = $self->{h} - $ycut * $self->{h}; 1691 my $h1 = $self->{h} - $ycut * $self->{h};
1505 my $h2 = $ycut * $self->{h}; 1692 my $h2 = $ycut * $self->{h};
1506 1693
1507 my $yp = 0;
1508
1509 glBindTexture GL_TEXTURE_2D, $t1->{name}; 1694 glBindTexture GL_TEXTURE_2D, $t1->{name};
1510 glBegin GL_QUADS; 1695 glBegin GL_QUADS;
1511 glTexCoord 0 , 0; glVertex 0 , $yp; 1696 glTexCoord 0 , 0; glVertex 0 , 0;
1512 glTexCoord 0 , $t1->{t} * (1 - $ycut); glVertex 0 , $yp + $h1; 1697 glTexCoord 0 , $t1->{t} * (1 - $ycut); glVertex 0 , $h1;
1513 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut); glVertex 0 + $w, $yp + $h1; 1698 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut); glVertex $w, $h1;
1514 glTexCoord $t1->{s}, 0; glVertex 0 + $w, $yp; 1699 glTexCoord $t1->{s}, 0; glVertex $w, 0;
1515 glEnd; 1700 glEnd;
1516
1517 $yp += $h1;
1518 1701
1519 glBindTexture GL_TEXTURE_2D, $t2->{name}; 1702 glBindTexture GL_TEXTURE_2D, $t2->{name};
1520 glBegin GL_QUADS; 1703 glBegin GL_QUADS;
1521 glTexCoord 0 , $t2->{t} * (1 - $ycut); glVertex 0 , $yp; 1704 glTexCoord 0 , $t2->{t} * (1 - $ycut); glVertex 0 , $h1;
1522 glTexCoord 0 , $t2->{t}; glVertex 0 , $yp + $h2; 1705 glTexCoord 0 , $t2->{t}; glVertex 0 , $h1 + $h2;
1523 glTexCoord $t2->{s}, $t2->{t}; glVertex 0 + $w, $yp + $h2; 1706 glTexCoord $t2->{s}, $t2->{t}; glVertex $w, $h1 + $h2;
1524 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut); glVertex 0 + $w, $yp; 1707 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut); glVertex $w, $h1;
1525 glEnd; 1708 glEnd;
1526 1709
1527 glDisable GL_BLEND; 1710 glDisable GL_BLEND;
1528 glDisable GL_TEXTURE_2D; 1711 glDisable GL_TEXTURE_2D;
1529} 1712}
1530 1713
1531############################################################################# 1714#############################################################################
1532 1715
1716package CFClient::UI::Gauge;
1717
1718our @ISA = CFClient::UI::VBox::;
1719
1720sub new {
1721 my ($class, %arg) = @_;
1722
1723 my $self = $class->SUPER::new (
1724 tooltip => $arg{type},
1725 %arg,
1726 );
1727
1728 $self->add ($self->{value} = new CFClient::UI::Label valign => +1, align => 0, template => "999");
1729 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1);
1730 $self->add ($self->{max} = new CFClient::UI::Label valign => -1, align => 0, template => "999");
1731
1732 $self
1733}
1734
1735sub set_fontsize {
1736 my ($self, $fsize) = @_;
1737
1738 $self->{value}->set_fontsize ($fsize);
1739 $self->{max} ->set_fontsize ($fsize);
1740}
1741
1742sub set_value {
1743 my ($self, $val, $max) = @_;
1744
1745 $self->set_max ($max)
1746 if defined $max;
1747
1748 $self->{gauge}->set_value ($val, $max);
1749 $self->{value}->set_text ($val);
1750}
1751
1752sub set_max {
1753 my ($self, $max) = @_;
1754
1755 $self->{gauge}->set_max ($max);
1756 $self->{max}->set_text ($max);
1757}
1758
1759#############################################################################
1760
1533package CFClient::UI::Slider; 1761package CFClient::UI::Slider;
1534 1762
1535use strict; 1763use strict;
1536 1764
1537use SDL::OpenGL; 1765use CFClient::OpenGL;
1538 1766
1539our @ISA = CFClient::UI::DrawBG::; 1767our @ISA = CFClient::UI::DrawBG::;
1540 1768
1541my @tex = 1769my @tex =
1542 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1770 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1667 1895
1668package CFClient::UI::TextView; 1896package CFClient::UI::TextView;
1669 1897
1670our @ISA = CFClient::UI::HBox::; 1898our @ISA = CFClient::UI::HBox::;
1671 1899
1672use SDL::OpenGL; 1900use CFClient::OpenGL;
1673 1901
1674sub new { 1902sub new {
1675 my $class = shift; 1903 my $class = shift;
1676 1904
1677 my $self = $class->SUPER::new ( 1905 my $self = $class->SUPER::new (
1823 2051
1824############################################################################# 2052#############################################################################
1825 2053
1826package CFClient::UI::Animator; 2054package CFClient::UI::Animator;
1827 2055
1828use SDL::OpenGL; 2056use CFClient::OpenGL;
1829 2057
1830our @ISA = CFClient::UI::Bin::; 2058our @ISA = CFClient::UI::Bin::;
1831 2059
1832sub moveto { 2060sub moveto {
1833 my ($self, $x, $y) = @_; 2061 my ($self, $x, $y) = @_;
1873 my $class = shift; 2101 my $class = shift;
1874 2102
1875 my $self = $class->SUPER::new ( 2103 my $self = $class->SUPER::new (
1876 state => 0, 2104 state => 0,
1877 connect_activate => \&toggle_flopper, 2105 connect_activate => \&toggle_flopper,
2106 can_events => 1,
1878 @_ 2107 @_
1879 ); 2108 );
1880 2109
1881 if ($self->{state}) { 2110 if ($self->{state}) {
1882 $self->{state} = 0; 2111 $self->{state} = 0;
1902 $self->emit (changed => $self->{state}); 2131 $self->emit (changed => $self->{state});
1903} 2132}
1904 2133
1905############################################################################# 2134#############################################################################
1906 2135
2136package CFClient::UI::Tooltip;
2137
2138our @ISA = CFClient::UI::Bin::;
2139
2140use CFClient::OpenGL;
2141
2142sub new {
2143 my $class = shift;
2144
2145 $class->SUPER::new (
2146 @_,
2147 can_events => 0,
2148 )
2149}
2150
2151sub set_text {
2152 my ($self, $text) = @_;
2153
2154 $self->{label} ||= new CFClient::UI::Label fontsize => 0.8, fg => [0, 0, 0];
2155 $self->{label}->set_text ($text);
2156 $self->add ($self->{label});
2157}
2158
2159sub size_request {
2160 my ($self) = @_;
2161
2162 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
2163
2164 $w = List::Util::min $::WIDTH * 0.2, $w;
2165 $h = List::Util::max $::HEIGHT * 0.2, $h;
2166
2167 ($w + 4, $h + 4)
2168}
2169
2170sub _draw {
2171 my ($self) = @_;
2172
2173 glPushMatrix;
2174 glTranslate 0.375, 0.375;
2175
2176 my ($w, $h) = @$self{qw(w h)};
2177
2178 glColor 1, 0.8, 0.4;
2179 glBegin GL_QUADS;
2180 glVertex 0 , 0;
2181 glVertex 0 , $h;
2182 glVertex $w, $h;
2183 glVertex $w, 0;
2184 glEnd;
2185
2186 glColor 0, 0, 0;
2187 glBegin GL_LINE_LOOP;
2188 glVertex 0 , 0;
2189 glVertex 0 , $h;
2190 glVertex $w, $h;
2191 glVertex $w, 0;
2192 glEnd;
2193
2194 glPopMatrix;
2195
2196 glTranslate 2, 2;
2197 $self->SUPER::_draw;
2198}
2199
2200#############################################################################
2201
1907package CFClient::UI::Root; 2202package CFClient::UI::Root;
1908 2203
1909our @ISA = CFClient::UI::Container::; 2204our @ISA = CFClient::UI::Container::;
1910 2205
1911use SDL::OpenGL; 2206use CFClient::OpenGL;
1912 2207
1913sub check_size { 2208sub check_size {
1914 my ($self) = @_; 2209 my ($self) = @_;
1915 2210
1916 $self->configure (0, 0, $::WITH, $::HEIGHT); 2211 $self->configure (0, 0, $::WIDTH, $::HEIGHT);
1917} 2212}
1918 2213
1919sub size_request { 2214sub size_request {
1920 ($::WIDTH, $::HEIGHT) 2215 ($::WIDTH, $::HEIGHT)
1921} 2216}
1923sub configure { 2218sub configure {
1924 my ($self, $x, $y, $w, $h) = @_; 2219 my ($self, $x, $y, $w, $h) = @_;
1925 2220
1926 $self->SUPER::configure ($x, $y, $w, $h); 2221 $self->SUPER::configure ($x, $y, $w, $h);
1927 2222
1928 $_->configure ($_->{x}, $_->{y}, $_->size_request)
1929 for @{$self->{children}}; 2223 for my $child (@{$self->{children}}) {
2224 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2225
2226 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2227 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2228 $child->configure ($X, $Y, $W,$H);
2229 }
1930} 2230}
1931 2231
1932sub _topleft { 2232sub _topleft {
1933 my ($self, $x, $y) = @_; 2233 my ($self, $x, $y) = @_;
1934 2234
1942 ::refresh (); 2242 ::refresh ();
1943} 2243}
1944 2244
1945sub add { 2245sub add {
1946 my ($self, $child) = @_; 2246 my ($self, $child) = @_;
2247
2248 # integerize window positions
2249 $child->{x} = int $child->{x};
2250 $child->{y} = int $child->{y};
1947 2251
1948 $self->SUPER::add ($child); 2252 $self->SUPER::add ($child);
1949} 2253}
1950 2254
1951sub on_refresh { 2255sub on_refresh {
1977############################################################################# 2281#############################################################################
1978 2282
1979package CFClient::UI; 2283package CFClient::UI;
1980 2284
1981$ROOT = new CFClient::UI::Root; 2285$ROOT = new CFClient::UI::Root;
2286$TOOLTIP = new CFClient::UI::Tooltip;
1982 2287
19831 22881
1984 2289

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines