summaryrefslogtreecommitdiff
path: root/toolkit
AgeCommit message (Collapse)AuthorFilesLines
2010-09-03dba33i: #163542# VCLXWindow::OnProcessCallbacks: process window events while ↵Frank Schoenheit [fs]2-4/+26
attempting to re-acquire the solar mutex - this prevents deadlocks with other threads trying to SendMessage into the main thread
2010-08-30dba33h: merge after pulling OOO330.m6Frank Schoenheit [fs]2-6/+19
2010-08-23fs33a: expose the WB_HIDESELECTION but of the tree control at its UNO APIFrank Schoenheit [fs]1-0/+1
2010-08-10merging in latest changes from OOO330(m3)Frank Schoenheit [fs]4-5/+7
2010-08-04mib18: #163185# avoid crash when document is closed and a modal dialog is activeMikhail Voytenko2-6/+19
2010-07-21CWS-TOOLING: integrate CWS unoawt2Jens-Heiner Rechtien23-488/+1389
2010-07-01unoawt2: do not inline methods of exported classesOcke Janssen [oj]2-4/+30
2010-07-01unoawt2: add XItemList to combobox as well, the sma eas for listboxOcke Janssen [oj]4-71/+331
2010-06-28unoawt2: add missing TOOLKIT_DLLPUBLIC to access classesOcke Janssen [oj]8-9/+23
2010-06-25unoawt2: #i10000# removed unused local variableFrank Schoenheit [fs]1-1/+0
2010-06-25unoawt2: #i112684# let UNO Controls implement the (newly introduced) ↵Frank Schoenheit [fs]7-15/+1232
XStyleSettingsSupplier, giving access to their style, in particular, to the HC flag
2010-06-25unoawt2: #i112683 localize string listOcke Janssen [oj]1-1/+20
2010-06-22CWS-TOOLING: integrate CWS mib16obo4-14/+17
2010-06-21mib16: rebase to m83Daniel Rentz24-395/+1178
2010-06-21CWS-TOOLING: integrate CWS gridcontrol04obo1-3/+3
2010-06-21unoawt2: derive the RoadmapControlModel from the GraphicControlModel base ↵Frank Schoenheit [fs]2-6/+7
class, benefiting from that classes new image handling this way
2010-06-18unoawt2: get rid of the ImageConsumer class - it has no clients anymoreFrank Schoenheit [fs]3-3/+0
2010-06-18unoawt2: get rid of the ImageConsumer/Producer connection between ↵Frank Schoenheit [fs]10-435/+86
image-rendering controls and their models - this channel doesn't correctly transport transparency. The connection via the 'Graphic' property works absolutely fine here.
2010-06-18unoawt2: don't assume URLs such as private:standardimage/... are relativeFrank Schoenheit [fs]1-3/+8
2010-06-17Automated merge with http://hg.services.openoffice.org/DEV300Frank Schoenheit [fs]2-8/+7
2010-06-17mib16: rebase to m82Daniel Rentz2-4/+14
2010-06-16fs33a: fixed supportsServiceFrank Schoenheit [fs]1-1/+1
2010-06-16fs33a: fixed VCLXFixedText::calcAdjustedSize to respect the given sizeFrank Schoenheit [fs]1-7/+6
2010-06-15mib16: contributed bugfixes and various new symbols in VBA compatibility ↵Daniel Rentz4-14/+17
implementation
2010-06-15CWS-TOOLING: integrate CWS unoawtobo20-372/+1142
2010-06-14CWS-TOOLING: integrate CWS dv12obo6-23/+36
2010-06-11unoawt: added UnoControlListBoxModel::ItemSeparatorPos, specifying the ↵Frank Schoenheit [fs]4-0/+14
position where to draw a separator between two items
2010-06-11unoawt: support XDialog2 for UNO dialogsFrank Schoenheit [fs]4-9/+47
2010-06-10unoawt: some more properties for the throbber model ... at least ↵Frank Schoenheit [fs]1-1/+8
EnableVisible will come handy
2010-06-10unoawt: ListBoxControl::updateFromModel: also set the SelectedItems ↵Frank Schoenheit [fs]2-1/+7
property, after we just set a new item list via itemListChanged
2010-06-04gridcontrol04: fixes for #i111279#, #i111957#, #i112114#Mihaela Kedikova2-5/+5
2010-06-03unoawt: merged in latest changes from CWS slidecopy (rebase to m80)Frank Schoenheit [fs]18-361/+1066
2010-05-28unoawt: WINDOW_*BOX also do not require a parent window, so allow creating ↵Frank Schoenheit [fs]1-1/+9
them without parent
2010-05-27CWS-TOOLING: integrate CWS sb120Vladimir Glazunov2-4/+14
2010-05-21CWS-TOOLING: integrate CWS gridcontrol_03Kurt Zenker12-202/+412
Notes: split repo tag: libs-gui_ooo/DEV300_m79
2010-05-20sb120: merged in DEV300_m78sb3-4/+4
2010-05-20unoawt: MultiSelectionSimpleMode property for list boxes, allowing ↵Frank Schoenheit [fs]4-1/+13
'browser-like' multi selection (where a single click onto an entry only toggles this entry)
2010-05-11ext03: implement XUnitConversion for the control, too (not only for the ↵Frank Schoenheit [fs]2-2/+62
control's peer)
2010-05-10os141: make compile with GCCFrank Schoenheit [fs]1-1/+1
2010-05-10CWS-TOOLING: integrate CWS vcl110Ivo Hinkelmann2-3/+4
2010-05-06os141: ensure the VCLXWindow is not destroyed while the callback event is ↵Frank Schoenheit [fs]1-0/+9
underway
2010-05-06os141: windowEnabled/Disabled events now also using the new mechanism, ↵Frank Schoenheit [fs]1-137/+29
implies the SolarMutex is not locked when they're called
2010-05-06os141: notify mouse events without a locked SolarMutexFrank Schoenheit [fs]1-140/+55
2010-05-06os141: before accessing the VCL menu in any public API method, lock the ↵Frank Schoenheit [fs]1-0/+44
SolarMutex
2010-05-06os141: allow the VCLXWindow to process arbitrary callbacks asynchronously, ↵Frank Schoenheit [fs]3-20/+108
without a locked SolarMutex. Intended for UNO listeners. Employ this mechanism for VCLXButton's actionPerformed callbacks, so we don't get threading problems in those callbacks. Normally, *each and every* UNO notification would need to happen without a SolarMutex, like VCLXWindow itself already does this for mouse events and window enabled/disabled events. However, for each and every event which we migrate to this new mechanism, we need to carefully evaluate which C++ clients might need to be adjusted. Java clients don't have a problem with this, of course.
2010-05-05os141: added XTreeControl::getNodeRectFrank Schoenheit [fs]2-0/+8
2010-05-03os141: getPhysicalLocation: do not destroy valid non-file URLsFrank Schoenheit [fs]1-6/+6
2010-05-02fs33a: compile errors on unxlngi6.pro / unxmacxi.proFrank Schoenheit [fs]2-3/+3
2010-04-29fs33a: #i111238# [s|g]etUserData -> [s|g]etItemDataFrank Schoenheit [fs]2-9/+9
2010-04-28sb120: #i111225# disabled failing tests for nowsb1-1/+1