1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 ######################################################################
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (c) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 #  Contributors: Christopher Browne
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #######################################################################
 
  31 # the frame layout with refractured menu
 
  34 #   DS. 2002-03-25  Created
 
  35 #  2004-12-14 - New Optik - Marco Welter <mawe@linux-studio.de>
 
  36 #  2010-08-19 - Icons for sub entries and single click behavior, unlike XUL-Menu
 
  37 #               JS switchable HTML-menu - Sven Donath <lxo@dexo.de>
 
  38 #######################################################################
 
  46 my $menufile = "menu.ini";
 
  52   $main::lxdebug->enter_sub();
 
  54   my $form      = $main::form;
 
  56   my $callback  = $form->unescape($form->{callback});
 
  57   $callback     = URI->new($callback)->rel($callback) if $callback;
 
  58   $callback     = "login.pl?action=company_logo"      if $callback =~ /^(\.\/)?$/;
 
  59   my $framesize = _calc_framesize();
 
  64 <frameset rows="28px,*" cols="*" framespacing="0" frameborder="0">
 
  65   <frame  src="kopf.pl" name="kopf"  scrolling="NO">
 
  66   <frameset cols="$framesize,*" framespacing="0" frameborder="0" border="0" id="menuframe" name="menuframe">
 
  67     <frame src="$form->{script}?action=acc_menu" name="acc_menu"  scrolling="auto" noresize marginwidth="0">
 
  68     <frame src="$callback" name="main_window" scrolling="auto">
 
  71   You need a browser that can read frames to see this page.
 
  77   $main::lxdebug->leave_sub();
 
  81   $main::lxdebug->enter_sub();
 
  83   my $form      = $main::form;
 
  84   my $locale    = $main::locale;
 
  85   my $framesize = _calc_framesize();
 
  87   $mainlevel = $form->{level};
 
  88   $mainlevel =~ s/\Q$mainlevel\E--//g;
 
  89   my $menu = Menu->new($::menufile);
 
  91   $form->{title} = $locale->text('Lx-Office');
 
  99   print qq|<div align="left">\n<table width="|
 
 101     . qq|" border="0">\n|;
 
 103   §ion_menu($menu);
 
 105   print qq|</table></div>|;
 
 111   $main::lxdebug->leave_sub();
 
 115   $main::lxdebug->enter_sub();
 
 116   my ($menu, $level) = @_;
 
 118   my $form      = $main::form;
 
 119   my %myconfig  = %main::myconfig;
 
 120   my $locale    = $main::locale;
 
 121   my $is_not_links_browser = $ENV{HTTP_USER_AGENT} =~ /links/i ? 0 : 1;
 
 126   my @menuorder = $menu->access_control(\%myconfig, $level);
 
 128     my $item  = shift @menuorder;
 
 131     $label =~ s/\Q$level\E--//g;
 
 133     if ($ml eq $mainlevel) { $zeige = 1; }
 
 135     my $spacer = " " x (($item =~ s/--/--/g) * 2);
 
 137     my $label_icon = $level . "--" . $label . ".png";
 
 139     $label      = $locale->text($label);
 
 141     # multi line hack, sschoeling jul06
 
 142     # if a label is too long, try to split it at whitespaces, then join it to chunks of less
 
 143     # than 20 chars and store it in an array.
 
 144     # use this array later instead of the  -ed label
 
 146     my ($i,$l) = (-1, 20);
 
 148       if (($l += length $_) < 20) {
 
 149         $chunks[$i] .= " $_";
 
 156     map { s/ / / } @chunks;
 
 159     $label =~ s/ / /g;
 
 160     $menu->{$item}{target} = "main_window" unless $menu->{$item}{target};
 
 162     if ($menu->{$item}{submenu}) {
 
 163       $menu->{$item}{$item} = !$form->{$item};
 
 164       if ($form->{level} && $item =~ /^\Q$form->{level}\E/) {
 
 169             qq|<tr><td style='vertical-align:bottom'><b>$spacer<img src="image/unterpunkt.png">$label</b></td></tr>\n|;
 
 172         # remove same level items
 
 173         map { shift @menuorder } grep /^$item/, @menuorder;
 
 174         §ion_menu($menu, $item);
 
 178             . $menu->menuitem(\%myconfig, \%$form, $item, $level)
 
 179             . qq|$label ...</a></td></tr>\n|;
 
 182         # remove same level items
 
 183         map { shift @menuorder } grep /^$item/, @menuorder;
 
 186       if ($menu->{$item}{module}) {
 
 187         if ($form->{$item} && $form->{level} eq $item) {
 
 188           $menu->{$item}{$item} = !$form->{$item};
 
 191               qq|<tr><td valign=bottom>$spacer<img src="image/unterpunkt.png">|
 
 192               . $menu->menuitem(\%myconfig, \%$form, $item, $level)
 
 193               . qq|$label</a></td></tr>\n|;
 
 196           # remove same level items
 
 197           map { shift @menuorder } grep /^$item/, @menuorder;
 
 198           §ion_menu($menu, $item);
 
 201             if (scalar @chunks <= 1) {
 
 203                 qq|<tr><td class="hover" height="16" >$spacer|
 
 204                 . $menu->menuitem(\%myconfig, \%$form, $item, $level) ;
 
 206             if (-f "image/icons/16x16/$label_icon" && ($is_not_links_browser))
 
 208                 qq|<img src="image/icons/16x16/$label_icon" border="0" style="vertical-align:text-top" title="|
 
 210                 . qq|">  | }
 
 212                    if ($is_not_links_browser) {
 
 213                     print qq|<img src="image/unterpunkt.png" border="0" style="vertical-align:text-top">|;
 
 218                  qq|$label</a></td></tr>\n|;
 
 220               my $tmpitem = $menu->menuitem(\%myconfig, \%$form, $item, $level);
 
 222                 qq|<tr><td class="hover" height="16" >$spacer<img src="image/unterpunkt.png"  style="vertical-align:text-top">|
 
 224                 . qq|$chunks[0]</a></td></tr>\n|;
 
 227                   qq|<tr style="vertical-align:top""><td class="hover">$spacer<img src="image/unterpunkt.png" style="visibility:hidden; width:24; height=2;">|
 
 229                   . qq|$chunks[$_]</a></td></tr>\n|;
 
 235         my $ml_ = $form->escape($ml);
 
 237           qq|<tr><td class="bg" height="24" align="left" valign="middle">
 
 238           <a href="menu.pl?action=acc_menu&level=$ml_" class="nohover" title="$label">|;
 
 239               if ($is_not_links_browser) {
 
 240                   print qq|<img src="image/icons/24x24/$item.png" border="0" style="vertical-align:middle" title="$label">|;
 
 242           print qq| $label</a>    </td></tr>\n|;
 
 243         §ion_menu($menu, $item);
 
 249   $main::lxdebug->leave_sub();
 
 252 sub _calc_framesize {
 
 253   my $is_lynx_browser   = $ENV{HTTP_USER_AGENT} =~ /links/i;
 
 254   my $is_mobile_browser = $ENV{HTTP_USER_AGENT} =~ /mobile/i;
 
 255   my $is_mobile_style   = $::form->{stylesheet} =~ /mobile/i;
 
 257   return  $is_mobile_browser && $is_mobile_style ?  130
 
 258         : $is_lynx_browser                       ?  240