From 98f12edca19f49a6f228958f4926e8c6a2e2100d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 14 Sep 2009 15:37:15 +0000 Subject: new small webkit based browser for rendering help and for FTW --- perl-install/standalone/display_help | 66 ++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100755 perl-install/standalone/display_help (limited to 'perl-install/standalone') diff --git a/perl-install/standalone/display_help b/perl-install/standalone/display_help new file mode 100755 index 000000000..611a6a839 --- /dev/null +++ b/perl-install/standalone/display_help @@ -0,0 +1,66 @@ +#!/usr/bin/perl + +# DrakBoot +# $Id: display_release_notes 242795 2008-05-29 15:38:07Z tv $ +# Copyright (C) 2009 Mandriva +# Thierry Vignaud +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +use lib qw(/usr/lib/libDrakX); +use common; +use any; +use mygtk2 qw(gtknew); +use ugtk2 qw(:wrappers :create); +use Gtk2::WebKit; + +my $view = gtknew('WebKit_View'); + +$view->open($ARGV[0]); + +# FIXME: merge this with mcc code into new mygtk2::set_standalone_main_window_size()? +my ($rootwin_width, $rootwin_height) = gtkroot()->get_size; +my ($default_width, $default_height); +my $wm = any::running_window_manager(); + +if ($wm) { + # wide enough to embedd help snapshots: + $default_width = $rootwin_width <= 800 ? 720 : 840; + $default_height = $rootwin_height <= 480 ? 420 : $rootwin_height <= 600 ? 523 : 600; +} else { + # full screen mode for First Time Wizard and the like: + ($default_width, $default_height) = ($rootwin_width, $rootwin_height); +} + +# TODO: got XID from mcc/... ? (transient & modal hints?) +my $w = ugtk2->new(N("Help"), width => $default_width, height => $default_height); + +gtkadd($w->{rwindow}, + gtkpack_(Gtk2::VBox->new, + if_($wm, 0, gtknew('Title2', label => N("Help"))), + 0, Gtk2::HSeparator->new, + 1, create_scrolled_window(gtkset_border_width($view, 5), [ 'never', 'automatic' ]), + #1, gtknew('ScrolledWindow', child => $view, border_width => 5, h_policy => 'never'); + 0, Gtk2::HSeparator->new, + #if_($wm, # We have JavaScritp issues for now, so let's keep the "close" button: + 0, gtkpack(create_hbox('end'), + gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit }) + ), + #), + ), + ); + +$w->{real_window}->show_all; +$w->main; -- cgit v1.2.1