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.194 by root, Thu May 11 23:41:47 2006 UTC vs.
Revision 1.208 by root, Mon May 15 22:52:17 2006 UTC

11our ($FOCUS, $HOVER, $GRAB); # various widgets 11our ($FOCUS, $HOVER, $GRAB); # various widgets
12 12
13our $ROOT; 13our $ROOT;
14our $TOOLTIP; 14our $TOOLTIP;
15our $BUTTON_STATE; 15our $BUTTON_STATE;
16
17our %WIDGET; # all widgets, weak-referenced
16 18
17sub check_tooltip { 19sub check_tooltip {
18 if (!$GRAB) { 20 if (!$GRAB) {
19 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) { 21 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) {
20 if (length $widget->{tooltip}) { 22 if (length $widget->{tooltip}) {
24 26
25 my $tip = $widget->{tooltip}; 27 my $tip = $widget->{tooltip};
26 28
27 $tip = $tip->($widget) if CODE:: eq ref $tip; 29 $tip = $tip->($widget) if CODE:: eq ref $tip;
28 30
29 $TOOLTIP->set_markup ($widget->{tooltip}); 31 $TOOLTIP->set_tooltip_from ($widget);
30
31 $TOOLTIP->show; 32 $TOOLTIP->show;
32 33
33 my ($x, $y) = $widget->coord2global ($widget->{w}, 0); 34 my ($x, $y) = $widget->coord2global ($widget->{w}, 0);
34 35
35 if ($x + $TOOLTIP->{w} > $::WIDTH) {
36 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0); 36 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0)
37 } 37 if $x + $TOOLTIP->{w} > $::WIDTH;
38 38
39 $TOOLTIP->move ($x, $y); 39 $TOOLTIP->move ($x, $y);
40 $TOOLTIP->check_size;
41 $TOOLTIP->update;
40 } 42 }
41 43
42 return; 44 return;
43 } 45 }
44 } 46 }
131 133
132 for (@$vals) { 134 for (@$vals) {
133 my $i = int $_ + $rem; 135 my $i = int $_ + $rem;
134 $rem += $_ - $i; 136 $rem += $_ - $i;
135 $_ = $i; 137 $_ = $i;
138 }
139}
140
141# call when resolution changes etc.
142sub rescale_widgets {
143 my ($sx, $sy) = @_;
144
145 for my $widget (values %WIDGET) {
146 if ($widget->{toplevel}) {
147 $widget->{x} = int 0.5 + $widget->{x} * $sx if exists $widget->{x};
148 $widget->{w} = int 0.5 + $widget->{w} * $sx if exists $widget->{w};
149 $widget->{req_w} = int 0.5 + $widget->{req_w} * $sx if exists $widget->{req_w};
150 $widget->{user_w} = int 0.5 + $widget->{user_w} * $sx if exists $widget->{user_w};
151 $widget->{y} = int 0.5 + $widget->{y} * $sy if exists $widget->{y};
152 $widget->{h} = int 0.5 + $widget->{h} * $sy if exists $widget->{h};
153 $widget->{req_h} = int 0.5 + $widget->{req_h} * $sy if exists $widget->{req_h};
154 $widget->{user_h} = int 0.5 + $widget->{user_h} * $sy if exists $widget->{user_h};
155 }
156
157 $widget->reconfigure;
136 } 158 }
137} 159}
138 160
139############################################################################# 161#############################################################################
140 162
159 if (/^connect_(.*)$/) { 181 if (/^connect_(.*)$/) {
160 $self->connect ($1 => delete $self->{$_}); 182 $self->connect ($1 => delete $self->{$_});
161 } 183 }
162 } 184 }
163 185
186 Scalar::Util::weaken ($CFClient::UI::WIDGET{$self+0} = $self);
187
164 $self 188 $self
165} 189}
166 190
167sub destroy { 191sub destroy {
168 my ($self) = @_; 192 my ($self) = @_;
241 265
242sub size_allocate { 266sub size_allocate {
243 # nothing to be done 267 # nothing to be done
244} 268}
245 269
270sub reconfigure {
271 my ($self) = @_;
272
273 $self->check_size (1);
274 $self->update;
275}
276
246sub children { 277sub children {
247}
248
249# call when resolution changes etc.
250sub reconfigure {
251 my ($self) = @_;
252
253 $_->reconfigure
254 for $self->children;
255
256 $self->check_size;
257 $CFClient::UI::ROOT->{size_alloc}{$self} = [$self, $self->{w}, $self->{h}];
258 $self->update;
259} 278}
260 279
261sub set_max_size { 280sub set_max_size {
262 my ($self, $w, $h) = @_; 281 my ($self, $w, $h) = @_;
263 282
356 glVertex $self->{w}, 0; 375 glVertex $self->{w}, 0;
357 glVertex $self->{w}, $self->{h}; 376 glVertex $self->{w}, $self->{h};
358 glVertex 0 , $self->{h}; 377 glVertex 0 , $self->{h};
359 glEnd; 378 glEnd;
360 glPopMatrix; 379 glPopMatrix;
361 CFClient::UI::Label->new (w => $self->{w}, h => $self->{h}, text => $self, fontsize => 0)->_draw; 380 #CFClient::UI::Label->new (w => $self->{w}, h => $self->{h}, text => $self, fontsize => 0)->_draw;
362 } 381 }
363} 382}
364 383
365sub _draw { 384sub _draw {
366 my ($self) = @_; 385 my ($self) = @_;
383sub set_parent { 402sub set_parent {
384 my ($self, $parent) = @_; 403 my ($self, $parent) = @_;
385 404
386 Scalar::Util::weaken ($self->{parent} = $parent); 405 Scalar::Util::weaken ($self->{parent} = $parent);
387 406
407 # TODO: req_w _does_change after ->reconfigure
388 $self->check_size 408 $self->check_size
389 unless exists $self->{req_w}; 409 unless exists $self->{req_w};
390} 410}
391 411
392sub check_size { 412sub check_size {
393 my ($self) = @_; 413 my ($self, $forced) = @_;
394 414
415 $self->{force_alloc} = 1 if $forced;
395 $CFClient::UI::ROOT->{check_size}{$self} = $self; 416 $CFClient::UI::ROOT->{check_size}{$self} = $self;
396} 417}
397 418
398sub update { 419sub update {
399 my ($self) = @_; 420 my ($self) = @_;
415} 436}
416 437
417sub DESTROY { 438sub DESTROY {
418 my ($self) = @_; 439 my ($self) = @_;
419 440
441 delete $WIDGET{$self+0};
420 #$self->deactivate; 442 #$self->deactivate;
421} 443}
422 444
423############################################################################# 445#############################################################################
424 446
509 $self->{children} = [ 531 $self->{children} = [
510 sort { $a->{z} <=> $b->{z} } 532 sort { $a->{z} <=> $b->{z} }
511 @{$self->{children}}, @widgets 533 @{$self->{children}}, @widgets
512 ]; 534 ];
513 535
514 $self->check_size; 536 $self->check_size (1);
515 $self->update; 537 $self->update;
516} 538}
517 539
518sub children { 540sub children {
519 @{ $_[0]{children} } 541 @{ $_[0]{children} }
626} 648}
627 649
628sub update { 650sub update {
629 my ($self) = @_; 651 my ($self) = @_;
630 652
631 $ROOT->on_refresh ($self => sub { $self->render_child }); 653 $ROOT->on_post_alloc ($self => sub { $self->render_child });
632 $self->SUPER::update; 654 $self->SUPER::update;
633} 655}
634 656
635sub size_allocate { 657sub size_allocate {
636 my ($self, $w, $h) = @_; 658 my ($self, $w, $h) = @_;
774 $self->add ($self->{slider}); 796 $self->add ($self->{slider});
775 797
776 $self 798 $self
777} 799}
778 800
779#TODO# update range on size_allocate depeneing on child 801#TODO# update range on size_allocate depending on child
780# update viewport offset on scroll 802# update viewport offset on scroll
781 803
782############################################################################# 804#############################################################################
783 805
784package CFClient::UI::Frame; 806package CFClient::UI::Frame;
788use CFClient::OpenGL; 810use CFClient::OpenGL;
789 811
790sub new { 812sub new {
791 my $class = shift; 813 my $class = shift;
792 814
793 my $self = $class->SUPER::new ( 815 $class->SUPER::new (
794 bg => [1, 1, 1, 1], 816 bg => undef,
795 border_bg => [1, 1, 1, 1],
796 border => 0.8,
797 @_ 817 @_,
798 ); 818 )
799
800 $self
801} 819}
802 820
803sub _draw { 821sub _draw {
804 my ($self) = @_; 822 my ($self) = @_;
805 823
806 my ($w, $h) = ($self->{w}, $self->{h}); 824 if ($self->{bg}) {
825 my ($w, $h) = @$self{qw(w h)};
807 826
808 glEnable GL_BLEND; 827 glEnable GL_BLEND;
809 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 828 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
810 glEnable GL_TEXTURE_2D; 829 glColor @{ $self->{bg} };
811 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
812 830
813# glBegin GL_QUADS; 831 glBegin GL_QUADS;
814# glColor 0, 0, 0, 0;
815# glVertex 0 , 0; 832 glVertex 0 , 0;
816# glVertex 0 , $h; 833 glVertex 0 , $h;
817# glVertex $w, $h; 834 glVertex $w, $h;
818# glVertex $w, 0; 835 glVertex $w, 0;
819# glEnd; 836 glEnd;
820 837
821
822 $self->child->draw;
823 glDisable GL_BLEND; 838 glDisable GL_BLEND;
824 glDisable GL_TEXTURE_2D; 839 }
840
841 $self->SUPER::_draw;
825} 842}
826 843
827############################################################################# 844#############################################################################
828 845
829package CFClient::UI::FancyFrame; 846package CFClient::UI::FancyFrame;
843 860
844 my $self = $class->SUPER::new ( 861 my $self = $class->SUPER::new (
845 bg => [1, 1, 1, 1], 862 bg => [1, 1, 1, 1],
846 border_bg => [1, 1, 1, 1], 863 border_bg => [1, 1, 1, 1],
847 border => 0.6, 864 border => 0.6,
865 toplevel => 1,
848 can_events => 1, 866 can_events => 1,
849 @_ 867 @_
850 ); 868 );
851 869
852 $self->{title} &&= new CFClient::UI::Label 870 $self->{title} &&= new CFClient::UI::Label
877 my ($self, $w, $h) = @_; 895 my ($self, $w, $h) = @_;
878 896
879 $h -= List::Util::max 0, $self->border * 2; 897 $h -= List::Util::max 0, $self->border * 2;
880 $w -= List::Util::max 0, $self->border * 2; 898 $w -= List::Util::max 0, $self->border * 2;
881 899
882 $self->{title}->configure ($self->border, $self->border - $::FONTSIZE * 2, $w, $::FONTSIZE * 2) 900 $self->{title}->configure ($self->border, int $self->border - $::FONTSIZE * 2, $w, int $::FONTSIZE * 2)
883 if $self->{title}; 901 if $self->{title};
884 902
885 $self->child->configure ($self->border, $self->border, $w, $h); 903 $self->child->configure ($self->border, $self->border, $w, $h);
886} 904}
887 905
945 my ($self) = @_; 963 my ($self) = @_;
946 964
947 my ($w, $h ) = ($self->{w}, $self->{h}); 965 my ($w, $h ) = ($self->{w}, $self->{h});
948 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 966 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
949 967
950 glEnable GL_BLEND;
951 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
952 glEnable GL_TEXTURE_2D; 968 glEnable GL_TEXTURE_2D;
953 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 969 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
954 970
955 my $border = $self->border; 971 my $border = $self->border;
956 972
957 glColor @{ $self->{border_bg} }; 973 glColor @{ $self->{border_bg} };
958 $tex[1]->draw_quad (0, 0, $w, $border); 974 $tex[1]->draw_quad_alpha (0, 0, $w, $border);
959 $tex[3]->draw_quad (0, $border, $border, $ch); 975 $tex[3]->draw_quad_alpha (0, $border, $border, $ch);
960 $tex[2]->draw_quad ($w - $border, $border, $border, $ch); 976 $tex[2]->draw_quad_alpha ($w - $border, $border, $border, $ch);
961 $tex[4]->draw_quad (0, $h - $border, $w, $border); 977 $tex[4]->draw_quad_alpha (0, $h - $border, $w, $border);
962 978
963 if (@{$self->{bg}} < 4 || $self->{bg}[3]) { 979 if (@{$self->{bg}} < 4 || $self->{bg}[3]) {
964 my $bg = $tex[0]; 980 my $bg = $tex[0];
965 981
966 # TODO: repeat texture not scale 982 # TODO: repeat texture not scale
970 glColor @{ $self->{bg} }; 986 glColor @{ $self->{bg} };
971 987
972 $bg->{s} = $rep_x; 988 $bg->{s} = $rep_x;
973 $bg->{t} = $rep_y; 989 $bg->{t} = $rep_y;
974 $bg->{wrap_mode} = 1; 990 $bg->{wrap_mode} = 1;
975 $bg->draw_quad ($border, $border, $cw, $ch); 991 $bg->draw_quad_alpha ($border, $border, $cw, $ch);
992 }
976 993
977 glDisable GL_TEXTURE_2D; 994 glDisable GL_TEXTURE_2D;
978 glDisable GL_BLEND;
979 }
980 995
981 $self->{title}->draw if $self->{title}; 996 $self->{title}->draw if $self->{title};
982 997
983 $self->child->draw; 998 $self->child->draw;
984} 999}
1384 $self->{layout}->set_width ($self->{w}); 1399 $self->{layout}->set_width ($self->{w});
1385 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE); 1400 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
1386 1401
1387 my $tex = new_from_layout CFClient::Texture $self->{layout}; 1402 my $tex = new_from_layout CFClient::Texture $self->{layout};
1388 1403
1389 $self->{ox} = int $self->{align} < 0 ? $self->{padding} 1404 $self->{ox} = int ($self->{align} < 0 ? $self->{padding}
1390 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding} 1405 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1391 : ($self->{w} - $tex->{w}) * 0.5; 1406 : ($self->{w} - $tex->{w}) * 0.5);
1392 1407
1393 $self->{oy} = int $self->{valign} < 0 ? $self->{padding} 1408 $self->{oy} = int ($self->{valign} < 0 ? $self->{padding}
1394 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding} 1409 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1395 : ($self->{h} - $tex->{h}) * 0.5; 1410 : ($self->{h} - $tex->{h}) * 0.5);
1396 1411
1397 $tex 1412 $tex
1398 }; 1413 };
1399 1414
1400 glEnable GL_TEXTURE_2D; 1415 glEnable GL_TEXTURE_2D;
1455sub set_text { 1470sub set_text {
1456 my ($self, $text) = @_; 1471 my ($self, $text) = @_;
1457 1472
1458 $self->{cursor} = length $text; 1473 $self->{cursor} = length $text;
1459 $self->_set_text ($text); 1474 $self->_set_text ($text);
1475 $self->update;
1460 $self->check_size; 1476 $self->check_size;
1461 $self->update;
1462} 1477}
1463 1478
1464sub get_text { 1479sub get_text {
1465 $_[0]{text} 1480 $_[0]{text}
1466} 1481}
1486 my $sym = $ev->{sym}; 1501 my $sym = $ev->{sym};
1487 my $uni = $ev->{unicode}; 1502 my $uni = $ev->{unicode};
1488 1503
1489 my $text = $self->get_text; 1504 my $text = $self->get_text;
1490 1505
1491 if ($sym == 8) { 1506 if ($uni == 8) {
1492 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1507 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1493 } elsif ($sym == 127) { 1508 } elsif ($uni == 127) {
1494 substr $text, $self->{cursor}, 1, ""; 1509 substr $text, $self->{cursor}, 1, "";
1495 } elsif ($sym == CFClient::SDLK_LEFT) { 1510 } elsif ($sym == CFClient::SDLK_LEFT) {
1496 --$self->{cursor} if $self->{cursor}; 1511 --$self->{cursor} if $self->{cursor};
1497 } elsif ($sym == CFClient::SDLK_RIGHT) { 1512 } elsif ($sym == CFClient::SDLK_RIGHT) {
1498 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1513 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1499 } elsif ($sym == CFClient::SDLK_HOME) { 1514 } elsif ($sym == CFClient::SDLK_HOME) {
1500 $self->{cursor} = 0; 1515 $self->{cursor} = 0;
1501 } elsif ($sym == CFClient::SDLK_END) { 1516 } elsif ($sym == CFClient::SDLK_END) {
1502 $self->{cursor} = length $text; 1517 $self->{cursor} = length $text;
1503 } elsif ($sym == 27) { 1518 } elsif ($uni == 27) {
1504 $self->emit ('escape'); 1519 $self->emit ('escape');
1505 } elsif ($uni) { 1520 } elsif ($uni) {
1506 substr $text, $self->{cursor}++, 0, chr $uni; 1521 substr $text, $self->{cursor}++, 0, chr $uni;
1507 } 1522 }
1508 1523
1509 $self->_set_text ($text); 1524 $self->_set_text ($text);
1510 $self->update; 1525 $self->update;
1526 $self->check_size;
1511} 1527}
1512 1528
1513sub focus_in { 1529sub focus_in {
1514 my ($self) = @_; 1530 my ($self) = @_;
1515 1531
1672 1688
1673 if ($GRAB == $self) { 1689 if ($GRAB == $self) {
1674 $self->{fg} = $self->{active_fg}; 1690 $self->{fg} = $self->{active_fg};
1675 } 1691 }
1676 1692
1677 glEnable GL_BLEND;
1678 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1679 glEnable GL_TEXTURE_2D; 1693 glEnable GL_TEXTURE_2D;
1680 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1694 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1681 glColor 0, 0, 0, 1; 1695 glColor 0, 0, 0, 1;
1682 1696
1683 $tex[0]->draw_quad (0, 0, $self->{w}, $self->{h}); 1697 $tex[0]->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
1684 1698
1685 glDisable GL_TEXTURE_2D; 1699 glDisable GL_TEXTURE_2D;
1686 glDisable GL_BLEND;
1687 1700
1688 $self->SUPER::_draw; 1701 $self->SUPER::_draw;
1689} 1702}
1690 1703
1691############################################################################# 1704#############################################################################
1738 1751
1739 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2; 1752 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2;
1740 1753
1741 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} }; 1754 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
1742 1755
1743 glEnable GL_BLEND; 1756 my $tex = $self->{state} ? $tex[1] : $tex[0];
1757
1744 glEnable GL_TEXTURE_2D; 1758 glEnable GL_TEXTURE_2D;
1745 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1746
1747 my $tex = $self->{state} ? $tex[1] : $tex[0];
1748
1749 $tex->draw_quad (0, 0, $s, $s); 1759 $tex->draw_quad_alpha (0, 0, $s, $s);
1750
1751 glDisable GL_TEXTURE_2D; 1760 glDisable GL_TEXTURE_2D;
1752 glDisable GL_BLEND;
1753} 1761}
1754 1762
1755############################################################################# 1763#############################################################################
1756 1764
1757package CFClient::UI::Image; 1765package CFClient::UI::Image;
1800 glTranslate 0, -$self->{w}, 0; 1808 glTranslate 0, -$self->{w}, 0;
1801 1809
1802 ($w, $h) = ($h, $w); 1810 ($w, $h) = ($h, $w);
1803 } 1811 }
1804 1812
1805 glEnable GL_BLEND;
1806 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1807 glEnable GL_TEXTURE_2D; 1813 glEnable GL_TEXTURE_2D;
1808 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1814 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1809 1815
1810 $tex->draw_quad (0, 0, $w, $h); 1816 $tex->draw_quad_alpha (0, 0, $w, $h);
1811 1817
1812 glDisable GL_BLEND;
1813 glDisable GL_TEXTURE_2D; 1818 glDisable GL_TEXTURE_2D;
1814} 1819}
1815 1820
1816############################################################################# 1821#############################################################################
1817 1822
2006 qw(s1_slider.png s1_slider_bg.png); 2011 qw(s1_slider.png s1_slider_bg.png);
2007 2012
2008sub new { 2013sub new {
2009 my $class = shift; 2014 my $class = shift;
2010 2015
2011 # range [value, low, high, page] 2016 # range [value, low, high, page, unit]
2012 2017
2013 # TODO: 0-width page 2018 # TODO: 0-width page
2014 # TODO: req_w/h are wrong with vertical 2019 # TODO: req_w/h are wrong with vertical
2015 # TODO: calculations are off 2020 # TODO: calculations are off
2016 my $self = $class->SUPER::new ( 2021 my $self = $class->SUPER::new (
2019 range => [0, 0, 100, 10], 2024 range => [0, 0, 100, 10],
2020 req_w => $::WIDTH / 80, 2025 req_w => $::WIDTH / 80,
2021 req_h => $::WIDTH / 80, 2026 req_h => $::WIDTH / 80,
2022 vertical => 0, 2027 vertical => 0,
2023 can_hover => 1, 2028 can_hover => 1,
2024 inner_pad => 5, 2029 inner_pad => .05,
2025 @_ 2030 @_
2026 ); 2031 );
2027 2032
2033 $self->set_value ($self->{range}[0]);
2034 $self->update;
2035
2028 $self 2036 $self
2037}
2038
2039sub set_value {
2040 my ($self, $value) = @_;
2041
2042 my ($old_value, $lo, $hi, $page, $unit) = @{$self->{range}};
2043
2044 $hi = $lo + 1 if $hi <= $lo;
2045
2046 $value = $lo if $value < $lo;
2047 $value = $hi if $value > $hi;
2048
2049 $value = $lo + $unit * int +($value - $lo + $unit * 0.5) / $unit
2050 if $unit;
2051
2052 $page = $hi - $lo if $page > $hi - $lo;
2053
2054 @{$self->{range}} = ($value, $lo, $hi, $page, $unit);
2055
2056 if ($value != $old_value) {
2057 $self->emit (changed => $value);
2058 $self->update;
2059 }
2029} 2060}
2030 2061
2031sub size_request { 2062sub size_request {
2032 my ($self) = @_; 2063 my ($self) = @_;
2033 2064
2046 2077
2047sub mouse_motion { 2078sub mouse_motion {
2048 my ($self, $ev, $x, $y) = @_; 2079 my ($self, $ev, $x, $y) = @_;
2049 2080
2050 if ($GRAB == $self) { 2081 if ($GRAB == $self) {
2082 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
2083
2084 my (undef, $lo, $hi, $page) = @{$self->{range}};
2085
2086 $x = $x / ($w * (1 - 2 * $self->{inner_pad})) - $self->{inner_pad};
2087
2088 $self->set_value ($x * ($hi - $lo) + $lo);
2089 }
2090}
2091
2092sub update {
2093 my ($self) = @_;
2094
2095 $CFClient::UI::ROOT->on_post_alloc ($self => sub {
2096 $self->set_value ($self->{range}[0]);
2097
2051 my ($value, $lo, $hi, $page) = @{$self->{range}}; 2098 my ($value, $lo, $hi, $page) = @{$self->{range}};
2052 2099
2053 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w}); 2100 my $inner_w = 1 - 2 * $self->{inner_pad};
2054 2101
2055 my $inner_pad_px = $self->_calc_inner_pad_px ($w); 2102 $self->{scale} = ($inner_w / ($hi - $lo)) || 1;
2056 my $inner_w = $w - $inner_pad_px * 2; # * 2 for left & right
2057 2103
2058 $x -= $inner_pad_px; # substract the padding 2104 $page = $self->{scale} * $page || 10 / ($self->{w} || 1);
2059 $x = $x * ($hi - $lo) / $inner_w + $lo; 2105 $value = $self->{scale} * ($value - $lo);
2060 $x = $lo if $x < $lo;
2061 $x = $hi - $page if $x > $hi - $page;
2062 $self->{range}[0] = $x;
2063 2106
2064 $self->emit (changed => $x); 2107 $value = $self->{inner_pad} + ($value - $page * 0.5);
2065 $self->update; 2108
2109 $value = 0 if $value < 0;
2110 $page = 1 - $value if $value + $page > 1;
2111
2112 $self->{knob_x} = $value;
2113 $self->{knob_w} = $page;
2066 } 2114 });
2067}
2068 2115
2069# the inner_* stuff is for generating a padding for the slider handle, 2116 $self->SUPER::update;
2070# so that the handle doesn't leave the texture. This calculation isn't 100%
2071# correct propably, but it does the job for now
2072sub _calc_inner_pad_px {
2073 my ($self, $w) = @_;
2074 ($w / 100) * $self->{inner_pad} # % to pixels
2075} 2117}
2076 2118
2077sub _draw { 2119sub _draw {
2078 my ($self) = @_; 2120 my ($self) = @_;
2079 2121
2080 $self->SUPER::_draw (); 2122 $self->SUPER::_draw ();
2081 2123
2082 my ($w, $h) = @$self{qw(w h)}; 2124 glScale $self->{w}, $self->{h};
2083 2125
2084 if ($self->{vertical}) { 2126 if ($self->{vertical}) {
2085 # draw a vertical slider like a rotated horizontal slider 2127 # draw a vertical slider like a rotated horizontal slider
2086 2128
2087 glRotate 90, 0, 0, 1; 2129 glRotate 90, 0, 0, 1;
2088 glTranslate 0, -$self->{w}, 0; 2130 glTranslate 0, 1, 0;
2089
2090 ($w, $h) = ($h, $w);
2091 } 2131 }
2092 2132
2093 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg}; 2133 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
2094 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg}; 2134 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
2095 2135
2096 my ($value, $lo, $hi, $page) = @{$self->{range}};
2097
2098 $hi = $value + 1 if $lo == $hi;
2099
2100 my $inner_pad_px = $self->_calc_inner_pad_px ($w);
2101 my $inner_w = $w - $inner_pad_px * 2; # * 2 for left & right
2102
2103 $page = int $page * $inner_w / ($hi - $lo);
2104 $value = int +($value - $lo) * $inner_w / ($hi - $lo);
2105
2106 $w -= $page;
2107 $page &= ~1;
2108 glTranslate $page * 0.5, 0, 0;
2109 $page ||= 2;
2110
2111 my $knob_a = $inner_pad_px + ($value - $page * 0.5);
2112 my $knob_b = $inner_pad_px + ($value + $page * 0.5);
2113
2114 glEnable GL_BLEND;
2115 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2116 glEnable GL_TEXTURE_2D; 2136 glEnable GL_TEXTURE_2D;
2117 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2137 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2118 2138
2119 # draw background 2139 # draw background
2120 $tex[1]->draw_quad (0, 0, $w, $h); 2140 $tex[1]->draw_quad_alpha (0, 0, 1, 1);
2121 2141
2122 # draw handle 2142 # draw handle
2123 $tex[0]->draw_quad ($knob_a, 0, $knob_b - $knob_a, $h); 2143 $tex[0]->draw_quad_alpha ($self->{knob_x}, 0, $self->{knob_w}, 1);
2124 2144
2125 glDisable GL_BLEND;
2126 glDisable GL_TEXTURE_2D; 2145 glDisable GL_TEXTURE_2D;
2127} 2146}
2128 2147
2129############################################################################# 2148#############################################################################
2130 2149
2141 fontsize => 1, 2160 fontsize => 1,
2142 can_events => 0, 2161 can_events => 0,
2143 #font => default_font 2162 #font => default_font
2144 @_, 2163 @_,
2145 2164
2146 layout => (new CFClient::Layout), 2165 layout => (new CFClient::Layout 1),
2147 par => [], 2166 par => [],
2148 height => 0, 2167 height => 0,
2149 children => [ 2168 children => [
2150 (new CFClient::UI::Empty expand => 1), 2169 (new CFClient::UI::Empty expand => 1),
2151 (new CFClient::UI::Slider vertical => 1), 2170 (new CFClient::UI::Slider vertical => 1),
2169 2188
2170 my $layout = $self->{layout}; 2189 my $layout = $self->{layout};
2171 2190
2172 $layout->set_height ($self->{fontsize} * $::FONTSIZE); 2191 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
2173 $layout->set_width ($self->{children}[0]{w}); 2192 $layout->set_width ($self->{children}[0]{w});
2174 $layout->set_text ($text); 2193 $layout->set_markup ($text);
2175 2194
2176 ($layout->size)[1] 2195 ($layout->size)[1]
2177} 2196}
2178 2197
2179sub reflow { 2198sub reflow {
2217 2236
2218 return unless $self->{h} > 0; 2237 return unless $self->{h} > 0;
2219 2238
2220 delete $self->{texture}; 2239 delete $self->{texture};
2221 2240
2222 $ROOT->on_refresh ($self, sub { 2241 $ROOT->on_post_alloc ($self, sub {
2223 if (delete $self->{need_reflow}) { 2242 if (delete $self->{need_reflow}) {
2224 my $height = 0; 2243 my $height = 0;
2225 2244
2226 $height += $_->[0] = $self->text_height ($_->[2]) 2245 $height += $_->[0] = $self->text_height ($_->[2])
2227 for @{$self->{par}}; 2246 for @{$self->{par}};
2235 2254
2236 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub { 2255 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub {
2237 glClearColor 0, 0, 0, 0; 2256 glClearColor 0, 0, 0, 0;
2238 glClear GL_COLOR_BUFFER_BIT; 2257 glClear GL_COLOR_BUFFER_BIT;
2239 2258
2240 glEnable GL_BLEND;
2241 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2242 glEnable GL_TEXTURE_2D; 2259 glEnable GL_TEXTURE_2D;
2243 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2260 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2244 2261
2245 my $top = int $self->{children}[1]{range}[0]; 2262 my $top = int $self->{children}[1]{range}[0];
2246 2263
2255 2272
2256 for my $par (@{$self->{par}}) { 2273 for my $par (@{$self->{par}}) {
2257 my $h = $par->[0]; 2274 my $h = $par->[0];
2258 2275
2259 if ($y0 < $y + $h && $y < $y1) { 2276 if ($y0 < $y + $h && $y < $y1) {
2277 $layout->set_foreground (@{ $par->[1] });
2260 $layout->set_text ($par->[2]); 2278 $layout->set_markup ($par->[2]);
2261 2279
2262 glColor @{ $par->[1] };
2263 my ($W, $H) = $layout->size; 2280 my ($W, $H) = $layout->size;
2264 CFClient::Texture->new_from_layout ($layout)->draw_quad (0, $y - $y0); 2281 CFClient::Texture->new_from_layout ($layout)->draw_quad_alpha_premultiplied (0, $y - $y0);
2265 } 2282 }
2266 2283
2267 $y += $h; 2284 $y += $h;
2268 } 2285 }
2269 2286
2270 glDisable GL_TEXTURE_2D; 2287 glDisable GL_TEXTURE_2D;
2271 glDisable GL_BLEND;
2272 }; 2288 };
2273 }); 2289 });
2274} 2290}
2275 2291
2276sub _draw { 2292sub _draw {
2277 my ($self) = @_; 2293 my ($self) = @_;
2278 2294
2279 glEnable GL_BLEND;
2280 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2281 glEnable GL_TEXTURE_2D; 2295 glEnable GL_TEXTURE_2D;
2282 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2296 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2283 glColor 1, 1, 1, 1; 2297 glColor 1, 1, 1, 1;
2284 $self->{texture}->draw_quad (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h}); 2298 $self->{texture}->draw_quad_alpha_premultiplied (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h});
2285 glDisable GL_TEXTURE_2D; 2299 glDisable GL_TEXTURE_2D;
2286 glDisable GL_BLEND;
2287 2300
2288 $self->{children}[1]->draw; 2301 $self->{children}[1]->draw;
2289 2302
2290} 2303}
2291 2304
2385 @_, 2398 @_,
2386 can_events => 0, 2399 can_events => 0,
2387 ) 2400 )
2388} 2401}
2389 2402
2390sub set_markup { 2403sub set_tooltip_from {
2391 my ($self, $text) = @_; 2404 my ($self, $widget) = @_;
2392 2405
2393 $self->{label} ||= new CFClient::UI::Label fontsize => 0.8, fg => [0, 0, 0]; 2406 $self->add (new CFClient::UI::Label
2394 $self->{label}->set_markup ($text); 2407 markup => $widget->{tooltip},
2395 $self->add ($self->{label}); 2408 max_w => ($widget->{tooltip_width} || 0.25) * $::WIDTH,
2409 fontsize => 0.8,
2410 fg => [0, 0, 0, 1],
2411 font => ($widget->{tooltip_font} || $::FONT_PROP),
2412 );
2396} 2413}
2397 2414
2398sub size_request { 2415sub size_request {
2399 my ($self) = @_; 2416 my ($self) = @_;
2400
2401 $self->child->set_max_size ($::WIDTH * 0.3);
2402 2417
2403 my ($w, $h) = @{$self->child}{qw(req_w req_h)}; 2418 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
2404 2419
2405 ($w + 4, $h + 4) 2420 ($w + 4, $h + 4)
2406} 2421}
2412} 2427}
2413 2428
2414sub _draw { 2429sub _draw {
2415 my ($self) = @_; 2430 my ($self) = @_;
2416 2431
2417 glPushMatrix;
2418 glTranslate 0.375, 0.375; 2432 glTranslate 0.375, 0.375;
2419 2433
2420 my ($w, $h) = @$self{qw(w h)}; 2434 my ($w, $h) = @$self{qw(w h)};
2421 2435
2422 glColor 1, 0.8, 0.4; 2436 glColor 1, 0.8, 0.4;
2433 glVertex 0 , $h; 2447 glVertex 0 , $h;
2434 glVertex $w, $h; 2448 glVertex $w, $h;
2435 glVertex $w, 0; 2449 glVertex $w, 0;
2436 glEnd; 2450 glEnd;
2437 2451
2438 glPopMatrix; 2452 glTranslate 2 - 0.375, 2 - 0.375;
2439
2440 glTranslate 2, 2;
2441 $self->SUPER::_draw; 2453 $self->SUPER::_draw;
2442} 2454}
2443 2455
2444############################################################################# 2456#############################################################################
2445 2457
2468 return unless $::CONN;#d# manage and cache textures differently 2480 return unless $::CONN;#d# manage and cache textures differently
2469 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]]; 2481 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]];
2470 2482
2471 # TODO animation 2483 # TODO animation
2472 if ($tex) { 2484 if ($tex) {
2473 glEnable GL_BLEND;
2474 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2475 glEnable GL_TEXTURE_2D; 2485 glEnable GL_TEXTURE_2D;
2476 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2486 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2477 glColor 1, 1, 1, 1; 2487 glColor 1, 1, 1, 1;
2478 $tex->draw_quad (0, 0, $self->{w}, $self->{h}); 2488 $tex->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
2479 glDisable GL_TEXTURE_2D; 2489 glDisable GL_TEXTURE_2D;
2480 glDisable GL_BLEND;
2481 } 2490 }
2482} 2491}
2483 2492
2484############################################################################# 2493#############################################################################
2485 2494
2496 2505
2497 my $desc = $item->{nrof} < 2 2506 my $desc = $item->{nrof} < 2
2498 ? $item->{name} 2507 ? $item->{name}
2499 : "$item->{nrof} $item->{name_pl}"; 2508 : "$item->{nrof} $item->{name_pl}";
2500 2509
2510 $item->{flags} & Crossfire::Protocol::F_OPEN
2511 and $desc .= " (open)";
2512 $item->{flags} & Crossfire::Protocol::F_APPLIED
2513 and $desc .= " (applied)";
2514 $item->{flags} & Crossfire::Protocol::F_UNPAID
2515 and $desc .= " (unpaid)";
2516 $item->{flags} & Crossfire::Protocol::F_MAGIC
2517 and $desc .= " (magic)";
2518 $item->{flags} & Crossfire::Protocol::F_CURSED
2519 and $desc .= " (cursed)";
2520 $item->{flags} & Crossfire::Protocol::F_DAMNED
2521 and $desc .= " (damned)";
2522 $item->{flags} & Crossfire::Protocol::F_LOCKED
2523 and $desc .= " *";
2501 2524
2502 my $self = $class->SUPER::new ( 2525 my $self = $class->SUPER::new (
2503 can_hover => 1, 2526 can_hover => 1,
2504 can_events => 1, 2527 can_events => 1,
2505 tooltip => (CFClient::UI::Label->escape ($desc) 2528 tooltip => (CFClient::UI::Label->escape ($desc)
2511 if ($ev->{button} == 1) { 2534 if ($ev->{button} == 1) {
2512 $::CONN->send ("move $::CONN->{player}{tag} $item->{tag} 0"); 2535 $::CONN->send ("move $::CONN->{player}{tag} $item->{tag} 0");
2513 } elsif ($ev->{button} == 2) { 2536 } elsif ($ev->{button} == 2) {
2514 $::CONN->send ("apply $item->{tag}"); 2537 $::CONN->send ("apply $item->{tag}");
2515 } elsif ($ev->{button} == 3) { 2538 } elsif ($ev->{button} == 3) {
2516 CFClient::UI::Menu->new ( 2539 my @menu_items = (
2517 items => [
2518 ["examine", sub { $::CONN->send ("examine $item->{tag}") }], 2540 ["examine", sub { $::CONN->send ("examine $item->{tag}") }],
2541 ["mark", sub { $::CONN->send ("mark $item->{tag}") }],
2542 ["apply", sub { $::CONN->send ("apply $item->{tag}") }],
2543 ["drop", sub { $::CONN->send ("move $main::OPENCONT $item->{tag} 0") }],
2519 [ 2544 [
2520 $item->{flags} & Crossfire::Protocol::F_LOCKED ? "lock" : "unlock", 2545 $item->{flags} & Crossfire::Protocol::F_LOCKED ? "lock" : "unlock",
2521 sub { $::CONN->send ("lock $item->{tag}") }, 2546 sub { $::CONN->send ("lock ". () ."$item->{tag}") },
2522 ],
2523 ["mark", sub { $::CONN->send ("mark $item->{tag}") }],
2524 ["apply", sub { $::CONN->send ("apply $item->{tag}") }],
2525 ["drop", sub { $::CONN->send ("move 0 $item->{tag} 0") }],
2526 ], 2547 ],
2527 )->popup ($ev); 2548 );
2549
2550 CFClient::UI::Menu->new (items => \@menu_items)->popup ($ev);
2528 } 2551 }
2529 2552
2530 1 2553 1
2531 }, 2554 },
2532 %args 2555 %args
2568 my ($self, $items) = @_; 2591 my ($self, $items) = @_;
2569 2592
2570 $self->{scrolled}->clear; 2593 $self->{scrolled}->clear;
2571 return unless $items; 2594 return unless $items;
2572 2595
2573 my @items = sort { $a->{type} <=> $b->{type} } @$items; 2596 my @items = sort {
2597 ($a->{type} <=> $b->{type})
2598 or ($a->{name} cmp $b->{name})
2599 } @$items;
2574 2600
2575 $self->{real_items} = \@items; 2601 $self->{real_items} = \@items;
2576 2602
2577 for my $item (@items) { 2603 for my $item (@items) {
2578 my $desc = $item->{nrof} < 2 2604 my $desc = $item->{nrof} < 2
2579 ? $item->{name} 2605 ? $item->{name}
2580 : "$item->{nrof} $item->{name_pl}"; 2606 : "$item->{nrof} $item->{name_pl}";
2581 2607
2582 $self->{scrolled}->add ($item->{widget} ||= new CFClient::UI::InventoryItem item => $item); 2608 $item = $item->{widget} ||= new CFClient::UI::InventoryItem item => $item;
2583 } 2609 }
2610
2611 $self->{scrolled}->add (@items);
2584 2612
2585# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page]; 2613# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page];
2586} 2614}
2587 2615
2588sub size_request { 2616sub size_request {
2675 while (my ($k, $v) = each %{ $self->{item} }) { 2703 while (my ($k, $v) = each %{ $self->{item} }) {
2676 delete $self->{item}{$k} if $v->{timeout} < $NOW; 2704 delete $self->{item}{$k} if $v->{timeout} < $NOW;
2677 } 2705 }
2678 2706
2679 my @widgets; 2707 my @widgets;
2680 my @items = sort { $a->{time} <=> $b->{time} } values %{ $self->{item} }; 2708
2709 my @items = sort {
2710 $a->{pri} <=> $b->{pri}
2711 or $b->{id} <=> $a->{id}
2712 } values %{ $self->{item} };
2713
2681 my $count = 10 + 1; 2714 my $count = 10 + 1;
2682 for my $item (@items) { 2715 for my $item (@items) {
2683 last unless --$count; 2716 last unless --$count;
2684 2717
2685 push @widgets, $item->{label} ||= do { 2718 push @widgets, $item->{label} ||= do {
2686 # TODO: doesn't handle markup well (read as: at all) 2719 # TODO: doesn't handle markup well (read as: at all)
2687 my $short = delete $item->{text}; 2720 my $short = $item->{count} > 1
2721 ? "<b>$item->{count} ×</b> $item->{text}"
2722 : $item->{text};
2723
2688 for ($short) { 2724 for ($short) {
2689 s/^\s+//; 2725 s/^\s+//;
2690 s/\012.*//s; 2726 s/\s+/ /g;
2691 my $len = int 30 / $item->{fontsize}; 2727 my $len = int 40 / $item->{fontsize};
2692 substr $_, $len, length, "…" if $len < length; 2728 substr $_, $len, length, "…" if $len < length;
2693 } 2729 }
2694 2730
2695 new CFClient::UI::Label 2731 new CFClient::UI::Label
2696 markup => $short, 2732 markup => $short,
2697 tooltip => delete $item->{tooltip}, 2733 tooltip => $item->{tooltip},
2734 tooltip_font => $::FONT_PROP,
2735 tooltip_width => 0.67,
2698 fontsize => delete $item->{fontsize}, 2736 fontsize => $item->{fontsize},
2699 color => delete $item->{color}, 2737 fg => $item->{fg},
2700 can_events => 1, 2738 can_events => 1,
2701 can_hover => 1, 2739 can_hover => 1
2702 }; 2740 };
2703 } 2741 }
2704 2742
2705 $self->clear; 2743 $self->clear;
2706 $self->SUPER::add (@widgets); 2744 $self->SUPER::add (reverse @widgets);
2707} 2745}
2708 2746
2709sub add { 2747sub add {
2710 my ($self, $text, %arg) = @_; 2748 my ($self, $text, %arg) = @_;
2711 2749
2712 my $item = { 2750 $text =~ s/^\s+//;
2713 time => time, 2751 $text =~ s/\s+$//;
2752
2753 my $timeout = time + ((delete $arg{timeout}) || 60);
2754
2755 my $group = exists $arg{group} ? $arg{group} : ++$self->{id};
2756
2757 if (my $item = $self->{item}{$group}) {
2758 if ($item->{text} eq $text) {
2759 $item->{count}++;
2760 } else {
2761 $item->{count} = 1;
2762 $item->{text} = $item->{tooltip} = $text;
2763 }
2764 $item->{id} = ++$self->{id};
2765 $item->{timeout} = $timeout;
2766 delete $item->{label};
2767 } else {
2768 $self->{item}{$group} = {
2769 id => ++$self->{id},
2714 text => $text, 2770 text => $text,
2715 timeout => 60, 2771 timeout => $timeout,
2716 tooltip => $text, 2772 tooltip => $text,
2717 fontsize => 0.8, 2773 fontsize => 0.8,
2718 color => [0.8, 0.8, 0.8, 0.8], 2774 fg => [0.8, 0.8, 0.8, 0.8],
2775 pri => 0,
2776 count => 1,
2719 %arg, 2777 %arg,
2778 };
2720 }; 2779 }
2721
2722 $item->{timeout} += time;
2723 $item->{group} ||= $item+0;
2724
2725 $item = $self->{item}{$item->{group}} ||= $item;
2726 2780
2727 $self->reorder; 2781 $self->reorder;
2728} 2782}
2729 2783
2730############################################################################# 2784#############################################################################
2764} 2818}
2765 2819
2766sub size_allocate { 2820sub size_allocate {
2767 my ($self, $w, $h) = @_; 2821 my ($self, $w, $h) = @_;
2768 2822
2769 my $old_w = $self->{old_w}; 2823 my $old_w = $self->{old_w}; $self->{old_w} = $w;
2770 my $old_h = $self->{old_h}; 2824 my $old_h = $self->{old_h}; $self->{old_h} = $h;
2771 2825
2772 if ($old_w && $old_h) { 2826 CFClient::UI::rescale_widgets $w / $old_w, $h / $old_h
2773 for my $child ($self->children) { 2827 if $old_w && $old_h && ($old_w != $w || $old_h != $h);
2774 $child->{x} = int 0.5 + $child->{x} * $w / $old_w;
2775 $child->{w} = int 0.5 + $child->{w} * $w / $old_w;
2776 $child->{req_w} = int 0.5 + $child->{req_w} * $w / $old_w if exists $child->{req_w};
2777 $child->{user_w} = int 0.5 + $child->{user_w} * $w / $old_w if exists $child->{user_w};
2778 $child->{y} = int 0.5 + $child->{y} * $h / $old_h;
2779 $child->{h} = int 0.5 + $child->{h} * $h / $old_h;
2780 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h};
2781 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h};
2782 }
2783 }
2784 2828
2785 for my $child ($self->children) { 2829 for my $child ($self->children) {
2786 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)}; 2830 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2787 2831
2832 $X = $child->{req_x} > 0 ? $child->{req_x} : $w - $W - $child->{req_x} + 1
2833 if exists $child->{req_x};
2834
2835 $Y = $child->{req_y} > 0 ? $child->{req_y} : $h - $H - $child->{req_y} + 1
2836 if exists $child->{req_y};
2837
2788 $X = List::Util::max 0, List::Util::min $w - $W, $X; 2838 $X = List::Util::max 0, List::Util::min $w - $W, int $X + 0.5;
2789 $Y = List::Util::max 0, List::Util::min $h - $H, $Y; 2839 $Y = List::Util::max 0, List::Util::min $h - $H, int $Y + 0.5;
2840
2790 $child->configure ($X, $Y, $W, $H); 2841 $child->configure ($X, $Y, $W, $H);
2791 } 2842 }
2792
2793 $self->{old_w} = $w;
2794 $self->{old_h} = $h;
2795} 2843}
2796 2844
2797sub coord2local { 2845sub coord2local {
2798 my ($self, $x, $y) = @_; 2846 my ($self, $x, $y) = @_;
2799 2847
2812 $self->check_size; 2860 $self->check_size;
2813 $::WANT_REFRESH++; 2861 $::WANT_REFRESH++;
2814} 2862}
2815 2863
2816sub add { 2864sub add {
2817 my ($self, $child) = @_; 2865 my ($self, @children) = @_;
2818 2866
2867 for my $child (@children) {
2868 $child->{toplevel} = 1;
2869
2819 # integerise window positions 2870 # integerise window positions
2820 $child->{x} = int $child->{x}; 2871 $child->{x} = int $child->{x};
2821 $child->{y} = int $child->{y}; 2872 $child->{y} = int $child->{y};
2873 }
2822 2874
2823 $self->SUPER::add ($child); 2875 $self->SUPER::add (@children);
2824} 2876}
2825 2877
2826sub on_refresh { 2878sub on_refresh {
2827 my ($self, $id, $cb) = @_; 2879 my ($self, $id, $cb) = @_;
2828 2880
2829 $self->{refresh_hook}{$id} = $cb; 2881 $self->{refresh_hook}{$id} = $cb;
2830} 2882}
2831 2883
2884sub on_post_alloc {
2885 my ($self, $id, $cb) = @_;
2886
2887 $self->{post_alloc_hook}{$id} = $cb;
2888}
2889
2832sub draw { 2890sub draw {
2833 my ($self) = @_; 2891 my ($self) = @_;
2892
2893 while ($self->{refresh_hook}) {
2894 $_->()
2895 for values %{delete $self->{refresh_hook}};
2896 }
2834 2897
2835 if ($self->{check_size}) { 2898 if ($self->{check_size}) {
2836 my @queue = ([], []); 2899 my @queue = ([], []);
2837 2900
2838 for (;;) { 2901 for (;;) {
2846 2909
2847 my ($w, $h) = $widget->{user_w} && $widget->{user_h} 2910 my ($w, $h) = $widget->{user_w} && $widget->{user_h}
2848 ? @$widget{qw(user_w user_h)} 2911 ? @$widget{qw(user_w user_h)}
2849 : $widget->size_request; 2912 : $widget->size_request;
2850 2913
2914 if (delete $widget->{force_alloc}
2851 if ($w != $widget->{req_w} || $h != $widget->{req_h}) { 2915 or $w != $widget->{req_w} or $h != $widget->{req_h}) {
2852 Carp::confess "$widget: size_request is negative" if $w < 0 || $h < 0;#d# 2916 Carp::confess "$widget: size_request is negative" if $w < 0 || $h < 0;#d#
2853 2917
2854 $widget->{req_w} = $w; 2918 $widget->{req_w} = $w;
2855 $widget->{req_h} = $h; 2919 $widget->{req_h} = $h;
2856 2920
2857 $self->{size_alloc}{$widget} = [$widget, $widget->{w}, $widget->{h}]; 2921 $self->{size_alloc}{$widget} = [$widget, $widget->{w} || $w, $widget->{h} || $h];
2858 2922
2859 $widget->{parent}->check_size 2923 $widget->{parent}->check_size
2860 if $widget->{parent}; 2924 if $widget->{parent};
2861 } 2925 }
2862 } 2926 }
2874 $widget->size_allocate ($w, $h); 2938 $widget->size_allocate ($w, $h);
2875 $widget->emit (size_allocate => $w, $h); 2939 $widget->emit (size_allocate => $w, $h);
2876 } 2940 }
2877 } 2941 }
2878 2942
2879 while ($self->{refresh_hook}) { 2943 while ($self->{post_alloc_hook}) {
2880 $_->() 2944 $_->()
2881 for values %{delete $self->{refresh_hook}}; 2945 for values %{delete $self->{post_alloc_hook}};
2882 } 2946 }
2883 2947
2884 glViewport 0, 0, $::WIDTH, $::HEIGHT; 2948 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2885 glClearColor +($::CFG->{fow_intensity}) x 3, 1; 2949 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2886 glClear GL_COLOR_BUFFER_BIT; 2950 glClear GL_COLOR_BUFFER_BIT;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines