Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-06 | cppcheck: avoid possible null pointer dereferences | Ivan Timofeev | |
2011-11-04 | gtk3: move gtk+ file picker into vcl - a more sensible place for it | Michael Meeks | |
2011-11-04 | Some WNT-only code still needs ApplicationEvent(); plus made the other ctor ↵ | Stephan Bergmann | |
explicit. | |||
2011-11-04 | gtk3: add missing include, and rtl namespace | Michael Meeks | |
2011-11-04 | Further clean up of areas touched by previous commit. | Stephan Bergmann | |
2011-11-04 | String->OUString, remove unused code | August Sodora | |
2011-11-04 | add missing includes | David Tardon | |
2011-11-03 | Cleanup basebmp a little | Joseph Powers | |
I removed 2 unused headers. I also stopped delivering a lot of headers that no one outside of basebmp cared about. I also removed the unused methods: basebmp::BitmapDevice::getPaletteEntryCount() const basebmp::BitmapDevice::getPixelData(basegfx::B2IPoint const&) | |||
2011-11-03 | Unwind and refactor some of the Grey Palette stuff | Caolán McNamara | |
We get some assertions in the smoketest with --enable-debug, looking closer I think to use a single bIsGrey flag we... a) would need to check after every modification of a Palette that mbIsGrey is still valid and update it accordingly b) There are a lot of routes outside of direct assignation to the stock Grey Palettes that can result in Grey palettes in e.g. the pngreader, they would all need updating :-( So, how about just refactoring the original HasGreyPalette and IsGreyPalette. | |||
2011-11-03 | fix gtk2 build | Cosimo Cecchi | |
2011-11-03 | gtk3: Check for gtk3 >= 3.2 - we need that for broadway anyway | Michael Meeks | |
2011-11-03 | IsGreyPalette: belt and braces, empty palettes are grey (apparently) | Michael Meeks | |
2011-11-03 | gtk: fix the build | Cosimo Cecchi | |
2011-11-03 | gtk3: implement rendering for Listbox widgets | Cosimo Cecchi | |
2011-11-03 | gtk3: translate the cairo context instead of rendering from (1, 1) | Cosimo Cecchi | |
It's just way easier than doing it every time. | |||
2011-11-03 | gtk3: misc cleanups | Cosimo Cecchi | |
2011-11-03 | gtk3: implement rendering for Comboboxes | Cosimo Cecchi | |
2011-11-03 | gtk3: implement rendering for spinbuttons | Cosimo Cecchi | |
2011-11-03 | gtk3: always set the wmclass using the X helper | Cosimo Cecchi | |
The helper provided by GTK is only meant to be used before the toplevel is realized, so it's not useful for this case. Instead, always call the X helper. This also gets rid of some GTK warnings we get on the terminal. | |||
2011-11-03 | gtk: add widget_get_xid() | Cosimo Cecchi | |
And use it in GtkSalFrame | |||
2011-11-03 | probably need to add mbIsGrey to operator== comparison | Caolán McNamara | |
2011-11-03 | need to assign mbIsGrey in operator= | Caolán McNamara | |
2011-11-03 | mbIsGrey needs to be initialized in ctor | Caolán McNamara | |
2011-11-03 | Cleanup inline IsGreyPalette implementation for mac platforms. | Michael Meeks | |
2011-11-03 | Removed IsGreyPalette | Emanuele Fia | |
2011-11-02 | Move BitmapDevice to use B2IBox instead of B2IRange. | Thorsten Behrens | |
Semantically, B2IBox represents a pixel rect much better than B2IRange - replaced all occurences in and around the software renderer, and client code. | |||
2011-11-02 | Keep basebmp free of naked ptrs. | Thorsten Behrens | |
Moved the implementation detail that SalFrames lifetime is handled manually in vcl out of basebmp & into vcl. Added lightweight wrapper class to decouple damagetracker lifetime from GtkFrame lifetime. | |||
2011-11-02 | Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/core | Michael Stahl | |
2011-11-02 | Library_vclplug_gtk3.mk: fix typo | Michael Stahl | |
2011-11-02 | Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/core | Michael Stahl | |
2011-11-02 | gtk3: improve the GTK3 theming layer somewhat | Cosimo Cecchi | |
Improvements include: - don't create widgets when calculating the native region size, but use GtkStyleContext instead - refactor the native control drawing cycle - theme scrollbars - theme menu radios/checks/separators/arrows | |||
2011-11-02 | drop freshly unused methods | Caolán McNamara | |
2011-11-02 | use SAL_N_ELEMENTS | David Tardon | |
2011-11-02 | use external | David Tardon | |
2011-11-01 | SalYieldMutex::release(): add assertion | Michael Stahl | |
2011-11-01 | let's see if better eventloop integr. makes it into Qt4.9, if any | Luboš Luňák | |
https://bugreports.qt.nokia.com//browse/QTBUG-16934 | |||
2011-11-01 | gtk: fix cpu burn when inactive - broken timeout calculation | Michael Meeks | |
2011-11-01 | drop GetImageIds | Caolán McNamara | |
2011-11-01 | callcatcher: remove unused appendStr | Caolán McNamara | |
2011-11-01 | adapt naming scheme | Caolán McNamara | |
2011-11-01 | add and use an OString::equalsIgnoreAsciiCaseAsciiL equivalent to OUString one | Caolán McNamara | |
2011-10-31 | rhbz#657394: crash closing document while printing | Michael Stahl | |
- XRenderable implementation in SwXTextDocument and ScModelObj throw DisposedExceptions instead of RuntimeExceptions - SfxPrinterController catches DisposedException and aborts printing - vcl::PrinterController checks that the printing was not aborted | |||
2011-10-31 | gtk: tolerate NULL from gdk_screen_get_monitor_plug_name | Michael Meeks | |
2011-10-28 | drop some unused code | Caolán McNamara | |
2011-10-27 | make FontManager work directly on FontSelectPattern | Caolá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-27 | Rename ImplFontSelectData to FontSelectPattern so I know what it does | Caolá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-27 | renderArea is implemented only with GTK-3 | Petr Mladek | |
fixes build on SLED10 with gtk-2.8 and cairo-1.0.2 | |||
2011-10-27 | there is no USE_XINERAMA define, but USE_XINERAMA_XSUN/USE_XINERAMA_XORG | Caolán McNamara | |
2011-10-27 | remove ItalicMatrix into delivered header | Caolán McNamara | |
2011-10-27 | Resolves: fdo#32665 handle that FreeSerif lacks some glyphs in bold/italic | Caolá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. |