Commit graph

11215 commits

Author SHA1 Message Date
Frank Schoenheit [fs]
0194bd2f4e gridsort: introduce XSortableGridDataModel::removeColumnSort 2011-01-18 17:30:17 +01:00
Ivo Hinkelmann
0ee1f45b46 CWS-TOOLING: integrate CWS gridcontrol07 2011-01-18 16:37:37 +01:00
Frank Schoenheit [fs]
b3025e4791 gridsort: #163172# added UNO API support for sorting grid data. Implementation still unfinished.
Things missing in the SortableGridData implementation
- add as listener to the delegator, so we're notified of changes
- translate and multiplex those changes
- do own notifications (XGridDataListener.dataChanged) when the sort order changed
- (possibly) update the sort order when the data in the current sort-column changed
2011-01-18 11:49:20 +01:00
Frank Schoenheit [fs]
adb41f92c6 gridsort: made the row title a row heading, being an Any instead of a string 2011-01-16 22:18:58 +01:00
Ingrid Halama [iha]
8858bf5fbe chart46: merge with DEV300_m97 2011-01-15 17:21:37 +01:00
Frank Schoenheit [fs]
43379fbdae gridsort: XMutableGridData: renamed updateRow to updateRowData for consistency; introduced updateRowToolTip as shortcut for multiple updateCellToolTip calls 2011-01-14 15:13:23 +01:00
Frank Schoenheit [fs]
7af54f5dfe gridsort: updateCell->updateCellData, setCellToolTip->updateCellToolTip; in both methods, have (Col,Row) params instead of (Row,Col), for consistency reasons 2011-01-14 14:20:49 +01:00
Frank Schoenheit [fs]
fda5c8a28a gridsort: re-add tooltip support to X(Mutable)GridDataModel, this time more explicit, and less magical 2011-01-14 13:19:09 +01:00
Frank Schoenheit [fs]
f26a7965ee gridsort: ouch. Removed IAccessibleTable::GetSelectedRows. It exposed an internal implementation detail, and in
fact some clients (the A11Y API implementation) exploited this, e.g. by simply adding elements to the array,
without the owner (the TableControl/_Impl) ever noticing it. Replaced that with a working API.

In this course, removed XGridSelection::getMin/MaxSelectionIndex. Pretty useless IMO, unused, and ugly to
implement.
2011-01-14 11:04:24 +01:00
Frank Schoenheit [fs]
c8030037c4 gridsort: reworked the notification system for inserted/removed rows
In this course, more code which was in SVTXGridControl was moved to the places it belongs to, effectively
meaning that the TableControl has better chances than before to be used outside an SVTXGridControl (though
we're not there, yet).

Also, the selection-related methods in TableControl/_Impl got some refactoring love, so the implementation
details are hidden in the Impl class now, instead of being exposed to an exploited by the TableControl.

And while we were there ... The XGridSelection does not provide a |selectColumn| anymore (there was no
preparation whatsoever for column selection, anywhere, thus it was a complete dummy.)
Also, its de/selectRows methods have been removed: They have questionable use, and make implementation
rather difficult, compared with multiple calls to de/selectRow.
2011-01-13 14:08:36 +01:00
Frank Schoenheit [fs]
1b1ba41c8b gridsort: removed the XGridDataModel.removeRows flavour which took an arbitrary sequence of indexes - this makes the handling, in particular for listeners, unnecessarily complex, and has a questionable use only 2011-01-12 21:59:36 +01:00
Frank Schoenheit [fs]
8e393744a5 gridsort: @raises is not recognized by autodoc, use @throws instead 2011-01-12 21:42:50 +01:00
Daniel Rentz [dr]
dde4826512 dr78: rebase to DEV300_m97 2011-01-12 13:29:17 +01:00
Frank Schoenheit [fs]
edc807267c gridsort: reworked the color model for grid controls. Now supporting more than two alternating colors,
having more reasonable defaults for the colors (VOID instead of some hard-coded values, which thus are unusable).
Also, introduced new property UseGridLines controlling whether or not to paint the table grid.
2011-01-12 12:34:24 +01:00
Frank Schoenheit [fs]
13d81b8e4d gridsort: XGridCell/Renderer are unused and useless 2011-01-12 09:07:23 +01:00
Frank Schoenheit [fs]
59a5decdc5 gridsort: XGridControl: add methods to retrieve the current row/col 2011-01-11 14:00:09 +01:00
Frank Schoenheit [fs]
aac19933d2 gridsort: XGridControl::getItemIndexAtPoint renamed to getRowAtPoint; introduced getColumnAtPoint 2011-01-11 12:36:41 +01:00
Frank Schoenheit [fs]
89199c1a01 gridsort: +XGridColumn::HelpText, to be displayed as tooltip for the column header 2011-01-11 11:42:27 +01:00
Frank Schoenheit [fs]
e058014fdd gridsort: removed XGridControl::setTooltip. It had a rather strange semantics, seems to be unused in the current
OOo code base, and would belong to the model, if at all.
Still one thing to do: do not unconditionally display the cell content as tooltip, but make this dependent on
whether or not the cell content fits into the cell.
2011-01-11 10:58:26 +01:00
Frank Schoenheit [fs]
a47a228eb5 gridsort: removed XGridColumn::setIndex - don't really want to have something like this at the public API 2011-01-10 15:48:16 +01:00
Frank Schoenheit [fs]
57ccfcb412 gridsort: XGridDataModel: moved modifying functionality into XMutableGridDataModel. 2011-01-10 15:47:51 +01:00
Frank Schoenheit [fs]
344095b555 gridsort: do not retrieve all row headers at once, this doesn't scale. Instead, allow to retrieve the header/title of a row given by index 2011-01-07 15:52:55 +01:00
Frank Schoenheit [fs]
334a11ea82 gridsort: document ownership of the grid columns 2011-01-07 15:35:19 +01:00
Frank Schoenheit [fs]
dcd6c8a873 gridsort: alllow removing columns from a grid control column model 2011-01-07 15:28:22 +01:00
Frank Schoenheit [fs]
14ea1e208b gridsort: added XGridColumnModel::createColumn 2011-01-07 13:08:22 +01:00
Frank Schoenheit [fs]
a9edc6355d gridsort: RowHeight belongs to the GridControlModel (not the GridDataModel), too 2011-01-07 10:51:57 +01:00
Frank Schoenheit [fs]
5c398088ae gridsort: RowHeaderWidth/ColumnHeaderHeight do not belong to the GridData/ColumnModel, but to the GridControlModel 2011-01-07 10:31:19 +01:00
Frank Schoenheit [fs]
74bbd23c2d gridsort: removed css.awt.grid.ScrollBarMode - it was unused, and if it weren't, it wouldn't belong into this module 2011-01-07 09:55:56 +01:00
Juergen Schmidt
52bce12e36 jsc340: i115337: correct since tags 2011-01-06 17:30:50 +01:00
Frank Schoenheit [fs]
ba24c7a4fd gridsort: XGridDataModel: do not provide access to all data at once, instead use cell-based access 2011-01-06 16:28:45 +01:00
Frank Schoenheit [fs]
828ecc65de gridsort: removed XGridColumnModel::copyColumn
This does the very same as XGridColumn::XCloneable::createClone does, so there's no need for this method anymore.
2011-01-06 14:45:02 +01:00
Vladimir Glazunov
ca7711ae75 CWS-TOOLING: integrate CWS jl160 2011-01-05 15:54:17 +01:00
Frank Schoenheit [fs]
91e166b89b gridsort: member names usually start with UpperCase - corrected this for GridColumn/DataEvent, for sake of consistency 2011-01-05 12:16:37 +01:00
Frank Schoenheit [fs]
7afc24c907 dba34b: merged DEV300m96 2011-01-05 10:07:18 +01:00
Juergen Schmidt
6422b36958 merge dev300m96 2011-01-05 10:04:45 +01:00
Frank Schoenheit [fs]
a9fa19d43d gridsort: css.awt.grid.GridControlEvent is unused - removed 2011-01-05 09:08:06 +01:00
Joachim Lingner
4d9bdb9e1a jl160 merge with DEV300m96 2011-01-04 12:01:53 +01:00
Frank Schoenheit [fs]
078fd62ab2 gridsort: allow cloning grid columns, and the (default) grid data/column model 2011-01-03 23:14:55 +01:00
Daniel Rentz [dr]
356af7bc4d dr78: rebase to DEV300m96 2010-12-29 17:02:32 +01:00
Daniel Rentz [dr]
865df52045 dr77: rebase to DEV300m96 2010-12-27 12:33:29 +01:00
Frank Schoenheit [fs]
1007b2c085 gridsort: do not allow NULL/VOID for a grid's columnd/data model - nothing would work then. (Both are already default-initited to some empty model in the grid model's ctor, for quite a few revisions) 2010-12-23 16:10:02 +01:00
Frank Schoenheit [fs]
bbac63a411 undoapi: merged after pulling DEV300_m96. Most probably still not buildable:A number of changes which happened in the CWS need to be redone due to the new build system 2010-12-23 10:01:58 +01:00
Hans-Joachim Lankenau
1d7eba8be6 CWS-TOOLING: integrate CWS dv22 2010-12-17 16:42:38 +01:00
Frank Schoenheit [fs]
a8a6c71eca gridsort: renamed XGridDataModel::add/removeDataListener to add/removeGridDataListener - this consistency with the actual listener type name will make introspection work 2010-12-17 14:32:31 +01:00
Frank Schoenheit [fs]
c3941b3759 gridsort: renamed XGridColumn::add/removeColumnListener to add/removeGridColumnListener - this consistency with the actual listener type name will make introspection work 2010-12-17 14:25:50 +01:00
Frank Schoenheit [fs]
2c98acf5d0 gridsort: let XGridColumnModel::getColumn throw an IndexOutOfBoundsException when appropriate 2010-12-17 14:16:47 +01:00
Frank Schoenheit [fs]
70fe9267fa gridsort: removed XGridColumn::updateColumn
The implementation of this column was only a wrapper around what setColumnWidth/setPreferredWidth
would have done. Also, the mechanism how this method was used was really weird, effectively propagating
the (preferred) width from the ITableColumn implementation of the grid peer to the XGridColumn implementation
of the grid column model. This was done each time the (preferred) width was access for reading - not really
a clever solution.
Now, the ITableColumn knows its respective XGridColumn, and simply forwards the (preferred) width as needed.
2010-12-17 14:07:29 +01:00
Hans-Joachim Lankenau
acab65899e CWS-TOOLING: integrate CWS mib19 2010-12-17 13:36:59 +01:00
Frank Schoenheit [fs]
271223c57b undoapi: merged DEV300m95 2010-12-16 13:15:45 +01:00
Thomas Lange [tl]
3f108c6ad8 cws tl84: merge with DEV300_m95 2010-12-13 13:47:19 +01:00
Niklas Nebel
7a95aae89f dr78: #i116044# correct handling of DataPilot grand total name 2010-12-10 17:59:07 +01:00
Niklas Nebel
a9467d1caf dr78: #i57431# correct property descriptions 2010-12-10 17:22:41 +01:00
Ingrid Halama [iha]
ba52f782aa chart46: #i25706# implement date axis - switching to scatter or bubble 2010-12-10 17:07:53 +01:00
Ingrid Halama [iha]
7fce163b03 chart46: #i25706# implement date axis - cleanup 2010-12-10 14:10:17 +01:00
Ocke.Janssen
72f9ca8513 Automated merge with http://hg-lan.germany.sun.com/ooo/DEV300 2010-12-10 10:31:08 +01:00
Daniel Rentz [dr]
388f90fc20 mib19: rebase to DEV300m95 2010-12-09 10:13:55 +01:00
Frank Schoenheit [fs]
6042ad494b gridsort: introduced container listeners at the grid model, reworked and fixed listener relationship between grid model/control/peer 2010-12-07 13:50:47 +01:00
Frank Schoenheit [fs]
0517592621 gridsort: derive XGridColumnListener from XEventListener 2010-12-07 10:20:00 +01:00
Frank Schoenheit [fs]
bf9a90185d gridsort: removed unused and empty XGridControlListener interface 2010-12-07 09:57:40 +01:00
Daniel Rentz [dr]
b0f61ae2f6 rebased to OOO330m17 2010-12-06 13:01:23 +01:00
Takeshi Abe
36e2296bf8 Replace all occured, occurance etc. 2010-12-06 09:16:29 +00:00
Ingrid Halama [iha]
0c1fb57fe1 chart46: #i25706# implement date axis - simplify axis access in chart api 2010-12-03 23:01:44 +01:00
David Tardon
61f19adfc2 remove #include of oneself 2010-12-02 13:03:37 +01:00
Frank Schoenheit [fs]
51a080b32f Automated merge with ssh://hg.services.openoffice.org/cws/gridcontrol07 2010-12-02 12:00:43 +01:00
Frank Schoenheit [fs]
e86fc3238c undoapi: #i33781# include XUndoManagerSupplier 2010-12-02 09:27:22 +01:00
Frank Schoenheit [fs]
fd8593ad2d undoapi: clear the redo stack when leaving an Undo context resp. list action, not when entering it. This is a pre-requisite for Writer's upcoming migratin to SfxUndoManager 2010-12-01 15:30:01 +01:00
Ingrid Halama [iha]
24f500ecd3 chart46: #i25706# implement date axis - some docu issues 2010-11-30 19:17:18 +01:00
Ivo Hinkelmann
e944bed116 CWS-TOOLING: integrate CWS pl08 2010-11-30 17:00:37 +01:00
Ingrid Halama [iha]
5fee0ab21c chart46: #i25706# implement date axis 2010-11-30 01:45:03 +01:00
Michael Stahl
8f949765d1 udoapi: merge sw refactoring with undoapi stuff 2010-11-25 15:10:59 +01:00
Frank Schoenheit [fs]
e08c34ff87 dba34b: merge after pulling DEV300.m94 2010-11-22 14:30:32 +01:00
Frank Schoenheit [fs]
8691e6616a undoapi: merge after pulling DEV300.m94 2010-11-22 10:17:18 +01:00
David Tardon
74848374c6 use spec. tags for true, false and null 2010-11-20 16:57:15 +01:00
David Tardon
8d90ceed41 fix some typos 2010-11-20 16:53:01 +01:00
Thomas Lange [tl]
e26c527f81 cws tl84: merge with DEV300_m93 2010-11-19 09:51:15 +01:00
Frank Schoenheit [fs]
7af6d80401 undoapi: make reset an explicit, atomar operation at the IUndoManager, instead of simulating it in a higher layer 2010-11-16 22:35:25 +01:00
Ingrid Halama
a5bc657159 chart52: #28670# make the legend within charts resizeable - part 1 - patch from hackfest2010 2010-11-16 15:03:23 +01:00
Vladimir Glazunov
e81cb20849 CWS-TOOLING: integrate CWS kso46 2010-11-16 15:00:14 +01:00
Vladimir Glazunov
e40614c824 CWS-TOOLING: integrate CWS tlmath01 2010-11-16 13:49:31 +01:00
Vladimir Glazunov
8fa84b1dc3 CWS-TOOLING: integrate CWS dockingwindows 2010-11-16 13:44:30 +01:00
Frank Schoenheit [fs]
00f0883d47 undoapi: derive XUndoManager from XChild, to allow convenient access to the document it belongs to 2010-11-16 12:22:48 +01:00
Frank Schoenheit [fs]
346f21a522 undoapi: step 2.3 of the migration of css.chart2.XUndoManager to css.document.XUndoManager:
migrate the clients of XDocumentActions to using the new XUndoManager, and completely remove the (X)DocumentActions
 still some more cleanup needed
2010-11-16 08:49:38 +01:00
Frank Schoenheit [fs]
c44e3b9bd0 undoapi: step 2.2 of the migration of css.chart2.XUndoManager to css.document.XUndoManager:
base the implementation of XDocumentActions on the document's UndoManager
2010-11-15 22:12:48 +01:00
Juergen Schmidt
b15f7fcbde jsc340: i114887: remove old not used draft types 2010-11-15 13:38:30 +01:00
Philipp Lohmann [pl]
9e23887095 rebase to DEV300_m92 2010-11-10 14:39:06 +01:00
Thomas Lange [tl]
5cee5c1628 cws tl84: #i114751# fingerprint data for Serbian 2010-11-10 14:26:24 +01:00
Frank Schoenheit [fs]
9037b3a456 undoapi: step 2.0 of the migration of css.chart2.XUndoManager to css.document.XUndoManager: rename css.chart2.XUndoManager to XDocumentActions. Not sure this class will still exist (in either form) after the refactoring is finished. 2010-11-09 21:37:01 +01:00
Frank Schoenheit [fs]
a358dac4b7 undoapi: step 0.1 of the migration of css.chart2.XUndoManager to css.document.XUndoManager: remove the XModel paramter from the XUndoManager methods, they're an implicit attribute of the instance 2010-11-09 21:36:54 +01:00
Frank Schoenheit [fs]
0d112e4aef undoapi: step 0.0 of the migration of css.chart2.XUndoManager to css.document.XUndoManager: remove the unused XUndoHelper 2010-11-09 21:36:50 +01:00
Juergen Schmidt
4c0075d037 jsc340: merge with DEV300m92 2010-11-09 15:50:17 +01:00
Juergen Schmidt
1ba335d36a jsc340: i114887: cleanup of old not used draft types 2010-11-09 15:23:28 +01:00
Daniel Rentz [dr]
4584f69f0d dr77: rebase to DEV300m92 2010-11-09 15:15:30 +01:00
Mihaela Kedikova
f468ede49f gridcontrol07: bugfixes for gridcontrol 2010-11-08 17:59:39 +01:00
Aurimas Fišeras
01fb4e72cd Fix some typos in documentation 2010-11-08 14:04:52 +00:00
Thomas Lange [tl]
ea07156b50 cws tlmath01: merge with DEV300_m92 2010-11-05 09:37:44 +01:00
Mikhail Voytenko
fc4b708fca pl08: #163778# use EncryptionData from MediaDescriptor 2010-11-04 17:56:39 +01:00
Daniel Rentz [dr]
82cdefeb20 dr77: typos in IDL 2010-11-03 20:04:05 +01:00
Thomas Lange [tl]
08167a5a50 cws tlmath01: #i972# Math baseline alignment 2010-11-03 15:50:00 +01:00
Daniel Rentz [dr]
771b51557a dr77: #i102872# little cleanup of IDL documentation related to sheet filters 2010-11-03 10:02:35 +01:00
Daniel Rentz [dr]
f8adcdcdfe dr77: #i102872# little cleanup of IDL documentation related to sheet filters 2010-11-03 09:55:23 +01:00
Noel Power
1040260aa3 initial import of latest cws container_controls 2010-11-02 20:05:28 +00:00
Mihaela Kedikova
372ea03e65 tabcontrol: merge with DEV300_m91 2010-11-02 17:50:53 +01:00
Carsten Driesner
b080045318 dockingwindows: #i112595# Merge changes 2010-11-02 16:54:43 +01:00
Mihaela Kedikova
cfd5f04fbc tabcontrol: changes regarding version and services 2010-11-02 16:08:50 +01:00
Frank Schoenheit [fs]
caeafe3596 undoapi: allow retrieving the count/comments of Undo/Redo actions both on the current and the top level 2010-11-02 13:19:49 +01:00
Juergen Schmidt
0d62b806f5 jsc340: i115337: cleanup since tags 2010-11-02 10:46:09 +01:00
Dirk Voelzke
3999199798 dv22: merge with DEV300_m91 2010-11-01 10:49:06 +01:00
Frank Schoenheit [fs]
ff778a6b97 merge after pulling DEV300.m91 2010-10-29 11:31:21 +02:00
Frank Schoenheit [fs]
2f2dc57988 merge after pulling DEV300.m91 2010-10-29 09:56:29 +02:00
Daniel Rentz [dr]
918911ae91 dr77: #i115296# add constants for SpreadsheetViewSettings::Show... properties 2010-10-28 16:28:05 +02:00
Frank Schoenheit [fs]
b8ae0aaaf1 undoapi: outsourced locking functionality into a dedicated interface 2010-10-27 12:23:53 +02:00
Frank Schoenheit [fs]
d4be10b3fa undoapi: detailed the error handling 2010-10-27 12:23:48 +02:00
Frank Schoenheit [fs]
b28ad98732 undoapi: renamings, API docs 2010-10-25 13:53:25 +02:00
Frank Schoenheit [fs]
57c21148af undoapi: implementation/tests for hidden Undo contexts 2010-10-25 12:48:42 +02:00
Frank Schoenheit [fs]
c90d7a8bc8 undoapi: defined, implemented, and tested the exception handling for XUndoAction/Manager::Undo 2010-10-25 11:48:17 +02:00
Aurimas Fišeras
84f40b44e8 Fix some more typos in documentation 2010-10-24 20:22:31 +01:00
Frank Schoenheit [fs]
9ede458a16 undoapi: added locking support to the XUndoManager 2010-10-22 15:33:15 +02:00
Frank Schoenheit [fs]
c15d04604a undoapi: spelling 2010-10-22 15:00:38 +02:00
Philipp Lohmann [pl]
11f0b018b1 rebase to DEV300_m90 2010-10-21 17:32:19 +02:00
Frank Schoenheit [fs]
55c84d6599 undoapi: specified (and implemented and tested) what should happen when you leave an Undo context which does not have any elements 2010-10-21 12:12:16 +02:00
Frank Schoenheit [fs]
a3963e83ea undoapi: added isUndo/RedoPossible / getCurrent/AllUndo/RedoTitle(s) to XUndoManager 2010-10-19 22:23:16 +02:00
Aurimas Fišeras
641f12b3e7 Use en-US spelling for consistency 2010-10-19 06:27:53 +01:00
Aurimas Fiseras
3124c2d617 Fix typos in the documentation 2010-10-17 08:49:58 -05:00
Frank Schoenheit [fs]
460b79696a undoapi: API and Impl tweaks 2010-10-15 23:39:05 +02:00
Frank Schoenheit [fs]
52831664bf undoapi: deprecated those two (unused) exceptions 2010-10-15 23:39:04 +02:00
Frank Schoenheit [fs]
69702668ba undoapi: explicitly include XInterface.idl - sometimes (not always - strange enough) the IDL compiler complains 2010-10-15 13:30:09 +02:00
Frank Schoenheit [fs]
fd589fba71 undoapi: first sketch of the listener API - not sure this will survive 'til the final version 2010-10-14 16:40:32 +02:00
Frank Schoenheit [fs]
7ef064a082 undoapi: some flesh on the initial skeleton 2010-10-14 16:40:30 +02:00
Frank Schoenheit [fs]
0658bb205a undoapi: initial version of an UNO Undo API, implemented empty for SFX-based documents 2010-10-14 16:40:29 +02:00
Mihaela Kedikova
caf47dc9cc tabcontrol: merge with DEV300_m89 2010-10-14 13:49:43 +02:00
Katarina Machalkova
d273fa0c5e Merged xlsx-shared-xlsx-snapshot.diff from ooo-build 2010-10-13 20:00:04 +02:00
Noel Power
12f8fea186 initial commit for vba blob ( not including container_control stuff ) 2010-10-13 13:32:25 +01:00
Noel Power
c04f6ffeae initial commit for vba blob ( not including container_control stuff ) 2010-10-13 13:32:25 +01:00
J. Graeme Lingard
bda7aaeb74 Remove redundant #include, #define & comments 2010-10-13 12:51:10 +02:00
Aurimas Fišeras
624840542b Fix some typos in documentation 2010-10-12 21:25:06 +01:00
Carsten Driesner
a184042176 dockingwindows: Merge changes from DEV300m89 2010-10-12 13:35:45 +02:00
Kai Sommerfeld
bd38767638 #i98699# - Published. 2010-10-11 14:42:17 +02:00
Aurimas Fišeras
2f68ee59b2 Simply fixes some annoying typos in documentation including OO bug #112563. 2010-10-11 11:02:33 +01:00
Mathias Bauer
3b2f1dd8b1 CWS changehid: resync to m89 2010-10-09 18:56:58 +02:00
Cédric Bosdonnat
ff254bfe74 fate#307731, fate#307730: Adds dotted and dashed border lines 2010-10-06 23:51:38 +02:00
Jan Holesovsky
f35f56c6ef Merge commit 'ooo/OOO330_m9' 2010-10-06 14:39:29 +02:00
Frank Schoenheit [fs]
ee2c47597d dba34b: #i112779# new 'animated images' UNO control, superseding the (X)SimpleAnimation and Throbber controls 2010-10-06 14:21:47 +02:00
Kohei Yoshida
b49099fd11 Ported calc-distributed-cell-text-*.diff from ooo-build.
This feature enables horizontal 'distributed' alignment and vertical
'justified' and 'distributed' alignments for cell contents in Calc.
Note that this feature relies on ODF 1.2 extended in order for the
relevant cell attributes to be saved in ODS.
2010-10-05 11:26:00 -04:00
Kohei Yoshida
e7d4f41f05 Ported calc-insert-current-time-offapi.diff from ooo-build.
This is to make the semicolon key available for UNO API.
2010-10-04 18:08:54 -04:00
Philipp Lohmann [pl]
a8303182c5 pl08: #i111050# use interaction handler for export warnings, this may be suppressed by a custom interaction handler 2010-10-01 17:36:06 +02:00
Kohei Yoshida
3bd273aea8 Ported autocorrect-accidental-caps-lock-offapi.diff from ooo-build. 2010-09-29 16:11:18 -04:00
Vladimir Glazunov
018583c60b CWS-TOOLING: integrate CWS tl82 2010-09-29 10:05:34 +02:00
Joachim Lingner
c8108e906f jl160 #i114794# registration data folder of bundled extensions in the user installation references PREREG registration data in brand/share/prereg/bundled folder 2010-09-29 09:11:20 +02:00
Daniel Rentz [dr]
fe5564d6ce dr77: rebase to DEV300_m88 2010-09-28 20:30:05 +02:00
Dirk Voelzke
9cf6c55929 #dv22#i114788# Add 'show license' to extension popup menu 2010-09-28 10:03:56 +02:00
Thorsten Behrens
2d2ef78574 offapi-typecheck-whitelist.diff: Removed blunt instrument from offapi types.
Added whitelist file that contains the typenames which are permitted to change.
2010-09-17 12:34:35 +02:00
Thorsten Behrens
af2342e4c7 fit-list-to-size.diff: Shrink font automatically when text overflows.
i#94086

Scale-font-down if typing text in Impress and the text box becomes too small.
2010-09-17 12:34:35 +02:00
Kohei Yoshida
accdbd10ca calc-jump-on-formula-ref-offapi.diff: Migrated
n#464359, i#101018

allow ctrl-[ and ctrl-] to jump to references used in a formula expression.
2010-09-16 10:38:21 +02:00
Kohei Yoshida
0906c3ead2 calc-grammar-xls-english-offapi.diff: Support Excel English grammar
Support Excel English grammar needed for VBA and (probably) for xlsx filter.
2010-09-16 09:01:06 +02:00
Radek Doulik
3ef384b860 emf+-cppcanvas-offapi-renderer.diff: emf+ import - renderer iface definition 2010-09-15 17:54:39 +02:00
Carsten Driesner
52edbeb788 dockingwindows: Merge changes 2010-09-14 09:44:40 +02:00
obo
c265740c90 CWS-TOOLING: integrate CWS calc59 2010-09-14 09:13:16 +02:00
Thomas Lange [tl]
1c53ed8953 cws tl82: #i114267# code clean-up 2010-09-13 15:04:50 +02:00
Andreas Bregas
deef6d3019 mib19: #163573# NativeObjectWrapper implementation (deactivated) 2010-09-08 16:34:55 +02:00
Kurt Zenker
8c29f37b19 CWS-TOOLING: integrate CWS fs33a 2010-09-03 14:39:55 +02:00
Ocke Janssen [oj]
f878701a60 tabcontrol: fix some compile errors 2010-09-02 14:32:02 +02:00
Niklas Nebel
0720069a5e calc59: #i114256# Don't move DataPilot fields to orientations that the source doesn't support 2010-09-01 17:53:25 +02:00
Daniel Rentz [dr]
5cb86200ef dr77: rebase to DEV300m87 2010-08-30 19:25:43 +02:00
Daniel Rentz [dr]
4418a389db mib19: rebase to OOO330m6 2010-08-30 16:50:28 +02:00
Daniel Rentz [dr]
22ece3acee mib19: #163429# switch off form design mode in new documents created with VBA symbol Workbooks.Add 2010-08-30 14:34:00 +02:00
Ocke Janssen [oj]
7c139e9834 tabcontrol: #i113362# impl tabcontrol in awt 2010-08-27 12:13:59 +02:00
Daniel Rentz
0484109ea6 dr77: #i114128# import legacy drawing controls 2010-08-26 18:37:44 +02:00
Frank Schoenheit [fs]
58eb2da91a fs33a: merge after pulling OOO330.m5's changes 2010-08-25 16:07:39 +02:00
sb
e160aa5237 sb130: merged in OOO330_m5 2010-08-25 14:21:49 +02:00
Mihaela Kedikova
fde9364cfe tabcontrol: new source code for tabcontrol added 2010-08-12 17:44:19 +02:00
Mihaela Kedikova
9cdd338cf8 tabcontrol: new source code for tabcontrol added 2010-08-12 17:36:53 +02:00
sb
10e6c6cbfb sb130: #i113096# introduced com.sun.star.configuration.XUpdate.removeExtensionXcuFile 2010-08-12 10:22:02 +02:00
Joerg Skottke [jsk]
c6f4e78212 jl154: Local merge 2010-08-11 08:57:13 +02:00
Frank Schoenheit [fs]
d7b14e2a27 merging in latest changes from OOO330(m3) 2010-08-10 14:53:21 +02:00
Frank Schoenheit [fs]
ad10870bac merging in latest changes from CWS unoawt2 2010-08-10 14:21:53 +02:00
Thomas Lange [tl]
ac73dea856 cws tl82: merge with DEV300_m86 2010-08-05 17:16:04 +02:00
Joachim Lingner
651a4efc73 jl154 merging with OOO330m2 2010-08-02 15:39:29 +02:00
Daniel Rentz
8b75670936 mib17: missing includes 2010-07-28 16:02:20 +02:00
Daniel Rentz
4d7251cf1b mib17: rebase to OOO330_m2 2010-07-27 18:05:46 +02:00
Daniel Rentz
fca9fd4bee mib17: rebase to DEV300_m84 2010-07-27 17:12:01 +02:00
Daniel Rentz
549c7c352a mib17: move VBA specific interfaces into vba subdir 2010-07-27 14:43:33 +02:00
Daniel Rentz
c4e382c4e9 mib17: #i112634# prepare loading VBA with document events from ODF and XLSM 2010-07-27 11:53:35 +02:00
Mathias Bauer
42114b9a3c CWS changehid: resync to m85 2010-07-22 10:55:12 +02:00
Jens-Heiner Rechtien
d90f2e3df8 CWS-TOOLING: integrate CWS unoawt2 2010-07-21 15:32:50 +02:00
Joachim Lingner
10cd763487 jl154 merging with OOO300_m1 2010-07-16 15:45:18 +02:00
Daniel Rentz
5e171284bb mib17: #i112634# do not use an UNO interface to handle VBA BeforeSave and BeforePrint events 2010-07-15 14:30:44 +02:00
Mathias Bauer
0f600eaa38 CWS changehid: resync to m84 2010-07-13 14:38:37 +02:00
Kurt Zenker
5394e06d44 CWS-TOOLING: integrate CWS jl153_OOO330 2010-07-13 14:03:52 +02:00
Daniel Rentz
9eaf48be9b mib17: #i112634# API changes 2010-07-12 11:17:00 +02:00
Mathias Bauer
1a3ab0a069 CWS changehid: #i111874#: change code to support HelpIds as byte strings 2010-07-10 18:21:24 +02:00
Daniel Rentz
ecc8b1ae1d mib17: adjusted codename handling in xls filter, do not restrict vba event handling to xls files 2010-07-07 19:44:06 +02:00
Daniel Rentz
b103addffc mib17: #i112634# add VBA sheet event handling, based on a patch from Noel Power 2010-07-06 19:34:53 +02:00
Frank Schoenheit [fs]
d297ee4d52 Automated merge with ssh://hg@hg.services.openoffice.org/cws/unoawt2 2010-07-06 15:24:32 +02:00
Joachim Lingner
9a2205a1fc jl154 #i112934# replace old license headers introduced by CWS jl152 2010-07-05 15:46:50 +02:00
Ocke Janssen [oj]
f938ba01ac unoawt2: add XItemList same as for listbox model 2010-07-01 11:52:27 +02:00
Frank Schoenheit [fs]
414d7d423f unoawt2: why the heck does the IDL compiler complain, but still build it? Fixed build breaker ... 2010-06-25 17:40:24 +02:00
Frank Schoenheit [fs]
b03a30dd5a unoawt2: #i112684# let UNO Controls implement the (newly introduced) XStyleSettingsSupplier, giving access to their style, in particular, to the HC flag 2010-06-25 15:09:38 +02:00
Carsten Driesner
372bb3504d Merge changes 2010-06-24 11:35:00 +02:00
obo
e92af53734 CWS-TOOLING: integrate CWS calc55 2010-06-23 13:54:50 +02:00
Carsten Driesner
302e5229bb dockingwindows: #i112595# First refactoring version of the layout manager including skeleton classes for new docking windows 2010-06-22 11:12:01 +02:00