Difference between revisions of "MainOOConnect"

From Apache OpenOffice Wiki
Jump to: navigation, search
m
Line 38: Line 38:
 
{{Documentation/Note|'''Important Note''' : The more important point in the [[UNO_automation_with_a_binary_%28executable%29#The_Compilation_Chain|compilation chain]] of the examples above is that <code>cppumaker</code> will construct every hpp and hdl files you need in your application. The SDK doesn't  provide every hpp files, but you have to construt them starting from IDL files provided by SDK.}}
 
{{Documentation/Note|'''Important Note''' : The more important point in the [[UNO_automation_with_a_binary_%28executable%29#The_Compilation_Chain|compilation chain]] of the examples above is that <code>cppumaker</code> will construct every hpp and hdl files you need in your application. The SDK doesn't  provide every hpp files, but you have to construt them starting from IDL files provided by SDK.}}
 
{{Documentation/Note|It is possible to construct all the hpp files when installing the SDK as [[SDKInstallation#Other_Windows_Installations_descriptions|mentioned in a Windows]] installation. It's also possible with other OS. In doing so, you don't need modifying your MakeFile.}}
 
{{Documentation/Note|It is possible to construct all the hpp files when installing the SDK as [[SDKInstallation#Other_Windows_Installations_descriptions|mentioned in a Windows]] installation. It's also possible with other OS. In doing so, you don't need modifying your MakeFile.}}
 +
[[Category:API]]

Revision as of 22:04, 14 March 2010

//Listing 0b Again our starting main Code
int main( ) {
//retrieve an instance of the remote service manager
    Reference< XMultiServiceFactory > rOfficeServiceManager;
    rOfficeServiceManager = ooConnect();
    if( rOfficeServiceManager.is() ){
        printf( "Connected sucessfully to the office\n" );
    }
 
//get the desktop service using createInstance returns an XInterface type
    Reference< XInterface  > Desktop = rOfficeServiceManager->createInstance(
    OUString::createFromAscii( "com.sun.star.frame.Desktop" ));
 
//query for the XComponentLoader interface
    Reference< XComponentLoader > rComponentLoader (Desktop, UNO_QUERY);
    if( rComponentLoader.is() ){
        	printf( "XComponentloader successfully instanciated\n" );
    	}
 
//get an instance of the spreadsheet
    Reference< XComponent > xcomponent = rComponentLoader->loadComponentFromURL(
	OUString::createFromAscii("private:factory/scalc"),
        OUString::createFromAscii("_blank"),
        0,
        Sequence < ::com::sun::star::beans::PropertyValue >());
// add code here
    return 0;
}

This code is called a bootstrap and uses :

  1. com.sun.star.lang.XMultiServiceFactory, com.sun.star.uno.XInterface, com.sun.star.frame.XComponentLoader and com.sun.star.lang.XComponent interfaces
  2. com.sun.star.frame.Desktop service
  3. com.sun.star.beans.PropertyValue structure.

Remember each time you query for an interface you have to add code lines (if they don't exist) in the source code and a line in the makefile. I will generally add comments to prevent omissions. You can find more explanations here (if you are not a beginner).

Template:Documentation/Note Template:Documentation/Note

Personal tools