Re: [api-dev] OpenOffice.org 2.3 SDK

2008-01-08 Thread Claudio Alberto Andreoni
Hello, that might depend on your distro. I have Fedora, and files are installed under /opt/, executable in /usr/bin/. Hope that might be useful. Claudio A. On Tuesday 08 January 2008 23:27:13 Per Eriksson wrote: Hi, I just installed our SDK as rpms and wonder, Where does it get

[api-dev] Linking an UNO-based C++ code in Windows

2007-09-03 Thread Claudio Alberto Andreoni
Hello to everybody, I had to port an application which I used to run on Linux on Windows. I got Visual C++ Expr. for the purpose, and I am completely unfamiliar with the whole environment, but I managed to configure it somehow... the compilation is successful and apparently everything is in the

Re: [api-dev] Linking an UNO-based C++ code in Windows

2007-09-03 Thread Claudio Alberto Andreoni
the SDK and play a little bit with the C++ examples from the SDK. The env in the SDK supports the Visual C++ Expr. Edition. Juergen Claudio Alberto Andreoni wrote: Hello to everybody, I had to port an application which I used to run on Linux on Windows. I got Visual C++ Expr

Re: [api-dev] display document in C or C++

2007-08-26 Thread Claudio Alberto Andreoni
Hello In order to run this code you have to run cppuhelper in an appropriate manner to get the headers for the OO API. You can find how to do this at http://api.openoffice.org It isn't that easy to learn C++ OpenOffice API programming, so I suggest to spend a couple of days in learning the

Re: [api-dev] display document in C or C++

2007-08-26 Thread Claudio Alberto Andreoni
Sorry, I forgot that you wanted it to be opened in readonly mode. Change this: // read only Sequence PropertyValue loadProps(1); loadProps[0] = PropertyValue(); loadProps[0].Name = OUString::createFromAscii(ReadOnly); loadProps[0].Value = sal_True; Remember that you should also have a runnig

[api-dev] swf filter - how-to

2007-08-06 Thread Claudio Alberto Andreoni
Hello all, does anybody know how to compose the chain for generating a swf from a XComponent, which is produced out of a XDrawPage (or whatever else, if I am wrong)? I had a look at the com.sun.star.drawing.GraphicExportFilter, but that service does not support any useful MIME for that purpose.