Home
last modified time | relevance | path

Searched refs:xmsf (Results 1 – 25 of 47) sorted by relevance

12

/aoo41x/main/wizards/com/sun/star/wizards/web/data/
H A DCGSettings.java67 private XMultiServiceFactory xmsf; field in CGSettings
78 xmsf = xmsf_; in CGSettings()
84 formatter = new Formatter(xmsf, document); in CGSettings()
130 public void configure(XMultiServiceFactory xmsf) throws Exception in configure() argument
133 calcExportersTargetTypeNames(xmsf); in configure()
138 Object typeDetect = xmsf.createInstance("com.sun.star.document.TypeDetection"); in calcExportersTargetTypeNames()
162 return getFileAccess(xmsf); in getFileAccess()
165 FileAccess getFileAccess(XMultiServiceFactory xmsf) throws Exception in getFileAccess() argument
169 fileAccess = new FileAccess(xmsf); in getFileAccess()
181 public Formatter(XMultiServiceFactory xmsf, Object document) throws Exception in Formatter() argument
[all …]
H A DCGDocument.java118 public CGDocument(String url, XMultiServiceFactory xmsf, Task task) throws Exception in CGDocument() argument
120 cp_URL = getSettings().getFileAccess(xmsf).getURL(url); in CGDocument()
125 validate(xmsf, task); in CGDocument()
134 public void validate(XMultiServiceFactory xmsf, Task task) in validate() argument
140 if (!getSettings().getFileAccess(xmsf).exists(cp_URL, false)) in validate()
144 if (getSettings().getFileAccess(xmsf).isDirectory(cp_URL)) in validate()
148 mediaDescriptor = OfficeDocument.getFileMediaDecriptor(xmsf, cp_URL); in validate()
158 String path = getSettings().getFileAccess(xmsf).getPath(cp_URL, PropertyNames.EMPTY_STRING); in validate()
171 XDesktop desktop = Desktop.getDesktop(xmsf); in validate()
194 updateDate = getSettings().getFileAccess(xmsf).getLastModified(cp_URL); in validate()
H A DCGLayout.java42 private void createTemplates(XMultiServiceFactory xmsf) throws Exception in createTemplates() argument
50 FileAccess fa = new FileAccess(xmsf); in createTemplates()
74 public Map getTemplates(XMultiServiceFactory xmsf) throws Exception in getTemplates() argument
79 createTemplates(xmsf); in getTemplates()
/aoo41x/main/wizards/com/sun/star/wizards/web/
H A DProcess.java98 private XMultiServiceFactory xmsf; field in Process
113 XMultiServiceFactory xmsf, in Process() argument
117 this.xmsf = xmsf; in Process()
119 fileAccess = new FileAccess(xmsf); in Process()
122 ucb = new UCB(xmsf); in Process()
235 static String getSOTempDir(XMultiServiceFactory xmsf) in getSOTempDir() argument
428 generate(xmsf, layout, doc, fileAccess, targetDir, task); in generate()
496 XMultiServiceFactory xmsf, in generate() argument
507 Map templates = layout.getTemplates(xmsf); in generate()
664 doc.validate(xmsf, null); in export()
[all …]
H A DAbstractErrorHandler.java40 XMultiServiceFactory xmsf; field in AbstractErrorHandler
43 protected AbstractErrorHandler(XMultiServiceFactory xmsf, XWindowPeer peer_) in AbstractErrorHandler() argument
45 this.xmsf = xmsf; in AbstractErrorHandler()
93 return showMessage(xmsf, peer, message, errorType); in showMessage()
104 …public static boolean showMessage(XMultiServiceFactory xmsf, XWindowPeer peer, String message, int… in showMessage() argument
108 int b = SystemDialog.showMessageBox(xmsf, peer, serviceName, attribute, message); in showMessage()
112 public static boolean showMessage(XMultiServiceFactory xmsf, XWindowPeer peer, in showMessage() argument
119 … int b = SystemDialog.showMessageBox(xmsf, peer, dialogtype, defaultButton + buttons, message); in showMessage()
H A DTOCPreview.java58 private XMultiServiceFactory xmsf; field in TOCPreview
78 xmsf = xmsf_; in TOCPreview()
80 fileAccess = new FileAccess(xmsf); in TOCPreview()
83 openHyperlink = Desktop.getDispatchURL(xmsf, ".uno:OpenHyperlink"); in TOCPreview()
84 xDispatch = Desktop.getDispatcher(xmsf, xFrame, "_top", openHyperlink); in TOCPreview()
85 ucb = new UCB(xmsf); in TOCPreview()
102 Process.generate(xmsf, layout, doc, fileAccess, tempDir, task); in refresh()
H A DStylePreview.java71 public StylePreview(XMultiServiceFactory xmsf, String wwRoot_) throws Exception in StylePreview() argument
73 fileAccess = new FileAccess(xmsf); in StylePreview()
75 tempDir = createTempDir(xmsf); in StylePreview()
135 private String createTempDir(XMultiServiceFactory xmsf) throws Exception in createTempDir() argument
137 …String tempPath = FileAccess.getOfficePath(xmsf, "Temp", PropertyNames.EMPTY_STRING, PropertyNames… in createTempDir()
H A DWebWizard.java44 public WebWizard(XMultiServiceFactory xmsf) throws Exception in WebWizard() argument
46 super(xmsf); in WebWizard()
56 XMultiServiceFactory xmsf = Desktop.connect(ConnectStr); in main() local
57 WebWizard ww = new WebWizard(xmsf); in main()
H A DBackgroundsDialog.java55 XMultiServiceFactory xmsf, in BackgroundsDialog() argument
59 super(xmsf, WWHID.HID_BG, new String[] in BackgroundsDialog()
71 sd = SystemDialog.createOpenDialog(xmsf); in BackgroundsDialog()
77 fileAccess = new FileAccess(xmsf); in BackgroundsDialog()
H A DIconsDialog.java62 public IconsDialog(XMultiServiceFactory xmsf, in IconsDialog() argument
67 super(xmsf, WWHID.HID_IS, new String[] in IconsDialog()
79 … htmlexpDirectory = FileAccess.getOfficePath(xmsf, "Gallery", "share", PropertyNames.EMPTY_STRING); in IconsDialog()
H A DWWD_General.java80 public WWD_General(XMultiServiceFactory xmsf) in WWD_General() argument
82 super(xmsf); in WWD_General()
83 xStringSubstitution = SystemDialog.createStringSubstitution(xmsf); in WWD_General()
H A DFTPDialog.java181 public FTPDialog(XMultiServiceFactory xmsf, CGPublish p) throws Exception in FTPDialog() argument
183 super(xmsf); in FTPDialog()
190 resources = new FTPDialogResources(xmsf); in FTPDialog()
191 ucb = new UCB(xmsf); in FTPDialog()
H A DFTPDialogResources.java59 public FTPDialogResources(XMultiServiceFactory xmsf) in FTPDialogResources() argument
61 super(xmsf, UNIT_NAME, MODULE_NAME); in FTPDialogResources()
H A DProcessErrorHandler.java50 …public ProcessErrorHandler(XMultiServiceFactory xmsf, XWindowPeer peer, WebWizardDialogResources r… in ProcessErrorHandler() argument
52 super(xmsf, peer); in ProcessErrorHandler()
H A DWWD_Startup.java233 public WWD_Startup(XMultiServiceFactory xmsf) throws Exception in WWD_Startup() argument
235 super(xmsf); in WWD_Startup()
239 String soTemplateDir = FileAccess.getOfficePath(xmsf, "Template", "share", "/wizard"); in WWD_Startup()
253 this.xMSF = xmsf; in WWD_Startup()
/aoo41x/main/wizards/com/sun/star/wizards/agenda/
H A DAgendaTemplate.java369 XMultiServiceFactory xmsf = UnoRuntime.queryInterface(XMultiServiceFactory.class, document); in initItemsCache() local
493 XMultiServiceFactory xmsf = UnoRuntime.queryInterface(XMultiServiceFactory.class, document); in initializeTitles() local
916 public static XTextContent createPlaceHolder(XMultiServiceFactory xmsf, String ph, String hint) in createPlaceHolder() argument
921 placeHolder = xmsf.createInstance("com.sun.star.text.TextField.JumpEdit"); in createPlaceHolder()
1780 XMultiServiceFactory xmsf; field in PlaceholderTextElement
1787 xmsf = xmsf_; in PlaceholderTextElement()
1795 xmsf = xmsf_; in PlaceholderTextElement()
1806 … XTextContent xTextContent = AgendaTemplate.createPlaceHolder(xmsf, placeHolderText, hint); in write()
1833 XMultiServiceFactory xmsf; field in PlaceholderElement
1840 xmsf = xmsf_; in PlaceholderElement()
[all …]
/aoo41x/main/wizards/com/sun/star/wizards/ui/
H A DDocumentPreview.java71 public DocumentPreview(XMultiServiceFactory xmsf, Object control) throws Exception in DocumentPreview() argument
79 createPreviewFrame(xmsf, xControl); in DocumentPreview()
103 …public void reload(XMultiServiceFactory xmsf) throws com.sun.star.lang.IllegalArgumentException, I… in reload() argument
106 createPreviewFrame(xmsf, xControl); in reload()
145 …public void createPreviewFrame(XMultiServiceFactory xmsf, XControl xControl) throws com.sun.star.u… in createPreviewFrame() argument
151 Object toolkit = xmsf.createInstance("com.sun.star.awt.Toolkit"); in createPreviewFrame()
164 Object frame = xmsf.createInstance("com.sun.star.frame.Frame"); in createPreviewFrame()
/aoo41x/main/wizards/com/sun/star/wizards/web/export/
H A DAbstractExporter.java96 protected Object openDocument(CGDocument doc, XMultiServiceFactory xmsf) in openDocument() argument
103 XDesktop desktop = Desktop.getDesktop(xmsf); in openDocument()
125 protected void closeDocument(Object doc, XMultiServiceFactory xmsf) in closeDocument() argument
162 protected FileAccess getFileAccess(XMultiServiceFactory xmsf) in getFileAccess() argument
168 fileAccess = new FileAccess(xmsf); in getFileAccess()
177 protected void calcFileSize(CGDocument doc, String url, XMultiServiceFactory xmsf) in calcFileSize() argument
184 doc.sizeBytes = getFileAccess(xmsf).getSize(url); in calcFileSize()
H A DCopyExporter.java48 public boolean export(CGDocument source, String target, XMultiServiceFactory xmsf, Task task) in export() argument
61 closeDocument(openDocument(source, xmsf), xmsf); in export() local
69 boolean b = getFileAccess(xmsf).copy(source.cp_URL, newTarget); in export()
73 calcFileSize(source, newTarget, xmsf); in export()
H A DFilterExporter.java47 …public boolean export(CGDocument source, String target, XMultiServiceFactory xmsf, Task task) thro… in export() argument
55 document = openDocument(source, xmsf); in export()
69 closeDocument(document, xmsf); in export()
70 calcFileSize(source, target, xmsf); in export()
H A DImpressHTMLExporter.java45 …public boolean export(CGDocument source, String targetDirectory, XMultiServiceFactory xmsf, Task t… in export() argument
74 return super.export(source, targetDirectory, xmsf, task); in export()
/aoo41x/main/wizards/com/sun/star/wizards/common/
H A DSystemDialog.java89 public static SystemDialog createStoreDialog(XMultiServiceFactory xmsf) in createStoreDialog() argument
91 …return new SystemDialog(xmsf, "com.sun.star.ui.dialogs.FilePicker", TemplateDescription.FILESAVE_A… in createStoreDialog()
94 public static SystemDialog createOpenDialog(XMultiServiceFactory xmsf) in createOpenDialog() argument
96 …return new SystemDialog(xmsf, "com.sun.star.ui.dialogs.FilePicker", TemplateDescription.FILEOPEN_S… in createOpenDialog()
99 public static SystemDialog createFolderDialog(XMultiServiceFactory xmsf) in createFolderDialog() argument
101 return new SystemDialog(xmsf, "com.sun.star.ui.dialogs.FolderPicker", (short) 0); in createFolderDialog()
104 public static SystemDialog createOfficeFolderDialog(XMultiServiceFactory xmsf) in createOfficeFolderDialog() argument
106 return new SystemDialog(xmsf, "com.sun.star.ui.dialogs.OfficeFolderPicker", (short) 0); in createOfficeFolderDialog()
H A DConfiguration.java159 …public static Object getConfigurationRoot(XMultiServiceFactory xmsf, String sPath, boolean updatea… in getConfigurationRoot() argument
163 oConfigProvider = xmsf.createInstance("com.sun.star.configuration.ConfigurationProvider"); in getConfigurationRoot()
311 …public static void updateConfiguration(XMultiServiceFactory xmsf, String path, String name, Config… in updateConfiguration() argument
313 Object view = Configuration.getConfigurationRoot(xmsf, path, true); in updateConfiguration()
320 …public static void removeNode(XMultiServiceFactory xmsf, String path, String name) throws com.sun.… in removeNode() argument
322 Object view = Configuration.getConfigurationRoot(xmsf, path, true); in removeNode()
H A DUCB.java55 public UCB(XMultiServiceFactory xmsf) throws Exception in UCB() argument
60 ucb = xmsf.createInstanceWithArguments( in UCB()
62 fa = new FileAccess(xmsf); in UCB()
/aoo41x/main/wizards/com/sun/star/wizards/document/
H A DOfficeDocument.java381 public static PropertyValue[] getFileMediaDecriptor(XMultiServiceFactory xmsf, String url) in getFileMediaDecriptor() argument
384 Object typeDetect = xmsf.createInstance("com.sun.star.document.TypeDetection"); in getFileMediaDecriptor()
404 public static PropertyValue[] getTypeMediaDescriptor(XMultiServiceFactory xmsf, String type) in getTypeMediaDescriptor() argument
407 Object typeDetect = xmsf.createInstance("com.sun.star.document.TypeDetection"); in getTypeMediaDescriptor()

Completed in 83 milliseconds

12