Difference between revisions of "Developers FAQ"

From Apache OpenOffice Wiki
Jump to: navigation, search
(Framework)
(Updating category)
 
(29 intermediate revisions by 9 users not shown)
Line 4: Line 4:
  
  
=Framework=
+
==Framework==
 
+
* Description of the SFX2 framework? (MBA)
* Description of the SFX2 framework (MBA)
+
* There are the roles of the different shells and views? See [[Framework/Article/Implementation_of_the_Dispatch_API_In_SFX2|Implementation of the Dispatch API In SFX2]]
* There are the roles of the different shells and views? (MBA)
+
* Explanation of the dispatch/interceptor mechanism / command handling? See [[Framework/Article/Implementation_of_the_Dispatch_API_In_SFX2|Implementation of the Dispatch API In SFX2]]
* Explanation of the dispatch/interceptor mechanism / command handling (MBA)
+
* How is the slot mechanism implemented, and how is the listener and broadcast mechanism implemented? See [[Framework/Article/Implementation_of_the_Dispatch_API_In_SFX2|Implementation of the Dispatch API In SFX2]]
* How is the OOo framework generated, and how to implement the framework-model-controller mode?(CLARIFY QUESTION)
+
* Generic user interface: How does the framework implement the interface management, how to load toolbar, and how to implement berth area? See [[Framework/Article/General_Architecture_Of_The_Framework_User_Interface_Implementation|General Architecture of the Framework User Interface]]
* How is the slot mechanism implemented, and how is the listener and broadcast mechanism implemented? (MBA)
+
* Filter configuration
* Generic user interface: How does the framework implement the interface management, how to load toolbar, and how to implement berth area? (CD)
+
* The mechanism of messages: IMPL_LINK,listen and slots (CLARIFY QUESTION: listen?)
+
* Filter configuration (AS)
+
 
** [http://api.openoffice.org/docs/DevelopersGuide/OfficeDev/OfficeDev.xhtml#1_2_4_Integrating_Import_and_Export_Filters Developer's Guide 7.2.4  Integrating Import and Export Filters]
 
** [http://api.openoffice.org/docs/DevelopersGuide/OfficeDev/OfficeDev.xhtml#1_2_4_Integrating_Import_and_Export_Filters Developer's Guide 7.2.4  Integrating Import and Export Filters]
 
** Note: Description of the used configuration format in XML is outdated.
 
** Note: Description of the used configuration format in XML is outdated.
* API for accessing OOo package format (MAV)
+
* API for accessing OOo package format
* Embedding (MAV)
+
** http://api.openoffice.org/docs/common/ref/com/sun/star/embed/Storage.html
* Templates (MAV)
+
* Embedding
* Add-ons / Extensions support (CD)
+
** http://wiki.services.openoffice.org/wiki/Framework/Article/General_Architecture_Of_Documents_Embedding
 +
* Templates
 +
** http://api.openoffice.org/docs/common/ref/com/sun/star/frame/TemplateAccess.html
 +
**
 +
* Add-ons / Extensions support
 
** [[Framework/WorkInProgress/Addon_Menu_Toolbar_Merging|Support merging into the Office menu bar/toolbars.]]
 
** [[Framework/WorkInProgress/Addon_Menu_Toolbar_Merging|Support merging into the Office menu bar/toolbars.]]
 
** [[Framework/Article/Generic_UNO_Interfaces_for_complex_toolbar_controls|Complex toolbar controls for add-ons.]]
 
** [[Framework/Article/Generic_UNO_Interfaces_for_complex_toolbar_controls|Complex toolbar controls for add-ons.]]
** Developer's Guide 4.7.3 Add-ons
+
** [http://api.openoffice.org/docs/DevelopersGuide/Components/Components.xhtml#1_7_3_Add-Ons Developer's Guide 4.7.3 Add-ons]
 
** Add-on examples with sources (http://framework.openoffice.org/servlets/ProjectDocumentList?folderID=226&expandFolder=226&folderID=72)   
 
** Add-on examples with sources (http://framework.openoffice.org/servlets/ProjectDocumentList?folderID=226&expandFolder=226&folderID=72)   
* The general part of the document storing/loading process (MAV)
+
* The general part of the document storing/loading process
 +
** [http://api.openoffice.org/docs/DevelopersGuide/OfficeDev/OfficeDev.xhtml#1_1_5_1_Loading_Documents Documents loading]
 +
** [http://api.openoffice.org/docs/DevelopersGuide/OfficeDev/OfficeDev.xhtml#1_1_5_3_Storing_Documents Documents storing]
  
=UDK=
+
==[http://udk.openoffice.org UDK]==
 +
* Mechanisms of Multi-Platform support ([[KR]])
 +
:I assume this means multiple language support, please see [[Uno/Article/Working_with_Environments%2C_Mappings_%26_Objects|Working with Environments, Mappings & Objects]] .
 +
* How to communicate with other OOo components, and how to implement a bridge ([[KR]])
 +
: There is a tutorial for implementing C++ bridges, please see http://udk.openoffice.org/cpp/man/cpp_bridges.html . Most [[Uno/Binary|Binary Uno]] bridges are implemented in the [[Uno/Binary/Modules/bridges|bridges]] module.
 +
* [[Uno/PyUno|Python Uno]] components may be run within the OOo process - how can they be called from [[Java]], [[C++]] or [[BASIC|StarBasic]]? ([[KR]])
 +
: [[Uno/PyUno|Python Uno]] components may be accessed like any other component, e.g. by doing a "createInstance" with a service which is implemented in [[Uno/PyUno|Python Uno]].
 +
* The relationship between [[Uno]], COM+, CORBA ([[KR]])
 +
: For a comparison between [[Uno]] and CORBA please see http://udk.openoffice.org/common/man/comparison_uno_corba.html , though [[Uno]] nowadays does support multiple inheritance. Also there was an effort, which unfortunately did not complete, do implement a [[Uno]] CORBA bridge, please see http://udk.openoffice.org/common/man/concept/uno_corba.html .
 +
: There is no document regarding [[Uno]] and (D)COM+. [[Uno]] has some similarities with COM+:
 +
:* "queryInterface"
 +
:* Language agnostic
 +
:* "Apartments", please see the [[Uno/Spec/Threading-Model|Uno Threading-Model]] for details.
 +
:* Components
 +
:* Remote transparency
  
* Mechanisms of Multi-Platform support (JSC)
+
==Application, Writer==
* How to communicate with other OOo components, and how to implement a bridge (JSC)
+
* Structure of tables? [[Writer_Core_And_Layout]]
* Python UNO components may be run within the OOo process - how can they be called from Java, C++ or StarBasic? (JSC)
+
* Mechanism/Implementation of Undo? [[Writer_Core_And_Layout]]
* The relationship between UNO, COM+, CORBA (JSC)
+
* Mechanism/Implementation of Frames, relationship? [[Writer_Core_And_Layout]]
 
+
* Class structure of SwNode, SwNodes, SwNodeIndex, ..., relationship? [[Writer_Core_And_Layout]]
 
+
=Application, Writer=
+
* Structure of tables (FME) [[Writer_Core_And_Layout]]
+
* Mechanism/Implementation of Undo (AMA) [[Writer_Core_And_Layout]]
+
* Mechanism/Implementation of Frames, relationship (FME) [[Writer_Core_And_Layout]]
+
* Class structure of SwNode, SwNodes, SwNodeIndex, ..., relationship (AMA) [[Writer_Core_And_Layout]]
+
 
* The relationship between the class ViewShell and SwDoc (OS)
 
* The relationship between the class ViewShell and SwDoc (OS)
 +
The ViewShell is created as indirect member of the SwPagePreview or as base class of SwWrtShell, SwFEShell, SwEditShell, SwCrsrShell as member of the SwView. This stack of shells provides access from SwView/SwPagePreview to the document. The ViewShell mostly for output (printing, painting) and the others for cursor travelling and content modification.
  
 
+
==Application, Draw/Impress==
=Application, Draw/Impress=
+
* The mechanism of slide show and animation (what is the difference between before and after)?
* The mechanism of slide show and animation (what is the difference between before and after). The slideshow itself, and all animation functionality are implemented in the [[Slideshow]] module. (CL)
+
** The slideshow itself, and all animation functionality are implemented in the [[Slideshow]] module. (What is the meeaing of "before" and "after" in the context of this question?)
What is the meening of "before" and "after" in the context of this question?
+
* Copy&Paste: Memory structure of clipboard in SD, difference between coping objects inside slides and coping objects from or into other applications like SW, SC?
 
+
** Clipboard between the same application type is done by using core implementations. Clipboard between different application types is done by using xml.
* Copy&Paste: Memory structure of clipboard in SD, difference between coping objects inside slides and coping objects from or into other applications like SW, SC (CL)
+
Clipboard between the same application type is done by using core implementations. Clipboard between different application types is done by using xml.
+
 
+
 
* Mechanism of designing and implementation of master page and layout style in presentation (CL)
 
* Mechanism of designing and implementation of master page and layout style in presentation (CL)
Master pages and layout styles are already implemented in OOo.
+
** Master pages and layout styles are already implemented in OOo.
  
 
* Flash Export:  (CL)
 
* Flash Export:  (CL)
 
** Difference between the export of the simple character and the complex character?
 
** Difference between the export of the simple character and the complex character?
Simple characters are exported using the font tags of the flash format, complex characters are exported as polygons.
+
*** Simple characters are exported using the font tags of the flash format, complex characters are exported as polygons.
 
+
** The implementation of the Polygon in VCL. Such as the EM square,Body,Ascent and Descent to realize of the glyph?
** The implementation of the Polygon in VCL. Such as the EM square,Body,Ascent and Descent to realize of the glyph.
+
*** This question needs more data as the implementation of the Polygon in VCl itself has nothing to do with glyphs. It is only used to represend glyphs.
This question needs more data as the implementation of the Polygon in VCl itself has nothing to do with glyphs. It is only
+
used to represend glyphs.
+
 
+
 
** The custom animation will be lost after the slides being exported into the swf. What cause it? There is no support to export the animation, is there? Do you have any plan to consummate it? And what's your purpose in this area?
 
** The custom animation will be lost after the slides being exported into the swf. What cause it? There is no support to export the animation, is there? Do you have any plan to consummate it? And what's your purpose in this area?
It is caused by the absence of an implementation that exports this particular feature.
+
*** It is caused by the absence of an implementation that exports this particular feature. There is currently no assigned developer for the task to add this feature to the flash export. One developer from Redflag is activly contributing to the flash export.
There is currently no assigned developer for the task to add this feature to the flash export.
+
There is one developer from Redflag activly contributing to the flash export.
+
 
+
  
=Application, Calc=
+
==Application, Calc==
 
* How are the areas for charts recognized, and how does the update notification work? (NN)
 
* How are the areas for charts recognized, and how does the update notification work? (NN)
 +
** Note that much of this has changed for the new chart. Don't make any changes based on older versions (before SRC680m213).
 +
** The chart implementation uses the UNO API (XDataProvider) to get data sequence objects for each data series, and registers itself as modify listener with these objects.
 +
** For the time when a chart object hasn't been loaded yet, Calc has its own internal listener (ScChartListener) to load the chart if its data is changed.
 
* Relationship between cells, sheets and workbooks (class diagram) (NN)
 
* Relationship between cells, sheets and workbooks (class diagram) (NN)
 +
** The core implementation of the document is class ScDocument. It has an array of pointers to ScTable (implementation of a sheet). Each sheet has a fixed-size array of ScColumn objects. Each ScColumn object holds the cells in one column.
 +
** The cells are implemented by base class ScBaseCell and derived classes:
 +
*** ScNoteCell (empty except for note and listeners)
 +
*** ScValueCell (constant numeric value)
 +
*** ScStringCell (simple text)
 +
*** ScEditCell (formatted or multi-paragraph text)
 +
*** ScFormulaCell (formula)
 
* Copy&Paste: What's happening on Copy directly, and later if someone pastes into same spreadsheet or other application (NN)
 
* Copy&Paste: What's happening on Copy directly, and later if someone pastes into same spreadsheet or other application (NN)
 +
** Implementation of copy for cells is at ScViewFunc::CopyToClip. The cells are copied into an internal object (ScDocument), then a ScTransferObj is created as the interface to the clipboard.
 +
** Pasting into Calc copies the cells directly from the internal ScDocument object. Clipboard data in other formats for external applications is created on demand by ScTransferObj (ScTransferObj::GetData).
  
 +
==Application, Database==
 +
* Why was the dbase driver engineered into file_based driver? And compared with the text/csv driver, what are the advantages of it in OOo's database, and how it was being designed in OOo's database?
 +
** The "file" driver is not an own driver, it's a framework for, well, file-based databases, where a single file represents a table, and all such files in a given directory comprise the database. Both the text/csv driver and the dBase driver use this framework.
 +
** The advantage of the dBase driver over the text/csv driver is that the former can read dBase files, while the latter can't.
 +
** What do you mean with "was being designed"?
 +
* What are the project's short-term plan or the direction of development now?
 +
** There are two areas which we currently mainly focus on: The new report designer which will be part of OpenOffice.org 2.3, and improved programmability of Base, where the first step is to allow embedding macros in database document.
 +
* In the project named "Native, cross-platform access to MS Access databases", what is the current solution? Is there anyone beginning to re-engineer the MDB format himself?
 +
** The current solution is employing  [http://mdbtools.sourceforge.net/ MDB-Tools], a third-party product which allows access to .mdb files. The driver based on MDB-Tools is in [http://eis.services.openoffice.org/EIS2/cws.ShowCWS?logon=true&Id=2959&Path=SRC680%2Fmdbdriver02 alpha state], and still has serious shortcomings. The project itself is currently stalled, nobody is actively working on it. Also, nobody is working on doing a reverse-engineering of the MSA file format. If somebody wants to do this, we should seriously investigate whether it makes more sense to support and improve existing reverse engineering efforts, namely MDB-Tools.
  
=Application, Database=
+
==Application, Chart2==
* Why was the dbase driver engineered into file_based driver? And compared with the text/csv driver, what are the advantages of it in OOo's database, and how it was being designed in OOo's database? (FS)
+
* Description of the Chart2 module: [http://graphics.openoffice.org/chart/chart2codestructure.html Code Structure of chart2]
* What are the project's short-term plan or the direction of development now? (FS)
+
* In the project named "Native, cross-platform access to MS Access databases", what is the current solution? Is there anyone beginning to re-engineer the MDB format himself? (FS)
+
  
 
+
==General Questions==
=Application, Chart2=
+
* Which are the common threads started at start up time and used by all OOo applications at runtime, and what are their functions? ([[KR]])?
* Description of the Chart2 module (BM) [http://graphics.openoffice.org/chart/chart2codestructure.html Code Structure of chart2]
+
: A first over regarding the threads can be found here: [[Effort/Implement_Basic_Threading-Architecture#Threads]] More to come ...
 
+
* Structure of VCL? See [[Sort_of_documentation_about_VCL_around_Native_Mac_OS_X_port]]
 
+
** A general overview about VCL was created by Eric Bachard, please have a look [http://wiki.services.openoffice.org/wiki/User:Ericb#Sort_of_documentation_about_VCL_around_Native_Mac_OS_X_port here]
=General Questions=
+
* [[TextRenderingProcess|Text rendering process]]
* Which are the common threads started at start up time and used by all OOo applications at runtime, and what are their functions? (KR)?
+
* Memory Management (MT/MHU)
* Structure of VCL (PL)
+
* How to improve stability, and where to start? Beside doing thorough QA, you might use tools like [http://tools.www.openoffice.org/debugging/usingvalgrind.sxw Valgrind] or [http://tools.openoffice.org/files/documents/15/872/BoundsChecker.html BoundsChecker]
A general overview about VCL was created by Eric Bachard, please have a look here
+
* How to improve performance, and where to start? Use a [http://en.wikipedia.org/wiki/Performance_analysis profiler] to analyze the runtime behavior of the code that you want to improve.
[http://wiki.services.openoffice.org/wiki/User:Ericb#Sort_of_documentation_about_VCL_around_Native_Mac_OS_X_port]
+
* Which code of OOo is responsible for the VBA Macro parse? How are they implemented?
 
+
** This is done by a hard coded parser in basic/source/comp
* Font rendering process (HDU)
+
* Memory Management (MT)
+
* How to improve stability? Where to start? (MT)
+
* How to improve performance? Where to start? (MT)
+
* Which code of OOo is responsible for the VBA Macro parse? How are they implemented? (AB)
+
* Which code/features are affected by the "Design Mode? (FS)
+
 
* How is the code implemented to fulfill the specification of Unicode and gb2312 (SB):  Follow the source code links for “UTF7“ and “UTF8“ (Unicode) and “EUC_CN” (GB2312) in [http://porting.openoffice.org/source/browse/porting/sal/textenc/textenc.cxx?rev=1.6&view=markup sal/textenc/textenc.cxx:1.6].
 
* How is the code implemented to fulfill the specification of Unicode and gb2312 (SB):  Follow the source code links for “UTF7“ and “UTF8“ (Unicode) and “EUC_CN” (GB2312) in [http://porting.openoffice.org/source/browse/porting/sal/textenc/textenc.cxx?rev=1.6&view=markup sal/textenc/textenc.cxx:1.6].
 
* How/where is the Boost library used? See [[boost]] for an overview.
 
* How/where is the Boost library used? See [[boost]] for an overview.
* Which code/features are affected by the "Design Mode? (FS)
 
 
* The process of SVG protraction and SVG parse. The relationship between controller protraction and the resource of the controller. (SJ)
 
* The process of SVG protraction and SVG parse. The relationship between controller protraction and the resource of the controller. (SJ)
 
* Mozilla and ActiveX plugins (MAV)
 
* Mozilla and ActiveX plugins (MAV)
 
* Which internet protocols are supported in OOo, and what can be improved to the network ability of OOo? (KSO)
 
* Which internet protocols are supported in OOo, and what can be improved to the network ability of OOo? (KSO)
  
=Feature Questions=
+
==Feature Questions==
 
* Currently a document can only be processed by one of the OOo applications - what about having just one application processing all kind of documents?
 
* Currently a document can only be processed by one of the OOo applications - what about having just one application processing all kind of documents?
 
* Are there any plans to integrate a desktop search engine? (Could be done as an extension)
 
* Are there any plans to integrate a desktop search engine? (Could be done as an extension)
 
* Any plans to introduce classes comparable to CObject and CWinApp in MFC? (???)
 
* Any plans to introduce classes comparable to CObject and CWinApp in MFC? (???)
 +
  
 
[[Category:FAQ]]
 
[[Category:FAQ]]
[[Category:Developer_Documentation]]
+
[[Category:Development]]
 +
[[Category:Documentation/FAQ]]

Latest revision as of 13:32, 25 November 2009

The Developers FAQ is a collection from different questions asked by Developers who are new to OpenOffice.org:

This is work in progress, the developer mentioned behind the question will write the answer soon.


Framework

UDK

  • Mechanisms of Multi-Platform support (KR)
I assume this means multiple language support, please see Working with Environments, Mappings & Objects .
  • How to communicate with other OOo components, and how to implement a bridge (KR)
There is a tutorial for implementing C++ bridges, please see http://udk.openoffice.org/cpp/man/cpp_bridges.html . Most Binary Uno bridges are implemented in the bridges module.
Python Uno components may be accessed like any other component, e.g. by doing a "createInstance" with a service which is implemented in Python Uno.
  • The relationship between Uno, COM+, CORBA (KR)
For a comparison between Uno and CORBA please see http://udk.openoffice.org/common/man/comparison_uno_corba.html , though Uno nowadays does support multiple inheritance. Also there was an effort, which unfortunately did not complete, do implement a Uno CORBA bridge, please see http://udk.openoffice.org/common/man/concept/uno_corba.html .
There is no document regarding Uno and (D)COM+. Uno has some similarities with COM+:
  • "queryInterface"
  • Language agnostic
  • "Apartments", please see the Uno Threading-Model for details.
  • Components
  • Remote transparency

Application, Writer

The ViewShell is created as indirect member of the SwPagePreview or as base class of SwWrtShell, SwFEShell, SwEditShell, SwCrsrShell as member of the SwView. This stack of shells provides access from SwView/SwPagePreview to the document. The ViewShell mostly for output (printing, painting) and the others for cursor travelling and content modification.

Application, Draw/Impress

  • The mechanism of slide show and animation (what is the difference between before and after)?
    • The slideshow itself, and all animation functionality are implemented in the Slideshow module. (What is the meeaing of "before" and "after" in the context of this question?)
  • Copy&Paste: Memory structure of clipboard in SD, difference between coping objects inside slides and coping objects from or into other applications like SW, SC?
    • Clipboard between the same application type is done by using core implementations. Clipboard between different application types is done by using xml.
  • Mechanism of designing and implementation of master page and layout style in presentation (CL)
    • Master pages and layout styles are already implemented in OOo.
  • Flash Export: (CL)
    • Difference between the export of the simple character and the complex character?
      • Simple characters are exported using the font tags of the flash format, complex characters are exported as polygons.
    • The implementation of the Polygon in VCL. Such as the EM square,Body,Ascent and Descent to realize of the glyph?
      • This question needs more data as the implementation of the Polygon in VCl itself has nothing to do with glyphs. It is only used to represend glyphs.
    • The custom animation will be lost after the slides being exported into the swf. What cause it? There is no support to export the animation, is there? Do you have any plan to consummate it? And what's your purpose in this area?
      • It is caused by the absence of an implementation that exports this particular feature. There is currently no assigned developer for the task to add this feature to the flash export. One developer from Redflag is activly contributing to the flash export.

Application, Calc

  • How are the areas for charts recognized, and how does the update notification work? (NN)
    • Note that much of this has changed for the new chart. Don't make any changes based on older versions (before SRC680m213).
    • The chart implementation uses the UNO API (XDataProvider) to get data sequence objects for each data series, and registers itself as modify listener with these objects.
    • For the time when a chart object hasn't been loaded yet, Calc has its own internal listener (ScChartListener) to load the chart if its data is changed.
  • Relationship between cells, sheets and workbooks (class diagram) (NN)
    • The core implementation of the document is class ScDocument. It has an array of pointers to ScTable (implementation of a sheet). Each sheet has a fixed-size array of ScColumn objects. Each ScColumn object holds the cells in one column.
    • The cells are implemented by base class ScBaseCell and derived classes:
      • ScNoteCell (empty except for note and listeners)
      • ScValueCell (constant numeric value)
      • ScStringCell (simple text)
      • ScEditCell (formatted or multi-paragraph text)
      • ScFormulaCell (formula)
  • Copy&Paste: What's happening on Copy directly, and later if someone pastes into same spreadsheet or other application (NN)
    • Implementation of copy for cells is at ScViewFunc::CopyToClip. The cells are copied into an internal object (ScDocument), then a ScTransferObj is created as the interface to the clipboard.
    • Pasting into Calc copies the cells directly from the internal ScDocument object. Clipboard data in other formats for external applications is created on demand by ScTransferObj (ScTransferObj::GetData).

Application, Database

  • Why was the dbase driver engineered into file_based driver? And compared with the text/csv driver, what are the advantages of it in OOo's database, and how it was being designed in OOo's database?
    • The "file" driver is not an own driver, it's a framework for, well, file-based databases, where a single file represents a table, and all such files in a given directory comprise the database. Both the text/csv driver and the dBase driver use this framework.
    • The advantage of the dBase driver over the text/csv driver is that the former can read dBase files, while the latter can't.
    • What do you mean with "was being designed"?
  • What are the project's short-term plan or the direction of development now?
    • There are two areas which we currently mainly focus on: The new report designer which will be part of OpenOffice.org 2.3, and improved programmability of Base, where the first step is to allow embedding macros in database document.
  • In the project named "Native, cross-platform access to MS Access databases", what is the current solution? Is there anyone beginning to re-engineer the MDB format himself?
    • The current solution is employing MDB-Tools, a third-party product which allows access to .mdb files. The driver based on MDB-Tools is in alpha state, and still has serious shortcomings. The project itself is currently stalled, nobody is actively working on it. Also, nobody is working on doing a reverse-engineering of the MSA file format. If somebody wants to do this, we should seriously investigate whether it makes more sense to support and improve existing reverse engineering efforts, namely MDB-Tools.

Application, Chart2

General Questions

  • Which are the common threads started at start up time and used by all OOo applications at runtime, and what are their functions? (KR)?
A first over regarding the threads can be found here: Effort/Implement_Basic_Threading-Architecture#Threads More to come ...
  • Structure of VCL? See Sort_of_documentation_about_VCL_around_Native_Mac_OS_X_port
    • A general overview about VCL was created by Eric Bachard, please have a look here
  • Text rendering process
  • Memory Management (MT/MHU)
  • How to improve stability, and where to start? Beside doing thorough QA, you might use tools like Valgrind or BoundsChecker
  • How to improve performance, and where to start? Use a profiler to analyze the runtime behavior of the code that you want to improve.
  • Which code of OOo is responsible for the VBA Macro parse? How are they implemented?
    • This is done by a hard coded parser in basic/source/comp
  • How is the code implemented to fulfill the specification of Unicode and gb2312 (SB): Follow the source code links for “UTF7“ and “UTF8“ (Unicode) and “EUC_CN” (GB2312) in sal/textenc/textenc.cxx:1.6.
  • How/where is the Boost library used? See boost for an overview.
  • The process of SVG protraction and SVG parse. The relationship between controller protraction and the resource of the controller. (SJ)
  • Mozilla and ActiveX plugins (MAV)
  • Which internet protocols are supported in OOo, and what can be improved to the network ability of OOo? (KSO)

Feature Questions

  • Currently a document can only be processed by one of the OOo applications - what about having just one application processing all kind of documents?
  • Are there any plans to integrate a desktop search engine? (Could be done as an extension)
  • Any plans to introduce classes comparable to CObject and CWinApp in MFC? (???)
Personal tools