[api-dev] Re: [dev] Integrating external program with OOo on Windows - request for assistance!

2006-03-23 Thread Anders S. Johansen
OK, have not ahd much luck posting top [EMAIL PROTECTED], so am trying again... Quoting Mathias Bauer [EMAIL PROTECTED]: [Hide Quoted Text] Anders S. Johansen wrote: Our goal is to implement a few functions/methods, preferably encapsulated in an object (but not necessarily) that will allow

Re: [api-dev] UNO package setting keybindings

2006-03-23 Thread Paolo Mantovani
Hi Bart, Alle 09:17, giovedì 23 marzo 2006, Bart Aimar ha scritto: A final question about shortcut... (I hope!) Now I can register the shortcut at document level. But what is the the code to unregister it? In other way how I can clear the registrated shortcut at document level and give

Re: [api-dev] How to chang a text to HyperLink

2006-03-23 Thread Michal TOMA
Hi Steffen, thanks a lot for your help, your code helped to solve my issue! I now have a search en repalce with formating! Micheal Hi Michael, from your example I do not really see that you actually do a search: Adding some stuff to your example code: xReplaceable =

Re: [api-dev] Styles and Formatting Dialog

2006-03-23 Thread Kent Gibson
You can do everything with styles programmatically that you can do with the UI. I only know of one exception and that is changing the name of the default style. However you can change the settings of the default style. I am not sure if you can hide somehow the default styles, there are some

Re: [api-dev] UNO package setting keybindings

2006-03-23 Thread Bart Aimar
Paolo Mantovani ha scritto: Hi Bart, In other way how I can clear the registrated shortcut at document level and give back (useable/active) the same shortcut from the global (or module) level. you should use the method : XAcceleratorConfiguration.removeKeyEvent(aKeyEvt) Thank's

[api-dev] toolbar glue or adding to standard toolbar groups

2006-03-23 Thread Jorge . Pelizzoni
Hi, all! It seems to be new behaviour in OOo 2.0 that when a new toolbar group is added (by means of a .xcu) it appears floating by default so the user is free and encouraged to place it wherever they see fit. I myself find this great, but I have a client that find it annoying... Well, so here

Re: [api-dev] toolbar glue or adding to standard toolbar groups

2006-03-23 Thread Carsten Driesner
[EMAIL PROTECTED] wrote: Hi, all! It seems to be new behaviour in OOo 2.0 that when a new toolbar group is added (by means of a .xcu) it appears floating by default so the user is free and encouraged to place it wherever they see fit. I myself find this great, but I have a client that find it

Re: [api-dev] toolbar glue or adding to standard toolbar groups

2006-03-23 Thread Jorge . Pelizzoni
Selon Laurent Godard [EMAIL PROTECTED]: i think the question is - i define an addon containing a toolbar - when deploying the addon is floating - user has to drag it to dock it manually How to deploy an addon containing a toolbar so that it is docked automatically ? I couldn't put it

Re: [api-dev] toolbar glue or adding to standard toolbar groups

2006-03-23 Thread Carsten Driesner
Laurent Godard wrote: Hi Carsten Again, I don't know what you mean with a toolbar group. There is a set of default configuration properties for a toolbar. One of the properties controls the docking state, but you can only change the default for every toolbar. i think the question is - i

Re: [api-dev] detecting unrecoverable error event

2006-03-23 Thread Stephan Wunderlich
Hi John, 1.) Most important: is there any way to suppress the dialog so that OO just goes away quietly without user intervention. you could start the office with the parameters -nocrashreport and -norestore ... e.g. soffice.exe -accept=... -norestore -nocrashreport 2.) Convenient: Is

Re: [api-dev] XComponentLoader event onload

2006-03-23 Thread Andreas Schlüns
Antoine POURCHEZ wrote: Hello, I want to load and next update an ODT in a java program. To do that, i write this code : Object vDesktop = OoBootstrap.createDesktop(); XComponentLoader vCompLoader = (XComponentLoader) UnoRuntime.queryInterface(XComponentLoader.class,

Re: [api-dev] Styles and Formatting Dialog

2006-03-23 Thread Mathias Bauer
Tuomas Räsänen wrote: Hi, Can I somehow (programmatically) access Styles and Formatting - dialog and chage it's properties. My goal is to hide those default style categories and propably to chage the name of Custom Styles - category. I'd like to limit users to use only definite styles.