summaryrefslogtreecommitdiff
path: root/vcl/generic
AgeCommit message (Collapse)Author
2012-01-21unused methodsThomas Arnhold
2012-01-17remove unused methodsThomas Arnhold
2012-01-16typoCaolán McNamara
2012-01-16Clang -Wunneeded-internal-declaration.Stephan Bergmann
2012-01-16Same expression on both sides of '-'Caolán McNamara
2012-01-16callcatcher: update list, updateDirTimestamp now unusedCaolán McNamara
2012-01-13Replace getLength() with isEmpty() in vcl/generic/fontmanagerChristina Rossmanith
2012-01-13tidy some string typesCaolán McNamara
2012-01-13Replace (Byte)String with rtl::O(U)StringChristina Rossmanith
2012-01-13Drop XLFD support from fontmanagerKhaled Hosny
XLFD support was removed in commit 269f91c (#i110171) except for parsing fonts.dir and fonts.alias. I don't think this makes much sense in fontconfig era, and dropping it simplifies the font manager a bit (I don't even think we use server fonts at all).
2012-01-13callcatcher: update list, getXLFD is now unusedCaolán McNamara
2012-01-12post padmin shrinkage a lot of FontManager can go nowCaolán McNamara
2012-01-11Resolves:fdo#44078 fix unfortunate name alias mixups with DejaVu fontsCaolán McNamara
2012-01-11Resolves: fdo#44492 look up font by FC_FILE+FC_INDEX rather than FC_FAMILYCaolán McNamara
2012-01-11align m_nCollectionEntry with getFontFaceNumber and FC_FACE, bump cache magicCaolán McNamara
2012-01-11further shrinkage of padmin non-fontconfig code-pathsCaolán McNamara
2012-01-11adapt findFontFileID to know about multiple font faces in a font fileCaolán McNamara
2012-01-11addFontFile always add all font faces in that fileCaolán McNamara
2012-01-11align getFontFaceNumber with FC_FACECaolán McNamara
getFontFaceNumber returns the index of the font in the collection, font formats without indexes are now "0" rather than -1. All existing code already converted < 0 to 0 anyway, so simplifys a little.
2012-01-11on generic X11 unix we always use fontconfigCaolán McNamara
2012-01-10Rename weird "NetPath" term to the more descriptive "InstallationRootPath"Tor Lillqvist
2012-01-10can drop intermediate strings nowCaolán McNamara
2012-01-10Replace (Byte)String with rtl::O(U)StringChristina Rossmanith
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05Replace (Byte)String with rtl::O(U)StringChristina Rossmanith
2012-01-05convert SvStream::WriteLine to rtl::OStringCaolán McNamara
2012-01-05WaE and build errors with OSL_DEBUG_LEVEL == 2Caolán McNamara
2011-12-23adapt DEBUG codeCaolán McNamara
2011-12-22use officecfg/Office/Common.hxx directlyDavid Tardon
2011-12-15Removed extra semicolonsJesse
2011-12-13Resolves: rhbz#761009 IFSD_Equal is asymmetricalCaolán McNamara
2011-12-13Disable gtk3 at run-time, unless in experimental mode.Michael Meeks
2011-12-13replace ByteString(String ctorCaolán McNamara
2011-12-05add support for Gtk+ print dialog (#i106780#)David Tardon
2011-11-28Fix Kashida justification when there is no Kashida glyphKhaled Hosny
2011-11-28ByteString->rtl::OUStringToOStringCaolán McNamara
2011-11-28ByteString::GetToken->comphelper::string::getTokenCaolán McNamara
2011-11-27remove include of pch header from vclNorbert Thiebaud
2011-11-26Remove some uses of OUString::setCharAtAugust Sodora
2011-11-23add stripStart, can replace EraseTrailingCharsCaolán McNamara
2011-11-23add a stripStart, can replace EraseLeadingCharsCaolán McNamara
2011-11-21Convert Sal to rtl::O(U)StringDavid Tardon
2011-11-14callcatcher: remove freshly unused methodsCaolán McNamara
2011-11-02Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/coreMichael Stahl
2011-11-01SalYieldMutex::release(): add assertionMichael Stahl
2011-11-01callcatcher: remove unused appendStrCaolán McNamara
2011-10-27make FontManager work directly on FontSelectPatternCaolán McNamara
This disentangles another layer of intermediate substitution and assignment which we can do now after Christina's work and aligns this a step closer to the FcPattern concept and a few more percent more readable and maintainable I hope.
2011-10-27Rename ImplFontSelectData to FontSelectPattern so I know what it doesCaolán McNamara
Rename ImplFontSelectData to FontSelectPattern because I can never remember the name of the thing. This way I'll be able to remember that its basically the equivalent of fontconfig's FcPattern
2011-10-27Resolves: fdo#32665 handle that FreeSerif lacks some glyphs in bold/italicCaolán McNamara
FreeSerif lacks glyphs in bold/italic variants that it has in the normal one. A lot of our glyph fallback infrastructure, especially the caches don't expect that a normal variant of a font with extra emboldening or extra font skew can be a fallback for a bold/italic variant of itself which exists, but doesn't have the missing glyphs that the normal one does. We really need to improve our glyph/font caching, but we can get 90% of the way there by excluding such cases from the caches.