src/hbutils/document/hbdocumentloader.cpp
changeset 3 11d3954df52a
parent 1 f7ac710697a9
child 6 c3690ec91ef8
--- a/src/hbutils/document/hbdocumentloader.cpp	Fri May 14 16:09:54 2010 +0300
+++ b/src/hbutils/document/hbdocumentloader.cpp	Thu May 27 13:10:59 2010 +0300
@@ -48,6 +48,9 @@
     able to create your own custom widgets, you have to derive from this class and override 
     \c createObject method.
 
+    See \c HbDocumentLoader::createBinary for information about DocML binary conversion
+    in build time.
+
     Use the \c HbDocumentLoaderPlugin to add tool support for custom widgets.
     
     Example code:
@@ -162,6 +165,16 @@
 
 /*!
     Converts DocML document to binary document. 
+
+    You can also convert DocML files to binary format in build time by listing the files in "DOCML"
+    variable in the .pro file. This will create a binary docml file called <file_name>.bin that
+    can be included to the resources (.qrc). 
+    
+    Known issues: Currently the resource compiler gives warnings about missing binary files during
+    qmake. It's ok to ignore these warnings. 
+
+    For more information about DocML binary format, please refer to S60QtProgrammersGuide.
+
     \param srcDevice source IO device to be processed.
     \param dstDevice destination IO device where to write to.
     \return true if conversion was ok.