1*9780544fSAndrew Rist#************************************************************** 2*9780544fSAndrew Rist# 3*9780544fSAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 4*9780544fSAndrew Rist# or more contributor license agreements. See the NOTICE file 5*9780544fSAndrew Rist# distributed with this work for additional information 6*9780544fSAndrew Rist# regarding copyright ownership. The ASF licenses this file 7*9780544fSAndrew Rist# to you under the Apache License, Version 2.0 (the 8*9780544fSAndrew Rist# "License"); you may not use this file except in compliance 9*9780544fSAndrew Rist# with the License. You may obtain a copy of the License at 10*9780544fSAndrew Rist# 11*9780544fSAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 12*9780544fSAndrew Rist# 13*9780544fSAndrew Rist# Unless required by applicable law or agreed to in writing, 14*9780544fSAndrew Rist# software distributed under the License is distributed on an 15*9780544fSAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*9780544fSAndrew Rist# KIND, either express or implied. See the License for the 17*9780544fSAndrew Rist# specific language governing permissions and limitations 18*9780544fSAndrew Rist# under the License. 19*9780544fSAndrew Rist# 20*9780544fSAndrew Rist#************************************************************** 21*9780544fSAndrew Rist 22*9780544fSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweirpackage installer::windows::icon; 25cdf0e10cSrcweir 26cdf0e10cSrcweiruse installer::files; 27cdf0e10cSrcweiruse installer::globals; 28cdf0e10cSrcweiruse installer::pathanalyzer; 29cdf0e10cSrcweiruse installer::windows::idtglobal; 30cdf0e10cSrcweir 31cdf0e10cSrcweir########################################################################################################### 32cdf0e10cSrcweir# Creating the file Icon.idt dynamically 33cdf0e10cSrcweir# Content: 34cdf0e10cSrcweir# Name Data 35cdf0e10cSrcweir########################################################################################################### 36cdf0e10cSrcweir 37cdf0e10cSrcweirsub create_icon_table 38cdf0e10cSrcweir{ 39cdf0e10cSrcweir my ($iconfilecollector, $basedir) = @_; 40cdf0e10cSrcweir 41cdf0e10cSrcweir my @icontable = (); 42cdf0e10cSrcweir 43cdf0e10cSrcweir installer::windows::idtglobal::write_idt_header(\@icontable, "icon"); 44cdf0e10cSrcweir 45cdf0e10cSrcweir # Only the iconfiles, that are used in the shortcut table for the 46cdf0e10cSrcweir # FolderItems (entries in Windows startmenu) are added into the icon table. 47cdf0e10cSrcweir 48cdf0e10cSrcweir for ( my $i = 0; $i <= $#{$iconfilecollector}; $i++ ) 49cdf0e10cSrcweir { 50cdf0e10cSrcweir my $iconfile = ${$iconfilecollector}[$i]; 51cdf0e10cSrcweir 52cdf0e10cSrcweir installer::pathanalyzer::make_absolute_filename_to_relative_filename(\$iconfile); 53cdf0e10cSrcweir 54cdf0e10cSrcweir my %icon = (); 55cdf0e10cSrcweir 56cdf0e10cSrcweir $icon{'Name'} = $iconfile; # simply soffice.exe 57cdf0e10cSrcweir $icon{'Data'} = $iconfile; # simply soffice.exe 58cdf0e10cSrcweir 59cdf0e10cSrcweir my $oneline = $icon{'Name'} . "\t" . $icon{'Data'} . "\n"; 60cdf0e10cSrcweir 61cdf0e10cSrcweir push(@icontable, $oneline); 62cdf0e10cSrcweir } 63cdf0e10cSrcweir 64cdf0e10cSrcweir # Saving the file 65cdf0e10cSrcweir 66cdf0e10cSrcweir my $icontablename = $basedir . $installer::globals::separator . "Icon.idt"; 67cdf0e10cSrcweir installer::files::save_file($icontablename ,\@icontable); 68cdf0e10cSrcweir my $infoline = "Created idt file: $icontablename\n"; 69cdf0e10cSrcweir push(@installer::globals::logfileinfo, $infoline); 70cdf0e10cSrcweir 71cdf0e10cSrcweir} 72cdf0e10cSrcweir 73cdf0e10cSrcweir1; 74