Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
153c9de4
Kaydet (Commit)
153c9de4
authored
Nis 08, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove OOo gengal.
Change-Id: I04697bd7b50361bcb72daf7032047f6e0c07a772
üst
5aecdfae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
370 deletions
+0
-370
gengal.cxx
svx/source/gengal/gengal.cxx
+0
-267
gengal.sh
svx/source/gengal/gengal.sh
+0
-103
No files found.
svx/source/gengal/gengal.cxx
deleted
100644 → 0
Dosyayı görüntüle @
5aecdfae
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <stdio.h>
#include <unistd.h>
#include <memory>
#include <list>
#include <unotools/streamwrap.hxx>
#include <unotools/ucbstreamhelper.hxx>
#include <comphelper/processfactory.hxx>
#include <cppuhelper/bootstrap.hxx>
#include <com/sun/star/uno/Reference.h>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/registry/XSimpleRegistry.hpp>
#include <com/sun/star/ucb/UniversalContentBroker.hpp>
#include <tools/urlobj.hxx>
#include <vcl/vclmain.hxx>
#include <vcl/window.hxx>
#include <vcl/svapp.hxx>
#include <vcl/font.hxx>
#include <vcl/print.hxx>
#include <vcl/toolbox.hxx>
#include <vcl/help.hxx>
#include <vcl/scrbar.hxx>
#include <vcl/wrkwin.hxx>
#include <vcl/msgbox.hxx>
#include <osl/file.hxx>
#include <osl/process.h>
#include <rtl/bootstrap.hxx>
#include <svx/galtheme.hxx>
#include <svx/gallery1.hxx>
using
namespace
::
com
::
sun
::
star
::
uno
;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
lang
;
typedef
::
std
::
list
<
OUString
>
FileNameList
;
class
GalApp
:
public
Application
{
public
:
virtual
int
Main
();
protected
:
Reference
<
XMultiServiceFactory
>
xMSF
;
void
Init
();
};
Gallery
*
createGallery
(
const
OUString
&
aGalleryURL
)
{
return
new
Gallery
(
aGalleryURL
);
}
void
disposeGallery
(
Gallery
*
pGallery
)
{
delete
pGallery
;
}
static
void
createTheme
(
OUString
aThemeName
,
OUString
aGalleryURL
,
OUString
aDestDir
,
sal_uInt32
nNumFrom
,
FileNameList
&
rFiles
)
{
Gallery
*
pGallery
(
createGallery
(
aGalleryURL
)
);
if
(
!
pGallery
)
{
fprintf
(
stderr
,
"Could't acquire '%s'
\n
"
,
OUStringToOString
(
aGalleryURL
,
RTL_TEXTENCODING_UTF8
).
getStr
()
);
exit
(
1
);
}
fprintf
(
stderr
,
"Work on gallery '%s'
\n
"
,
OUStringToOString
(
aGalleryURL
,
RTL_TEXTENCODING_UTF8
).
getStr
()
);
fprintf
(
stderr
,
"Existing themes: %lu
\n
"
,
sal
::
static_int_cast
<
unsigned
long
>
(
pGallery
->
GetThemeCount
()
)
);
if
(
!
pGallery
->
HasTheme
(
aThemeName
)
)
{
if
(
!
pGallery
->
CreateTheme
(
aThemeName
,
nNumFrom
)
)
{
fprintf
(
stderr
,
"Failed to create theme
\n
"
);
disposeGallery
(
pGallery
);
exit
(
1
);
}
}
fprintf
(
stderr
,
"Existing themes: %lu
\n
"
,
sal
::
static_int_cast
<
unsigned
long
>
(
pGallery
->
GetThemeCount
()
)
);
SfxListener
aListener
;
GalleryTheme
*
pGalTheme
=
pGallery
->
AcquireTheme
(
aThemeName
,
aListener
);
if
(
pGalTheme
==
NULL
)
{
fprintf
(
stderr
,
"Failed to acquire theme
\n
"
);
disposeGallery
(
pGallery
);
exit
(
1
);
}
fprintf
(
stderr
,
"Using DestDir: %s
\n
"
,
OUStringToOString
(
aDestDir
,
RTL_TEXTENCODING_UTF8
).
getStr
()
);
pGalTheme
->
SetDestDir
(
String
(
aDestDir
));
FileNameList
::
const_iterator
aIter
;
for
(
aIter
=
rFiles
.
begin
();
aIter
!=
rFiles
.
end
();
++
aIter
)
{
// Should/could use:
// if ( ! pGalTheme->InsertFileOrDirURL( aURL ) ) {
// Requires a load more components ...
Graphic
aGraphic
;
if
(
!
pGalTheme
->
InsertURL
(
*
aIter
)
)
fprintf
(
stderr
,
"Failed to import '%s'
\n
"
,
OUStringToOString
(
*
aIter
,
RTL_TEXTENCODING_UTF8
).
getStr
()
);
else
fprintf
(
stderr
,
"Imported file '%s' (%lu)
\n
"
,
OUStringToOString
(
*
aIter
,
RTL_TEXTENCODING_UTF8
).
getStr
(),
sal
::
static_int_cast
<
unsigned
long
>
(
pGalTheme
->
GetObjectCount
()
)
);
}
pGallery
->
ReleaseTheme
(
pGalTheme
,
aListener
);
disposeGallery
(
pGallery
);
}
static
void
PrintHelp
()
{
fprintf
(
stdout
,
"Utility to generate OO.o gallery files
\n\n
"
);
fprintf
(
stdout
,
"using: gengal --name <name> --path <dir> [ --destdir <path> ]
\n
"
);
fprintf
(
stdout
,
" [ --number-from <num> ] [ files ... ]
\n\n
"
);
fprintf
(
stdout
,
"options:
\n
"
);
fprintf
(
stdout
,
" --name <theme>
\t\t
defines a name of the created or updated theme.
\n
"
);
fprintf
(
stdout
,
" --path <dir>
\t\t
defines directory where the gallery files are created
\n
"
);
fprintf
(
stdout
,
"
\t\t\t
or updated.
\n
"
);
fprintf
(
stdout
,
" --destdir <dir>
\t
defines a path prefix to be removed from the paths
\n
"
);
fprintf
(
stdout
,
"
\t\t\t
stored in the gallery files. It is useful to create
\n
"
);
fprintf
(
stdout
,
"
\t\t\t
RPM packages using the BuildRoot feature.
\n
"
);
fprintf
(
stdout
,
" --number-from <num>
\t
defines minimal number for the newly created gallery
\n
"
);
fprintf
(
stdout
,
"
\t\t\t
theme files.
\n
"
);
fprintf
(
stdout
,
" files
\t\t\t
lists files to be added to the gallery. Absolute paths
\n
"
);
fprintf
(
stdout
,
"
\t\t\t
are required.
\n
"
);
}
static
OUString
Smartify
(
const
OUString
&
rPath
)
{
INetURLObject
aURL
;
aURL
.
SetSmartURL
(
rPath
);
return
aURL
.
GetMainURL
(
INetURLObject
::
NO_DECODE
);
}
void
GalApp
::
Init
()
{
if
(
getenv
(
"OOO_INSTALL_PREFIX"
)
==
NULL
)
{
OUString
fileName
=
GetAppFileName
();
int
lastSlash
=
fileName
.
lastIndexOf
(
'/'
);
#ifdef WNT
// Don't know which directory separators GetAppFileName() returns on Windows.
// Be safe and take into consideration they might be backslashes.
if
(
fileName
.
lastIndexOf
(
'\\'
)
>
lastSlash
)
lastSlash
=
fileName
.
lastIndexOf
(
'\\'
);
#endif
OUString
baseBinDir
=
fileName
.
copy
(
0
,
lastSlash
);
OUString
installPrefix
=
baseBinDir
+
OUString
(
"/../.."
);
OUString
envVar
(
"OOO_INSTALL_PREFIX"
);
osl_setEnvironment
(
envVar
.
pData
,
installPrefix
.
pData
);
}
OSL_TRACE
(
"OOO_INSTALL_PREFIX=%s"
,
getenv
(
"OOO_INSTALL_PREFIX"
)
);
Reference
<
XComponentContext
>
xComponentContext
=
::
cppu
::
defaultBootstrap_InitialComponentContext
();
xMSF
=
Reference
<
XMultiServiceFactory
>
(
xComponentContext
->
getServiceManager
(),
UNO_QUERY
);
if
(
!
xMSF
.
is
()
)
fprintf
(
stderr
,
"Failed to bootstrap
\n
"
);
::
comphelper
::
setProcessServiceFactory
(
xMSF
);
// For backwards compatibility, in case some code still uses plain
// createInstance w/o args directly to obtain an instance:
com
::
sun
::
star
::
ucb
::
UniversalContentBroker
::
create
(
xComponentContext
);
}
int
GalApp
::
Main
()
{
bool
bHelp
=
false
;
OUString
aPath
,
aDestDir
;
OUString
aName
(
"Default name"
);
sal_uInt32
nNumFrom
=
0
;
FileNameList
aFiles
;
for
(
sal_uInt16
i
=
0
;
i
<
GetCommandLineParamCount
();
i
++
)
{
OUString
aParam
=
GetCommandLineParam
(
i
);
if
(
aParam
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"--help"
)
)
||
aParam
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"-h"
)
)
)
bHelp
=
true
;
else
if
(
aParam
==
"--name"
)
aName
=
GetCommandLineParam
(
++
i
);
else
if
(
aParam
==
"--path"
)
aPath
=
Smartify
(
GetCommandLineParam
(
++
i
)
);
else
if
(
aParam
==
"--destdir"
)
aDestDir
=
GetCommandLineParam
(
++
i
);
else
if
(
aParam
==
"--number-from"
)
nNumFrom
=
GetCommandLineParam
(
++
i
).
ToInt32
();
else
aFiles
.
push_back
(
Smartify
(
aParam
)
);
}
if
(
bHelp
)
{
PrintHelp
();
return
EXIT_SUCCESS
;
}
createTheme
(
aName
,
aPath
,
aDestDir
,
nNumFrom
,
aFiles
);
return
EXIT_SUCCESS
;
}
void
vclmain
::
createApplication
()
{
static
GalApp
aGalApp
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
svx/source/gengal/gengal.sh
deleted
100644 → 0
Dosyayı görüntüle @
5aecdfae
#!/bin/sh
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org 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 Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
# enable file locking
SAL_ENABLE_FILE_LOCKING
=
1
export
SAL_ENABLE_FILE_LOCKING
# resolve installation directory
sd_cwd
=
"
`
pwd
`
"
if
[
-h
"
$0
"
]
;
then
sd_basename
=
`
basename
"
$0
"
`
sd_script
=
`
ls
-l
"
$0
"
|
sed
"s/.*
${
sd_basename
}
-> //g"
`
cd
"
`
dirname
"
$0
"
`
"
cd
"
`
dirname
"
$sd_script
"
`
"
else
cd
"
`
dirname
"
$0
"
`
"
fi
sd_prog
=
"
`
pwd
`
"
cd
..
sd_binary
=
`
basename
"
$0
"
`
".bin"
sd_inst
=
"
`
pwd
`
"
# change back directory
cd
"
$sd_cwd
"
# check if all required patches are installed
if
[
-x
"
$sd_prog
/sopatchlevel.sh"
]
;
then
"
$sd_prog
/sopatchlevel.sh"
if
[
$?
-eq
1
]
;
then
exit
0
fi
fi
# set search path for shared libraries
sd_platform
=
`
uname
-s
`
sd_prog1
=
"
$sd_prog
/../basis-link/program"
sd_prog2
=
"
$sd_prog
/../basis-link/ure-link/lib"
case
$sd_platform
in
AIX
)
LIBPATH
=
${
sd_prog1
}
:
${
sd_prog2
}${
LIBPATH
+
:
${
LIBPATH
}}
export
LIBPATH
;;
Darwin
)
DYLD_LIBRARY_PATH
=
${
sd_prog1
}
:
${
sd_prog2
}${
DYLD_LIBRARY_PATH
:+:
${
DYLD_LIBRARY_PATH
}}
export
DYLD_LIBRARY_PATH
;;
HP-UX
)
SHLIB_PATH
=
${
sd_prog1
}
:
${
sd_prog2
}
:/usr/openwin/lib
${
SHLIB_PATH
:+:
${
SHLIB_PATH
}}
export
SHLIB_PATH
;;
*
)
LD_LIBRARY_PATH
=
${
sd_prog1
}
:
${
sd_prog2
}${
LD_LIBRARY_PATH
:+:
$LD_LIBRARY_PATH
}
export
LD_LIBRARY_PATH
;;
esac
# misc. environment variables
unset
XENVIRONMENT
# set path so that other apps can be started just by name
PATH
=
"
$sd_prog
"
:
$PATH
export
PATH
OOO_INSTALL_PREFIX
=
${
OOO_INSTALL_PREFIX
-
$sd_prog
/../..
}
if
!
test
-e
$OOO_INSTALL_PREFIX
/basis-link
;
then
# Hack for vanilla OOo binaries' split install layout
OOO_INSTALL_PREFIX
=
$OOO_INSTALL_PREFIX
/../openoffice.org3
fi
export
OOO_INSTALL_PREFIX
# execute binary
exec
"
$sd_prog
/
$sd_binary
"
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment