summaryrefslogtreecommitdiffstats
path: root/padmin
Commit message (Collapse)AuthorAgeFilesLines
* gbuild: remove various pointless calls that don't add anythingMichael Stahl2013-01-261-4/+0
| | | | Change-Id: I7eccac4fa8890c2873c6bbd7f8f5bf5b0dd006d2
* gbuild: do not copy boost headers aroundMichael Stahl2013-01-262-0/+4
| | | | | | | | | - do not use gb_UnpackedTarball_copy_header_files for boost - adapt the optimization in concat-deps.c for new path - use boost_headers in all LinkTargets that require it - add explicit include paths to mysqlc, mysqlcppconn, libvisio, liborcus Change-Id: I0c43e73ed43cc9d2e6bce8faf55e992d655a0bb9
* Changed SetText() / GetText() to take/return OUStringChr. Rossmanith2013-01-215-8/+8
| | | | | | | | | replaced lots of Len() with isEmpty() Change-Id: I6b82d48245ee2a0782e05a326f7934e9357227d0 Reviewed-on: https://gerrit.libreoffice.org/1795 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
* convert print properties tabdialog to .ui formatCaolán McNamara2012-12-177-103/+200
| | | | | | | the dialog itself that is, two of the pages are in .ui format and the rest are pending conversion Change-Id: I5a22cf1603abb0400272ce8969c0b43a00ed7739
* split out printer paper page and adapt code to .uiCaolán McNamara2012-12-177-344/+179
| | | | Change-Id: I95266926801ab5cb63ec012b37cd35757ec541ef
* split out printer device page and adapt code to .uiCaolán McNamara2012-12-148-395/+369
| | | | Change-Id: I7eacd837aacba452ab55ce707c3c032b2efadfb3
* ps level 2 and level 3 both assigned the id for level 2Caolán McNamara2012-12-141-1/+1
| | | | Change-Id: Ia35c9fbcc023d29a5a0ecff04fa688aa00ce30e8
* initial base for printer properties dialogGokul2012-12-131-0/+360
| | | | Change-Id: I98296c4665230fb056be45b66c9e428305ba1eaf
* Related: fdo#44664 spadmin support for forcing "postscript of driver level"Caolán McNamara2012-11-302-4/+27
| | | | | | | | | | | | pdf of 0 and ps of 0 == automatically pick pdf if pdf is default backend. Which means that spadmin wasn't able to disable pdf if one selected "postscript of driver leve", though picking an explicit postscript level would work. So we need to tweak things to use the pdf flag to be either automatic, explicitly pdf or explicitly ps Change-Id: Ic5382a3eb9cbcff39d363723825e75851d73520e
* AllSettings with LanguageTagEike Rathke2012-11-221-1/+2
| | | | Change-Id: I710ae66e51139662eb442b681fdf9cc9d158551d
* Avoid global static dataStephan Bergmann2012-11-131-1/+5
| | | | | | | | | | | | | | | | | | | | | | | ...that (indirectly) allocates memory via rtl/alloc.h, thereby causing the rtl_cache_wsupdate_init thread to be spawned before main, as on Mac OS X that would interfere with the code in sal_detail_initialize to close all file descriptors >= 3 -- on Mac OS X the pthreads implementation makes use of KQUEUE file descriptors. * This commit removes enough global static data to make ui-preview work again on Mac OS X (where it crashed at startup when the main thread closed the KQUEUE fd used by pthreads implementation threads). gengal uses further static data (at least from module sb), so needs further clean-up. * Avoiding global static instances derived from class Application required the introduction of vcl/vclmain.hxx. * That the vcl library was linked against the static vclmain library (which only provides an implementation of main) appears to me to be a historic relic (all executables should either include a SAL_IMPLEMENT_MAIN or link against vclmain), so I removed that. Change-Id: I048aa616208cb3a1b9bd8dcc3b729ba1665729bd
* convert extension dialog to .uiCaolán McNamara2012-11-131-2/+1
| | | | Change-Id: I4d938be9e960f421398dd40bbcf1b3cadc643de1
* fdo#46808, rename methodNoel Grandin2012-11-051-1/+1
| | | | | | | | | Rename utl::OConfigurationTreeRoot::tryCreateWithServiceFactory to utl::OConfigurationTreeRoot::tryCreateWithComponentContext Change-Id: Ib39b44b21d206b5fdfa4162106fbdeb30b1dd37c
* fdo#46808, Deprecate configuration::ConfigurationProvider old-style serviceNoel Grandin2012-10-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | ...in favor of existing new-style configuration::theDefaultProvider singleton. Theoretically, ConfigurationProvider instances can be created with specific Locale and EnableAsync arguments, but this is hardly used in practice, and thus effectively all uses of the ConfigurationProvider service use the theDefaultProvider instance, anyway. theDefaultProvider is restricted to the XMultiServiceFactory interface, while ConfigurationProvider also makes available XComponent. However, dispose must not be called manually on theDefaultProvider singleton anyway, and calls to add-/removeEventListener are so few (and in dubious code that should better be cleaned up) that requiring an explicit queryInterface does not really hurt there. This commit originated as a patch by Noel Grandin to "Adapt configuration::ConfigurationProvider UNO service to new style [by creating] a merged XConfigurationProvider interface for this service to implement." It was then modified by Stephan Bergmann by deprecating ConfigurationProvider instead of adding XConfigurationProvider and by replacing calls to ConfigurationProvider::create with calls to theDefaultProvider::get. Change-Id: I9c16700afe0faff1ef6f20338a66bd7a9af990bd
* Get rid of vcl::unohelper::GetMultiServiceFactoryStephan Bergmann2012-10-311-2/+2
| | | | | | | | | | | | | ...which effectively is just a glorious wrapper around comphelper::getProcessServiceFactory. In turn gets also rid of ImplSVAppData's mxMSF and mpMSFTempFileName and the rSMgr parameter to InitVCL. All the VCL users "soffice", "spadmin", and "unopkg gui" appear to still work fine. Change-Id: I797d48f7d0d8c35bb82124c9ab0ee63850c4d863
* fdo#46808, Adapt ui::dialogs::FolderPicker UNO service to new styleNoel Grandin2012-10-231-31/+25
| | | | | | | Create a merged XFolderPicker2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I4a2c2a8d491a8d5633c19ddcea547f0efe75b91d
* sal_Bool->bool in padminNoel Grandin2012-10-042-5/+5
| | | | Change-Id: Ica624c28b4e423531be3ef6a601f266d1cad1d07
* gbuild: invert handling of standard system libraries:Michael Stahl2012-09-282-4/+0
| | | | | | | Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
* gbuild: gb_Library_PLAINLIBS_NONE cleanup for unxgcc/solarisMichael Stahl2012-09-282-4/+4
| | | | Change-Id: Ia7f64bdd0fd81c5dcc08d828db4602b65e2da949
* gbuild: gb_Library_PLAINLIBS_NONE cleanup for MacMichael Stahl2012-09-282-5/+5
| | | | Change-Id: I66f8229e186e312ed3242695db9ef0768ab4d9a0
* gbuild: replace direct gb_STDLIBS use with ...Michael Stahl2012-09-282-2/+4
| | | | | | ... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
* gbuild: split uwinapi out of gb_STDLIBSMichael Stahl2012-09-282-0/+2
| | | | Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
* sal_Bool -> bool, convert InitAccessBridge and friendsNoel Grandin2012-09-261-1/+1
| | | | Change-Id: I08b5a76c68c67c3837427ad74106e170c64cdaaa
* Improvement on previous commit, UCB clean upStephan Bergmann2012-09-141-25/+4
| | | | | | | | | | | | | | | | | | | | | | | | | * As UCB is only ever initialized with "Local"/"Office", remove this configuration vector completely. The "create" ctor creates an instance internally initialized with those "Local"/"Office" keys. Special (test) code can still instantiate an uninitialized one via plain createInstance. And for backwards compatilibity process startup still ensures to create an initialized instance early, in case there is still code out there (in extensions) that later calls plain createInstance and expects to get the already-initialized (single) instance. * XInitialization is an "implementation detail" of the UniversalContentBroker service, do not expose in XUniversalContentBroker. * ucbhelper/configurationkeys.hxx is no longer needed and is removed. * ucbhelper/contentbroker.hxx is an empty wrapper and is removed; however, that requires ucbhelper::Content constructors to take explicit XComponentContext arguments now. * The only remaining code in ucbhelper/source/client/contentbroker.cxx is Android-only InitUCBHelper. Is that relevant still? Change-Id: I3f7bddd0456bffbcd13590c66d9011915c760f28
* Add more room to a label in print dialog too short for FR translationJean-Baptiste FAURE2012-07-281-1/+1
| | | | Change-Id: Ib54c7f58cf1d2e510b65038a6a0c21da2d6fd186
* ditch String::CreateFromAsciiCaolán McNamara2012-07-034-9/+9
| | | | Change-Id: I2b482bd323ac510629c5ee31868010b7cd6ce691
* re-base on ALv2 code. Removing:Michael Meeks2012-07-0215-340/+205
| | | | | | a patch contributed by Pedro Giffuni to handle FreeBSD issues that are unlikely to be an issue with a two-layer LibreOffice. http://svn.apache.org/viewvc?view=revision&revision=1180509
* targetted improvement of UNO API includes / usageMichael Meeks2012-07-021-4/+1
|
* Remove unused definesThomas Arnhold2012-07-021-2/+0
| | | | | | Some of them were commented out for documentation purpose. Change-Id: I29a6b2cbe774b527f0c3a0be5675160817a7f3ce
* targetted improvement of UNO API includes / usageMichael Meeks2012-07-021-4/+1
|
* removed unnecessary forward declarations of classTakeshi Abe2012-06-261-1/+0
| | | | Change-Id: Id08393f66797ef1c4378c8f3549d0900d4f1c7ec
* re-base on ALv2 code.Michael Meeks2012-06-221-23/+14
| | | | Change-Id: I8018d9b5fa01d1720c0392dc5fdc4a0656f25a35
* re-base on ALv2 code.Michael Meeks2012-06-2113-304/+187
| | | | Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
* re-base on ALv2 code.Michael Meeks2012-06-211-23/+14
| | | | Change-Id: Ice06e639213aeb6f7f23cbf4634947dd25613db1
* hrc cleanup: Remove completely unused RIDsThomas Arnhold2012-06-152-26/+0
| | | | | | | | | | | These RID definitions aren't used at any other point. So remove them. Unused START and END definitions were commented out for documentation purpose. All definitions in basctl/source/basicide/tbxctl.hrc were unused, so I removed this file. Change-Id: I4713188a12b9da912b2a91b85ea4e54ca1aeb994
* Get rid of GRADIENT_* defines, they conflict with Windows GDI types.Jan Holesovsky2012-06-121-1/+1
| | | | Change-Id: Ia0bc37f81b7213b20fc5093beb46d7a05b1ac931
* Targeted string re-work in padmin and saxThorsten Behrens2012-06-011-2/+2
|
* targeted string re-workNorbert Thiebaud2012-05-312-19/+19
| | | | Change-Id: Ifd6b90778725d94a9338a53a4cdc514cdb595052
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
* add package deps for resourcesDavid Tardon2012-04-091-4/+0
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-082-9/+9
| | | | | | | | | Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
* UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara2012-04-051-2/+2
|
* make ResId->OUString the primary routeCaolán McNamara2012-03-201-4/+4
|
* Various string function clean upStephan Bergmann2012-02-151-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
* fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan2012-02-101-1/+0
|
* Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich2012-02-081-0/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* make padmin ByteString freeCaolán McNamara2012-01-253-42/+41
|
* Improve checking for emptiness (while)Thomas Arnhold2012-01-211-1/+1
|
* further shrinkage of padmin non-fontconfig code-pathsCaolán McNamara2012-01-116-1152/+6
|