summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-09-12 10:55:10 +0000
committerdamien <damien@mandriva.com>2001-09-12 10:55:10 +0000
commite2116368f3fe292a1c8fe2d00e6e56e56b2936c0 (patch)
tree166673ca1b751c2f10b813c3fd28c082a7646e8f
parentca1c1bce6d1df2af15de71f9d4241e99bafebd43 (diff)
downloaddrakx-backup-do-not-use-e2116368f3fe292a1c8fe2d00e6e56e56b2936c0.tar
drakx-backup-do-not-use-e2116368f3fe292a1c8fe2d00e6e56e56b2936c0.tar.gz
drakx-backup-do-not-use-e2116368f3fe292a1c8fe2d00e6e56e56b2936c0.tar.bz2
drakx-backup-do-not-use-e2116368f3fe292a1c8fe2d00e6e56e56b2936c0.tar.xz
drakx-backup-do-not-use-e2116368f3fe292a1c8fe2d00e6e56e56b2936c0.zip
removed shadows if standalone
-rw-r--r--perl-install/my_gtk.pm44
1 files changed, 23 insertions, 21 deletions
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm
index c25bebdc1..f3bf5a713 100644
--- a/perl-install/my_gtk.pm
+++ b/perl-install/my_gtk.pm
@@ -536,26 +536,28 @@ sub _create_window($$) {
$my_gtk::shape_width = 7;
#- $gc->set_foreground(gtkcolor(8448, 17664, 40191)); #- in hex : 33, 69, 157
$gc->set_foreground(gtkcolor(5120, 10752, 22784)); #- in hex : 20, 42, 89
- gtkadd($w, my $table = new Gtk::Table(2, 2, 0));
- $table->attach( gtkadd(my $f_ = gtkset_shadow_type(new Gtk::Frame(undef), 'out'),
- my $f = gtkset_border_width(gtkset_shadow_type(new Gtk::Frame(undef), 'none'), 3)
- ),
- 0, 1, 0, 1, 1|4, 1|4, 0, 0);
- $table->attach( gtksignal_connect(gtkset_usize(new Gtk::DrawingArea, 7, 1), expose_event => sub {
- $_[0]->window->draw_rectangle($_[0]->style->bg_gc('normal'), 1, 0, 0, 7, 7);
- $_[0]->window->draw_rectangle($gc, 1, 0, 7, 7, $_[0]->allocation->[3]);
- }),
- 1, 2, 0, 1, 'fill', 'fill', 0, 0);
- $table->attach( gtksignal_connect(gtkset_usize(new Gtk::DrawingArea, 1, 7), expose_event => sub {
- $_[0]->window->draw_rectangle($_[0]->style->bg_gc('normal'), 1, 0, 0, 7, 7);
- $_[0]->window->draw_rectangle($gc, 1, 7, 0, $_[0]->allocation->[2], 7);
- }),
- 0, 1, 1, 2, 'fill', 'fill', 0, 0);
- $table->attach( gtksignal_connect(gtkset_usize(new Gtk::DrawingArea, 7, 7), expose_event => sub {
- $_[0]->window->draw_rectangle($gc, 1, 0, 0, 7, 7);
- }),
- 1, 2, 1, 2, 'fill', 'fill', 0, 0);
- $table->show_all;
+ my $inner = gtkadd(my $f_ = gtkset_shadow_type(new Gtk::Frame(undef), 'out'),
+ my $f = gtkset_border_width(gtkset_shadow_type(new Gtk::Frame(undef), 'none'), 3)
+ );
+ if ($::isStandalone) { gtkadd($w, $inner) } else {
+ gtkadd($w, my $table = new Gtk::Table(2, 2, 0));
+ $table->attach( $inner, 0, 1, 0, 1, 1|4, 1|4, 0, 0);
+ $table->attach( gtksignal_connect(gtkset_usize(new Gtk::DrawingArea, 7, 1), expose_event => sub {
+ $_[0]->window->draw_rectangle($_[0]->style->bg_gc('normal'), 1, 0, 0, 7, 7);
+ $_[0]->window->draw_rectangle($gc, 1, 0, 7, 7, $_[0]->allocation->[3]);
+ }),
+ 1, 2, 0, 1, 'fill', 'fill', 0, 0);
+ $table->attach( gtksignal_connect(gtkset_usize(new Gtk::DrawingArea, 1, 7), expose_event => sub {
+ $_[0]->window->draw_rectangle($_[0]->style->bg_gc('normal'), 1, 0, 0, 7, 7);
+ $_[0]->window->draw_rectangle($gc, 1, 7, 0, $_[0]->allocation->[2], 7);
+ }),
+ 0, 1, 1, 2, 'fill', 'fill', 0, 0);
+ $table->attach( gtksignal_connect(gtkset_usize(new Gtk::DrawingArea, 7, 7), expose_event => sub {
+ $_[0]->window->draw_rectangle($gc, 1, 0, 0, 7, 7);
+ }),
+ 1, 2, 1, 2, 'fill', 'fill', 0, 0);
+ $table->show_all;
+ }
$w->set_name("Title");
$w->set_title($title);
@@ -617,7 +619,7 @@ sub _create_window($$) {
$o->{window} = $f;
$o->{rwindow} = $w;
- $table->draw(undef);
+ $table and $table->draw(undef);
}
my ($next_child, $left, $right, $up, $down);