[api-dev] Re:Re:digital signature openoffice

2006-03-15 Thread Vincenzo Giuliano
Joachim Lingner wrote: There is an unpublished service com.sun.star.security.DocumentDigitalSignatures which implements com.sun.star.security.XDocumentDigitalSignatures. If the IDL is not marked explicitely with published then it means that the respective element is NOT part of the official

Re: [api-dev] Chaining Frames : ChainedTextFrame

2006-03-15 Thread Oliver Specht
Hi, the service com.sun.star.text.ChanedTextFrame specified the two properties ChainPrevName and ChainNextName. There's an include of XChainable but it is not part of the service. The to properties are available at Writer's text frames. The documentation and also the implementation of the

Re: [api-dev] Code Snippet page

2006-03-15 Thread Kent Gibson
crazy, I completely deinstalled openoffice 2.0.2., then reinstalled, then went to package manager and added AddonConfiguration.xcs AddonConfiguration.xcu Addons.xcu they say enabled in the package manager. but when I go to tools-addons-snippetcreator-new or open nothing happens?! --- Paolo

Re: [api-dev] Calc addin - Custom toolbar not enabled - further info

2006-03-15 Thread Carsten Driesner
Tim Tow wrote: I put in some messageboxes to see when queryDispatch is called (and to see any exceptions thrown). It appears the queryDispatch method doesn't get called until I hit my custom menu (and those items are initialized). I was expecting them to be called on application startup

[api-dev] aborting enums

2006-03-15 Thread Jorge . Pelizzoni
Hi, all! Is there any problem leaving an enum object not completely exhausted (i.e. not having nextElement invoked as many times as possible)? Should I call a special cancel method? Thanks in advance. Cheers, Jorge. - To

Re: [api-dev] Impossible to close a Base document

2006-03-15 Thread Mathias Bauer
Frank Schönheit - Sun Microsystems Germany wrote: That's why it's hard to tell who has the ownership of the document. If it were the frame (opened by the user), and the frame would close it, then the script would break. If it were the script, and the script would close the doc, then the frame

[api-dev] UnknownPropertyException when trying to set HyperLinkURL

2006-03-15 Thread Ann Van
I am trying to set the hyperlink for a particular part of text using the following code and OpenOffice 1.1: XText xText = (XText)UnoRuntime.queryInterface(XText.class, xShape); XTextCursor xTextCursor = xText.createTextCursor(); XPropertySet propCursor = (XPropertySet)

[api-dev] text iteration in OOo 2.0.2: bugs?

2006-03-15 Thread Jorge . Pelizzoni
Hi, all! I am trying to port a uno package to 2.0 that runs fine in 1.5. However, the behavior of text iteration primitives has changed a bit since (by the way, I am using version 2.0.2, US English, with SDK 2.0). I've noticed some enhancements but also what seems to be bugs. Please have a go at

Re: [api-dev] Selecting Printer always uses default Printer (BUG?)

2006-03-15 Thread Alex Thurgood
Tobias Krais wrote: Hi, Please tell me, is this a feature or a bug? Do you have the same problem? In case you want to test it I can send you an sample application. My guess is that this is a bug. The environment should detect CUPS settings automatically, since this is what happens in the

Re: [api-dev] Impossible to close a Base document

2006-03-15 Thread Frank Schönheit - Sun Microsystems Germa ny
Hi Mathias, I think that this is an API misuse. A view never should veto closing the document and in fact all other documents in OOo will not behave this way. It doesn't matter how the view was created. After reading the DevGuide chapter about closing documents (to which Bernard pointed me),