Home
last modified time | relevance | path

Searched refs:Document (Results 1 – 25 of 344) sorted by relevance

12345678910>>...14

/trunk/main/accessibility/source/extended/
H A Dtextwindowaccessibility.cxx53 inline Paragraph(::rtl::Reference< Document > const & rDocument, in Paragraph()
90 ParagraphImpl::ParagraphImpl(::rtl::Reference< Document > const & rDocument, in ParagraphImpl()
788 Document::Document(::VCLXWindow * pVclXWindow, ::TextEngine & rEngine, in Document() function in accessibility::Document
795 m_aViewListener(LINK(this, Document, WindowEventHandler)), in Document()
799 ::css::lang::Locale Document::retrieveLocale() in retrieveLocale()
805 ::sal_Int32 Document::retrieveParagraphIndex(ParagraphImpl const * pParagraph) in retrieveParagraphIndex()
819 ::sal_Int64 Document::retrieveParagraphState(ParagraphImpl const * pParagraph) in retrieveParagraphState()
855 Document::retrieveParagraphBounds(ParagraphImpl const * pParagraph, in retrieveParagraphBounds()
895 Document::retrieveParagraphText(ParagraphImpl const * pParagraph) in retrieveParagraphText()
903 void Document::retrieveParagraphSelection(ParagraphImpl const * pParagraph, in retrieveParagraphSelection()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DOfficeDocument.java46 import org.w3c.dom.Document;
66 implements org.openoffice.xmerge.Document,
74 private Document contentDoc = null;
77 private Document metaDoc = null;
80 private Document settingsDoc = null;
83 private Document styleDoc = null;
86 private Document manifestDoc = null;
168 public Document getContentDOM() { in getContentDOM()
182 public Document getMetaDOM() { in getMetaDOM()
197 public Document getSettingsDOM() { in getSettingsDOM()
[all …]
H A DEmbeddedXMLObject.java32 import org.w3c.dom.Document;
57 protected Document contentDOM = null;
58 protected Document settingsDOM = null;
59 protected Document stylesDOM = null;
95 public Document getContentDOM() throws SAXException, IOException { in getContentDOM()
110 public void setContentDOM(Document content) { in setContentDOM()
124 public Document getSettingsDOM() throws SAXException, IOException { in getSettingsDOM()
139 public void setSettingsDOM(Document settings) { in setSettingsDOM()
153 public Document getStylesDOM() throws SAXException, IOException { in getStylesDOM()
168 public void setStylesDOM(Document styles) { in setStylesDOM()
[all …]
/trunk/main/cui/source/customize/
H A Dmacropg.src163 Text [ en-US ] = "New Document" ;
168 Text [ en-US ] = "Document closed" ;
173 Text [ en-US ] = "Document is going to be closed" ;
178 Text [ en-US ] = "Open Document" ;
183 Text [ en-US ] = "Save Document" ;
188 Text [ en-US ] = "Save Document As" ;
193 Text [ en-US ] = "Document has been saved" ;
198 Text [ en-US ] = "Document has been saved as" ;
203 Text [ en-US ] = "Activate Document" ;
208 Text [ en-US ] = "Deactivate Document" ;
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/
H A DConvert.java97 Document inputDoc; in addInputStream()
123 Document inputDoc; in addInputStream()
143 public DocumentMerger getDocumentMerger(Document origDoc) in getDocumentMerger()
207 Document deviceDoc = deser.deserialize(); in convert()
222 Document doc = (Document) e.nextElement(); in convert()
259 Document officeDoc = deser instanceof DocumentSerializer2 ? in convert()
276 Document doc = (Document) e.nextElement(); in convert()
299 public Document getOfficeDocument(String name, InputStream is) in getOfficeDocument()
318 public Document getDeviceDocument(String name, InputStream is) in getDeviceDocument()
/trunk/main/offapi/com/sun/star/script/vba/
H A DVBAEventId.idl55 /** Document opened (loaded). No arguments. */
57 /** Document about to be closed. No arguments. */
71 /** Document about to be closed. No arguments. */
80 /** Document activated. No arguments. */
82 /** Document deactivated. No arguments. */
84 /** Document opened (loaded). No arguments. */
86 /** Document about to be closed. Arguments: [out] boolean bCancel. */
88 /** Document about to be printed. Arguments: [out] boolean bCancel. */
90 /** Document about to be saved. Arguments: boolean bSaveAs, [out] boolean bCancel. */
92 /** Document has been saved. Arguments: boolean bSuccess. */
[all …]
/trunk/main/sysui/desktop/share/
H A Ddocuments.ulf2 en-US = "%PRODUCTNAME Text Document"
5 en-US = "%PRODUCTNAME Text Document Template"
8 en-US = "%PRODUCTNAME Master Document"
38 en-US = "OpenDocument Master Document"
65 en-US = "HTML Document Template"
83 en-US = "Microsoft Word Document"
86 en-US = "Microsoft Word Document Template"
101 en-US = "Microsoft Word Document"
104 en-US = "Microsoft Word Document Template"
/trunk/main/scp2/source/writer/
H A Dregistryitem_writer.ulf28 en-US = "%SXWFORMATNAME %SXWFORMATVERSION Text Document"
31 en-US = "%SXWFORMATNAME %SXWFORMATVERSION Master Document"
34 en-US = "%SXWFORMATNAME %SXWFORMATVERSION Text Document Template"
43 en-US = "OpenDocument Master Document"
46 en-US = "HTML Document Template"
49 en-US = "Microsoft Word 97-2003 Document"
52 en-US = "Microsoft Word Document"
61 en-US = "Rich Text Document"
/trunk/main/odk/examples/OLE/delphi/InsertTables/
H A DSampleCode.pas117 Document : Variant;
168Document := StarDesktop.LoadComponentFromURL( 'private:factory/swriter', '_blank', 0, LoadParams);
170 CreateDocument := not (VarIsEmpty(Document) or VarIsNull(Document));
180 oBookmark := GetBookmarkFromDBPointer( Document, sBookmarkName );
196 oBookmark := GetBookmarkFromAdress( Document, sTableName, sCellName );
217 oCursor := Document.Text.CreateTextCursor();
221 sTableName := createUniqueTablename(Document);
223 InsertDatabaseTable( Document, sTableName, oCursor, 4, 2, dbPointer );
225 ChangeCellContent( Document, sTableName, 'B2', 1.12 );
/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DDocumentDeserializerImpl.java31 import org.openoffice.xmerge.Document;
99 public Document deserialize() throws ConvertException, in deserialize()
105 public Document deserialize(Document origDoc, ConvertData cd) in deserialize()
108 Document doc = null; in deserialize()
131 private void readStyleCatalog(Document parentDoc) { in readStyleCatalog()
138 org.w3c.dom.Document domDoc = sxwDoc.getContentDOM(); in readStyleCatalog()
208 private Node[] parseText(String text, org.w3c.dom.Document parentDoc) { in parseText()
296 private SxwDocument buildDocument(String docName, Wse[] data, Document origDoc) in buildDocument()
303 org.w3c.dom.Document doc = sxwDoc.getContentDOM(); in buildDocument()
462 org.w3c.dom.Document origDomDoc = origSxwDoc.getContentDOM(); in buildDocument()
H A DDocumentMergerImpl.java26 import org.w3c.dom.Document;
54 private org.openoffice.xmerge.Document orig = null;
56 public DocumentMergerImpl(org.openoffice.xmerge.Document doc, ConverterCapabilities cc) { in DocumentMergerImpl()
61 public void merge(org.openoffice.xmerge.Document modifiedDoc) throws MergeException { in merge()
66 Document doc1 = wdoc1.getContentDOM(); in merge()
67 Document doc2 = wdoc2.getContentDOM(); in merge()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/dom/
H A DDOMDocument.java44 import org.w3c.dom.Document;
55 implements org.openoffice.xmerge.Document {
62 private Document contentDoc = null;
147 public Document getContentDOM() { in getContentDOM()
159 contentDoc=(Document)newDom; in setContentDOM()
245 private byte[] docToBytes(Document doc) in docToBytes()
382 private final Document createDOM(String rootName) throws IOException { in createDOM()
384 Document doc = null; in createDOM()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/xslt/
H A DDocumentSerializerImpl.java35 import org.openoffice.xmerge.Document;
91 public DocumentSerializerImpl(PluginFactoryImpl pf,Document doc) { in DocumentSerializerImpl()
109 org.w3c.dom.Document domDoc = sxwDoc.getContentDOM(); in serialize()
110 org.w3c.dom.Document metaDoc = sxwDoc.getMetaDOM(); in serialize()
111 org.w3c.dom.Document styleDoc = sxwDoc.getStyleDOM(); in serialize()
121 …org.w3c.dom.Document newDoc = domImpl.createDocument("http://openoffice.org/2000/office","office:d… in serialize()
231 private ByteArrayOutputStream transform(org.w3c.dom.Document domDoc) in transform()
247 org.w3c.dom.Document xslDoc=null; in transform()
H A DDocumentMergerImpl.java26 import org.w3c.dom.Document;
52 private org.openoffice.xmerge.Document orig = null;
54 public DocumentMergerImpl(org.openoffice.xmerge.Document doc, ConverterCapabilities cc) { in DocumentMergerImpl()
59 public void merge(org.openoffice.xmerge.Document modifiedDoc) throws MergeException { in merge()
64 Document doc1 = wdoc1.getContentDOM(); in merge()
65 Document doc2 = wdoc2.getContentDOM(); in merge()
H A DPluginFactoryImpl.java26 import org.openoffice.xmerge.Document;
89 public DocumentSerializer createDocumentSerializer(Document doc) { in createDocumentSerializer()
108 …public org.openoffice.xmerge.Document createDeviceDocument(java.lang.String str, java.io.InputStre… in createDeviceDocument()
116 public Document createOfficeDocument(String name, InputStream is) in createOfficeDocument()
125 public Document createOfficeDocument(String name, InputStream is,boolean isZip) in createOfficeDocument()
180 public DocumentMerger createDocumentMerger(Document doc) { in createDocumentMerger()
/trunk/main/framework/source/services/
H A Dautorecovery.cxx1163 aInfo.Document = css::uno::Reference< css::frame::XModel >(); in implts_readConfig()
1273 rInfo.AppModule.getLength() || rInfo.Document.is(), in implts_specifyAppModuleAndFactory()
1287 rInfo.AppModule = xManager->identify(rInfo.Document); in implts_specifyAppModuleAndFactory()
1297 ENSURE_OR_THROW2( i_rInfo.Document.is(), "need at document, at the very least", *this ); in implts_collectActiveViewNames()
1303 const Reference< XModel2 > xModel( i_rInfo.Document, UNO_QUERY ); in implts_collectActiveViewNames()
1537 …css::uno::Reference< css::util::XModifyBroadcaster > xBroadcaster(rInfo.Document, css::uno::UNO_QU… in implts_startModifyListeningOnDoc()
1552 …css::uno::Reference< css::util::XModifyBroadcaster > xBroadcaster(rInfo.Document, css::uno::UNO_QU… in implts_stopModifyListeningOnDoc()
1787 aNew.Document = xDocument; in implts_registerDocument()
1790 css::uno::Reference< css::frame::XStorable > xDoc(aNew.Document, css::uno::UNO_QUERY_THROW); in implts_registerDocument()
1793 css::uno::Reference< css::frame::XTitle > xTitle(aNew.Document, css::uno::UNO_QUERY_THROW); in implts_registerDocument()
[all …]
/trunk/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/
H A DDocumentMergerImpl.java26 import org.w3c.dom.Document;
52 private org.openoffice.xmerge.Document orig = null;
54 public DocumentMergerImpl(org.openoffice.xmerge.Document doc, ConverterCapabilities cc) { in DocumentMergerImpl()
59 public void merge(org.openoffice.xmerge.Document modifiedDoc) throws MergeException { in merge()
64 Document doc1 = wdoc1.getContentDOM(); in merge()
65 Document doc2 = wdoc2.getContentDOM(); in merge()
/trunk/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/
H A DDocumentMergerImpl.java26 import org.w3c.dom.Document;
52 private org.openoffice.xmerge.Document orig = null;
54 public DocumentMergerImpl(org.openoffice.xmerge.Document doc, ConverterCapabilities cc) { in DocumentMergerImpl()
59 public void merge(org.openoffice.xmerge.Document modifiedDoc) throws MergeException { in merge()
64 Document doc1 = wdoc1.getContentDOM(); in merge()
65 Document doc2 = wdoc2.getContentDOM(); in merge()
/trunk/main/svtools/source/misc/
H A Dimagemgr.src259 Text [ en-US ] = "StarWriter 4.0 / 5.0 Master Document" ;
299 Text [ en-US ] = "Text Document" ;
343 … Text [ en-US ] = "%PRODUCTXMLFILEFORMATNAME %PRODUCTXMLFILEFORMATVERSION Text Document Template" ;
363 Text [ en-US ] = "MS PowerPoint Document" ;
403 Text [ en-US ] = "%PRODUCTXMLFILEFORMATNAME %PRODUCTXMLFILEFORMATVERSION Text Document" ;
408 Text [ en-US ] = "%PRODUCTXMLFILEFORMATNAME %PRODUCTXMLFILEFORMATVERSION Master Document" ;
412 Text [ en-US ] = "MathML Document" ;
429 Text [ en-US ] = "OpenDocument Master Document" ;
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DDocumentMergerImpl.java30 import org.openoffice.xmerge.Document;
57 private org.openoffice.xmerge.Document orig = null;
66 public DocumentMergerImpl(org.openoffice.xmerge.Document doc, ConverterCapabilities cc) { in DocumentMergerImpl()
71 public void merge(Document modifiedDoc) throws MergeException { in merge()
76 org.w3c.dom.Document doc1 = sdoc1.getContentDOM(); in merge()
77 org.w3c.dom.Document doc2 = sdoc2.getContentDOM(); in merge()
/trunk/main/migrationanalysis/src/driver_docs/
H A Dallstrings.ulf53 en-US = "Document"
80 en-US = "Document"
224 en-US = "Content and Document Properties"
242 en-US = "Document Parts Protection"
266 en-US = "Document Custom Property"
323 … resolve these issues by improving the Microsoft Office filters.<CR>The Document Analysis Wizard h…
332 en-US = "Document modification dates"
335 en-US = "Document with Macro Migration Issues"
338 en-US = "Documents with Document Migration Issues"
923 en-US = "Content And Document Properties"
[all …]
/trunk/main/l10ntools/source/help/
H A DHelpFileDocument.java33 import org.apache.lucene.document.Document;
56 public static Document Document( String aModule, File aCaptionFile, File aContentFile ) in Document() method in HelpFileDocument
58 Document doc = new Document(); in Document()
/trunk/main/sfx2/source/doc/
H A Ddoc.src113 Message [ en-US ] = "Document already open for editing." ;
185 Message [ en-US ] = "Document info cannot be read." ;
237 Text [ en-US ] = "Loading Document" ;
262 …Message [ en-US ] = "Document cannot be opened for editing.\nDo you want to open it as read-only?"…
294 // only translate 'Document'
295 Text [ en-US ] = "%PRODUCTNAME Frame Document" ;
312 Text [ en-US ] = "Text Document" ;
317 Text [ en-US ] = "HTML Document" ;
322 Text [ en-US ] = "Master Document" ;
428 Text [ en-US ] = "Document versions" ;
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/test/
H A DDriver.java33 import org.openoffice.xmerge.Document;
175 Document docOut = (Document)docEnum.nextElement(); in doConversion()
191 Document mergeDoc = myConvert.getOfficeDocument(mergeFile, mergeIS); in doConversion()
194 Document convertedFile = (Document)mergeDocEnum.nextElement(); in doConversion()
/trunk/main/chart2/source/model/inc/
H A DXMLFilter.hxx86 ::com::sun::star::lang::XComponent >& Document )
93 ::com::sun::star::lang::XComponent >& Document )
194 ::com::sun::star::lang::XComponent >& Document ) in setTargetDocument()
199 XMLFilter::setTargetDocument(Document); in setTargetDocument()
205 ::com::sun::star::lang::XComponent >& Document ) in setSourceDocument()
210 XMLFilter::setSourceDocument(Document); in setSourceDocument()

12345678910>>...14