summaryrefslogtreecommitdiff
path: root/vcl/win
AgeCommit message (Collapse)Author
2012-01-16vcl: introduce crystal clear separation between X11 Screens and DisplayScreensMichael Meeks
A DisplayScreen is a screen index as used by the upper level abstractions, an X11Screen is a wrapper around an integer X screen index.
2012-01-15vcl: fix MinGW buildMatúš Kukan
2012-01-15vcl: rename methods to crisp up a 'DisplayScreen' naming conceptMichael Meeks
2012-01-10Use SAL_N_ELEMENTSThomas Arnhold
Some more like Thorstens diff 9c59cd15b150638c845bbc275b9b04460afc23bd Done with some regex magic (and a check if this var is an array): s/sizeof\(\s*$var\s*\)\s*\/\s*sizeof\(\s*\*$var\s*/SAL_N_ELEMENTS\($var/gs
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2011-12-21explicitly write an 8 bit empty stringCaolán McNamara
2011-12-21tweak for pre language-defect #77Caolán McNamara
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
2011-12-21bah, need to tweak for pre c++0xCaolán McNamara
This reverts commit d00fc0e293852cfc019ffaffa65bee327397677b.
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
2011-12-15Removed extra semicolonsJesse
2011-12-07Change "menues" to "menus"Michael T. Whiteley
2011-12-05Revert "remove StarDesktop icon"Jan Holesovsky
This breaks unit tests in svtools. This reverts commit 915fe51391bdeee79f31173aeedab9746fc88000.
2011-12-04remove StarDesktop iconAndras Timar
2011-11-30convert over hidden windows-only ByteStringsCaolán McNamara
2011-11-27remove include of pch header from vclNorbert Thiebaud
2011-11-21Oups... Disambiguation solved another way in 1c2f5dLionel Elie Mamane
2011-11-21disambiguate (OU)?String comparison into OUString comparisonLionel Elie Mamane
2011-11-21link errorCaolán McNamara
2011-11-21trailing/missing ,Caolán McNamara
2011-11-21this casting of a void* is a disaster waiting to happenCaolán McNamara
only ever used for a string, to set it to a string type
2011-11-21more conversion to rtl::OUStringDavid Tardon
2011-11-21WaE: initialization orderDavid Tardon
2011-11-21WaE: type qualifiers ignored on function return typeDavid Tardon
2011-11-21these need to be getStr post OUString-izationCaolán McNamara
2011-11-21the string is sal_Unicode, not sal_CharDavid Tardon
2011-11-21init members in correct orderDavid Tardon
2011-11-21use correct rtl::OUString functionDavid Tardon
2011-11-21convert win plugin to rtl::O(U)StringDavid Tardon
2011-11-07redundant if not-null checks on deleteThomas Arnhold
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-25WaE: misc. windows related fixesMichael Meeks
2011-10-25Fix for fdo41997 continuation of VCL cleanupOlivier Hallot
2011-10-25generic: more unix conditional compilation pieces and win32 portingMichael Meeks
2011-10-25re-write gtksys to use the cleaner GdkScreen API avoiding X & XineramaMichael Meeks
2011-10-21Fix for bug fdo#41997, cleanup vcl enumerationOlivier Hallot
2011-10-09Make the key names look better under wine.Jan Holesovsky
2011-10-07cppcheck scope reduction of var in vcl/... salprn.cxxPierre-André Jacquod
2011-10-07cppcheck reduce scope of var in vcl/... salgdi2.cxx and avoid hidden varPierre-André Jacquod
2011-10-07cppcheck scope reduction of var in vcl/... salbmp.cxxPierre-André Jacquod
2011-10-04WaE: unreachable codeTor Lillqvist
2011-09-30Kill unused SalFrameWndProcA() functionTor Lillqvist
2011-09-30Kill unused ImplSalUpdateStyleFontA() functionTor Lillqvist
2011-09-30clean-up ghost traces of unicowNorbert Thiebaud
2011-09-28Let SalAbort dump core on developer builds.Stephan Bergmann
2011-09-06[cppchecker] local variable deletedPierre-André Jacquod
this local declaration makes no sense, based on the previous code, it seems this is a rest of the former code change
2011-09-01slightly buggy commit 66141a46a44fa1c96694e98453e28c077ca23f48 from 20/11/2008Julien Nabet
2011-09-01Some cppcheck cleaningJulien Nabet
2011-08-29Polyline improvement for WindowsDmitry A Ashkadov
I tried to draw polyline.... But on Windows... the end point is not drawn... the main problem is WinAPI LineTo() function. MSDN says: The LineTo function draws a line from the current position up to, but not including, the specified point. I think WinAPI Polyline() function uses LineTo() to draw a polyline. I see a hack in VCL module in WinSalgraphics::drawLine(): "we must paint the endpoint" But there is no such hack for drawPolyLine() function. A possible solution is same as for drawLine().