summaryrefslogtreecommitdiff
path: root/wizards
AgeCommit message (Collapse)AuthorFilesLines
2010-06-04CWS-TOOLING: integrate CWS dba33fIvo Hinkelmann11-352/+314
Notes: split repo tag: components_ooo/DEV300_m81
2010-06-03slidecopy: merged latest DEV300.m80 changesFrank Schoenheit [fs]6-6/+6
2010-05-27CWS-TOOLING: integrate CWS fwk138Vladimir Glazunov1-1/+1
2010-05-03slidecopy: what a stupid idea to hard-code numeric resource IDs in Java ↵Frank Schoenheit [fs]1-1/+1
files - this *cries* for breakage ...
2010-04-27Merge to DEV300_m77Mikhail Voytenko38-1348/+757
2010-04-17dba33f: post-rebase build problems fixedFrank Schoenheit [fs]1-3/+2
2010-04-16dba33f: merge with m76-branchFrank Schoenheit [fs]10-349/+312
2010-04-07sb120: merged in re/DEV300_next towards DEV300_m76 via cws/sb118sb35-1344/+753
2010-04-07sb118: merged in re/DEV300_next towards DEV300_m76sb35-1344/+753
2010-04-06fwk138: #i110177# fix typoMikhail Voytenko1-1/+1
2010-03-15dba33f: #i110036#: when creating new controls or grid columns, set ↵Frank Schoenheit [fs]3-9/+21
MouseWheelBehavior to NEVER
2010-03-09sb120: #i109978# removed --disable-qadevooosb1-1/+1
2010-03-04merged in re/DEV300_next towards DEV300_m74sb4-25/+6
2010-02-25sb111: merged in DEV300_m72sb258-1140/+259
2010-02-25sb118: merged in DEV300_m72sb258-1140/+259
2010-02-17CWS-TOOLING: integrate CWS changefileheader2Vladimir Glazunov258-1139/+258
Notes: split repo tag: components_ooo/DEV300_m72 split repo tag: components_ooo/DEV300_m73
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien258-1139/+258
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-02-11sb118: #i109112# re-purpose EXTRAJARFILESsb4-4/+4
2010-02-05sb111: merged in DEV300_m71sb6-40/+45
2010-02-04CWS svxsplit: merge with m71Mathias Bauer6-40/+45
2010-02-02#i107450#: some fixes for problems found in CAT0 testMathias Bauer1-1/+1
2010-03-11autorecovery: merged changes from m74. Still need to find out how to re-do ↵Frank Schoenheit [fs]254-1146/+261
two patches (to module_hidden_ooo.scp and file_ooo.scp in scp2/source/ooo) which do not apply anymore.
2010-02-05autorecovery: allow for a human-readable DocumentServiceName instead of this ↵Frank Schoenheit [fs]1-4/+3
strange class ID when creating a document definition
2010-02-05autorecovery: use a human-readable media type instead of this strange class IDFrank Schoenheit [fs]1-3/+1
2010-02-05autorecovery: mergeFrank Schoenheit [fs]10-875/+371
2010-02-05autorecovery: mergeFrank Schoenheit [fs]10-875/+371
2010-02-05autorecovery: merge after pulling CWS dba33eFrank Schoenheit [fs]11-25/+43
2010-02-04autorecovery: form and report wizzard now also using XDatabaseDocumentUI, ↵Frank Schoenheit [fs]10-884/+372
instead of manipulating document definitions All database object wizards by now employ XDatabaseDocumentUI. This way, it is ensured that the controller has the full control over the opened sub components. Still, other third-party code could use direct access to the document definitions, and open sub documents this way. This would go unnoticed by the application controller at the moment. I would be possible to fix this, by introducing broadcasts from the document definitions, listened to by the controller. But as this sounds like a rare case, and XDatabaseDocumentUI is the preferred way for third-party components, too, such an implementation is deferred to Later ...
2010-02-04autorecovery: post-rebase build problems solvedFrank Schoenheit [fs]1-1/+2
2010-02-04autorecovery: commit resolved merge (after rebase to m71)Frank Schoenheit [fs]8-73/+101
2010-02-03autorecovery: more unused interfaces removedFrank Schoenheit [fs]3-83/+0
2010-02-03autorecovery: populate the 'Command' propertyFrank Schoenheit [fs]2-6/+10
2010-02-03autorecovery: also moved the QueryWizard to using ↵Frank Schoenheit [fs]4-191/+104
XDatabaseDocumentUI.loadComponent, instead of opening the sub component itself
2010-02-03autorecovery: removed unused class XCallQueryWizardFrank Schoenheit [fs]2-43/+0
2010-02-03autorecovery: re-work the table wizard so that it does not open the table ↵Frank Schoenheit [fs]8-126/+212
itself, but uses XDatabaseDocumentUI Consequently, it does not need to return the created model/controller anymore. This way, the application controller has full control over its sub components, which didn't work reliably before. Other wizards (query/form/report) are to follow. For this purpose, they're also to be based on the newly introduced DatabaseObjectWizard class.
2010-02-02autorecovery: addDatabaseDocument: do not close the document after having ↵Frank Schoenheit [fs]1-64/+61
disposed it - this will throw nowadays
2010-02-01autorecovery: more sophisticated configuration data for interaction handlersFrank Schoenheit [fs]3-4/+4
The generic css.task.InteractionHandler implementation in module uui is now able to instantiate "sub handlers", i.e. components to delegate a request to, based on the type of the request, and some configuration data. The "old" (and now deprecated) configuration scheme at org.openoffice.ucb.InteractionHandler did not contain type information, so any handlers registered there were always called when no default implementation for a given request was available. The "new" configuration scheme at org.openoffice.Interaction contains UNO type information. That is, a given handler implementation can declare itself responsible for an arbitrary set of UNO types, and for each of those types, whether it is also responsible for sub types. The generic interaction handler implementation uses this configuration data, when it encounteres an interaction request it cannot fullfill itself, to instantiate a component to delegate the request to. As with the "old" data, such a component is required to support the css.task.XInteractionHandler2 interface. Also, if it supports css.lang.XInitialization, then it will be initialized with a name-value pair, the name being "Parent", the value being the XWindow interface of the parent window for any message boxes. As an examplary implementation for this feature, the css.sdb.InteractionHandler has been deprecated. Now the css.sdb.DatabaseInteractionHandler is reponsible for database-related interactions, and the new configuration scheme is pre-filled with data assigning this responsibility. Consequently, a lot of places previously creating an css.sdb.InteractionHandler have been modified to create the default css.task.InteractionHandler.
2010-01-27CWS-TOOLING: integrate CWS dba33dIvo Hinkelmann6-40/+45
2010-01-22dba33f: #i108548# extend SingleSelectQueryComposer appendFilterByColumn with ↵Ocke Janssen [oj]8-344/+293
additonal parameter
2010-01-21dba33e: merge to m70Ocke Janssen [oj]15-61/+83
2010-01-21sb111: merged in DEV300_m70sb3-90/+105
2010-01-15dba33b: mergeOcke Janssen [oj]7-55/+4
2010-01-15dba33b: merge m69Ocke Janssen [oj]3-88/+103
2010-01-08dba33f: merge from dba33eOcke Janssen [oj]17-151/+188
2010-01-08sb111: merged in DEV300_m69sb3-50/+0
2010-01-05CWS-TOOLING: integrate CWS fontooocleanupJens-Heiner Rechtien3-50/+0
2010-01-05sb111: merged in DEV300_m68sb4-5/+4
2009-12-16dba33e: #i107623# allow finishWizard to return a success flag, and re-enable ↵Frank Schoenheit [fs]11-25/+42
the finish button in case of failure
2009-12-11dba33d: merge after pulling the latest changes from CWS dba33bFrank Schoenheit [fs]1-2/+2
2009-12-10sb111: merged in DEV300_m67sb10-38/+38