Difference between revisions of "Using Cpp with the OOo SDK"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Contacts)
m
 
(37 intermediate revisions by 9 users not shown)
Line 1: Line 1:
[[Image:HomePageCpp.png]]
+
{{DocBanner}}
 +
<!-- 2021-10-01 removed/updated Warn from original author: {{Warn|I have decided to give up with this C++ documentation. My last work was to add two chapters in summer 2009. I have done nothing more during last year. I only want to say this document is completely free, unfortunately is not finished (particularly with add-on and dialog). Please let this caution banner for a year and remove it after because tradition in OpenOffice documentation is to remove author's names. After a year, it would be also great to remove my name everywhere it appears in other chapters. Thank you in advance. 08:52, 26 August 2010 (UTC)}}-->
 +
{{Warn|The original author wants you to know that: "I have decided to give up with this C++ documentation. My last work was to add two chapters in summer 2009. I have done nothing more during last year. I only want to say this document is completely free, unfortunately is not finished (particularly with add-on and dialog)."}}
  
I would like to provide here informations on using C++ as language to program OOo applications.
+
This site is about using C++ as a language to program OpenOffice extensions.  
*[[CppSDKAuthors|About the Author and Contributors]]
+
==== Common ====
* [[SDKInstallation | How to install the SDK and compile the C++ examples]] (see also [[Windows| Welcome to OOo development for Windows]])
+
* [[CppSDKAuthors|About the Author and Contributors]]
* [[SDKCppLanguage | The UNO C++ Language]]
+
* [https://www.apache.org/licenses/LICENSE-2.0 The SDK is licensed under ALv2]
* [[UNO_automation_with_a_binary_(executable)|OpenOffice.org's UNO automation with a binary (executable)]]
+
* [[SDKInstallation|How to install the SDK and compile the C++ examples]]
* [[OpenOffice_Calc|OpenOffice Calc]]
+
* [[SDKCppLanguage|The UNO C++ Language]]
* [[Programming_OOoDraw_and_OOoImpress|C++ automation of OOoDraw and OOoImpress]]
+
* [[UNO_automation_with_a_binary_(executable)|OpenOffice UNO automation with a binary (executable)]]
 +
==== Writer, Calc, Draw and Impress ====
 +
* [[Programming OooWriter |Programming OOoWriter with C++]]
 +
* [[Calc/API/Programming|OpenOffice Calc]]
 +
* [[Programming_OOoDraw_and_OOoImpress|Programming OOoDraw and OOoImpress with C++]]
 
* [[Working_with_Shapes |Working with Shapes in C++]]
 
* [[Working_with_Shapes |Working with Shapes in C++]]
* [[Programming OooWriter |Programming OooWriter with C++]]
+
==== General Utilities ====
* General Utilities
+
*[[Playing_with_Window_Toolkit_AWT|Playing with Window Toolkit AWT]]
**[[Playing_with_Window_Toolkit_AWT|Playing with Window Toolkit AWT]]
+
*[[Executing_an_OOoBasic_macro_with_Cpp|Executing an OOoBasic macro with C++]]
**[[Executing_an_OOoBasic_macro_with_Cpp|Executing an OOoBasic macro with C++]]
+
 
* [[IDL_Files_and_Cpp|IDL Files and C++]]
 
* [[IDL_Files_and_Cpp|IDL Files and C++]]
* [[UNO_registery_and_Bootstrapping|UNO registery and Bootstrapping]]
+
* [[UNO_registery_and_Bootstrapping|UNO registry and Bootstrapping]]
 
* [[Constructing_Helpers|Constructing Helpers]]
 
* [[Constructing_Helpers|Constructing Helpers]]
 +
==== Components ====
 
* [[Constructing_Components|Constructing Components in C++]]
 
* [[Constructing_Components|Constructing Components in C++]]
* [[CompleteAddIn | OOoCalc addin in C++]]
+
* [[Component_and_Dialog|Managing a Dialog in a Component]]
 +
* [[Going_further_with_Dialog_and_Component|Going further with Dialog and Components]]
 +
* [[Writing_Professional_Components|Writing professional Components]]
 +
==== AddOns ====
 +
* [[Add-on|Constructing an Addon]]
 +
* [[CompleteAddIn | OOoCalc AddOn in C++]]
 
* [[XML_and_Filter |XML, Filters and Files]]
 
* [[XML_and_Filter |XML, Filters and Files]]
* [[GNU_Lesser_General_Public_License|GNU Lesser General Public License]]
+
 
= See also=
 
= See also=
 +
==== General ====
 +
* [[FR/Documentation/Cpp_Guide|French version of this document]].
 +
* [[Documentation/DevGuide/OpenOffice.org_Developers_Guide | Developer's Guide]]
 +
* [[Uno/Cpp/Tutorials/Introduction_to_Cpp_Uno|C++ and UNO tutorial]]
 
* Writing a Program to Control OpenOffice.org, by Franco Pingiori — [http://www.linuxjournal.com/article/8550 Part 1] and [http://www.linuxjournal.com/article/8608 Part 2], Linux Journal
 
* Writing a Program to Control OpenOffice.org, by Franco Pingiori — [http://www.linuxjournal.com/article/8550 Part 1] and [http://www.linuxjournal.com/article/8608 Part 2], Linux Journal
 
* [[Tutorial_UNO_Library|UNO tutorial]]
 
* [[Tutorial_UNO_Library|UNO tutorial]]
 
* [[Tutorial_UNO_IDL|UNO IDL]]
 
* [[Tutorial_UNO_IDL|UNO IDL]]
 
* [[Uno/Article/Types%26Reflection]]
 
* [[Uno/Article/Types%26Reflection]]
* [http://udk.openoffice.org/common/man/concept/unointro.html UNO Introduction]
+
* [https://wiki.openoffice.org/wiki/Uno/Cpp/Tutorials/Introduction_to_Cpp_Uno UNO Introduction]
* [http://udk.openoffice.org/cpp/man/tutorial/unointro.html A Guide to C++ UNO]
+
* [http://perso.wanadoo.fr/moutou/MyUNODoc_HTML/UNOCppAPI.html UNO/C++] (Complete UNO/C++ document)
+
 
* [http://www.oooforum.org/forum/viewtopic.phtml?t=8702 Working with a database in C++] (not tackled in this document at the moment).
 
* [http://www.oooforum.org/forum/viewtopic.phtml?t=8702 Working with a database in C++] (not tackled in this document at the moment).
 
* [[Compiler_versions_used_by_port_maintainers_and_release_engineers|Compiler versions used by port maintainers and release engineers]]
 
* [[Compiler_versions_used_by_port_maintainers_and_release_engineers|Compiler versions used by port maintainers and release engineers]]
 +
==== Coding ====
 
* [[Writing_correct_Cplusplus|Writing correct C++]]
 
* [[Writing_correct_Cplusplus|Writing correct C++]]
 +
* [[MakeFile|Using make utility with SDK]]
 
* [[Writing_warning-free_code|Writing warning-free code]]
 
* [[Writing_warning-free_code|Writing warning-free code]]
 
* [[Debugging |Debugging]]
 
* [[Debugging |Debugging]]
  
[[Category:Development]]
+
[[Category:Tutorial]]
[[Category:Developer Documentation]]
+
[[Category:Cpp]]
 +
[[Category:Documentation/Developer's Guide]]
 
[[Category:Uno]]
 
[[Category:Uno]]
 
[[Category:Article]]
 
[[Category:Article]]

Latest revision as of 12:12, 1 October 2021

doc OOo
Documentation caution.png The original author wants you to know that: "I have decided to give up with this C++ documentation. My last work was to add two chapters in summer 2009. I have done nothing more during last year. I only want to say this document is completely free, unfortunately is not finished (particularly with add-on and dialog)."

This site is about using C++ as a language to program OpenOffice extensions.

Common

Writer, Calc, Draw and Impress

General Utilities

Components

AddOns

See also

General

Coding

Personal tools