Lines Matching refs:xMSF

66     public static XDesktop getDesktop(XMultiServiceFactory xMSF)  in getDesktop()  argument
70 if (xMSF != null) in getDesktop()
74 … xInterface = (com.sun.star.uno.XInterface) xMSF.createInstance("com.sun.star.frame.Desktop"); in getDesktop()
89 public static XFrame getActiveFrame(XMultiServiceFactory xMSF) in getActiveFrame() argument
91 XDesktop xDesktop = getDesktop(xMSF); in getActiveFrame()
114 …public static XDispatch getDispatcher(XMultiServiceFactory xMSF, XFrame xFrame, String _stargetfra… in getDispatcher() argument
130 public static com.sun.star.util.URL getDispatchURL(XMultiServiceFactory xMSF, String _sURL) in getDispatchURL() argument
134 Object oTransformer = xMSF.createInstance("com.sun.star.util.URLTransformer"); in getDispatchURL()
149 …public static void dispatchURL(XMultiServiceFactory xMSF, String sURL, XFrame xFrame, String _star… in dispatchURL() argument
151 com.sun.star.util.URL oURL = getDispatchURL(xMSF, sURL); in dispatchURL()
152 XDispatch xDispatch = getDispatcher(xMSF, xFrame, _stargetframe, oURL); in dispatchURL()
156 public static void dispatchURL(XMultiServiceFactory xMSF, String sURL, XFrame xFrame) in dispatchURL() argument
158 dispatchURL(xMSF, sURL, xFrame, PropertyNames.EMPTY_STRING); in dispatchURL()
327 …public static XInterface getRegistryKeyContent(XMultiServiceFactory xMSF, String KeyName, boolean … in getRegistryKeyContent() argument
333 … oConfigProvider = xMSF.createInstance("com.sun.star.configuration.ConfigurationProvider"); in getRegistryKeyContent()
367 public OfficePathRetriever(XMultiServiceFactory xMSF) in OfficePathRetriever() argument
371 TemplatePath = FileAccess.getOfficePath(xMSF, "Template", "share", "/wizard"); in OfficePathRetriever()
372 … UserTemplatePath = FileAccess.getOfficePath(xMSF, "Template", "user", PropertyNames.EMPTY_STRING); in OfficePathRetriever()
373 BitmapPath = FileAccess.combinePaths(xMSF, TemplatePath, "/../wizard/bitmap"); in OfficePathRetriever()
374 …WorkPath = FileAccess.getOfficePath(xMSF, "Work", PropertyNames.EMPTY_STRING, PropertyNames.EMPTY_… in OfficePathRetriever()
430 public static XStringSubstitution createStringSubstitution(XMultiServiceFactory xMSF) in createStringSubstitution() argument
435 xPathSubst = xMSF.createInstance("com.sun.star.util.PathSubstitution"); in createStringSubstitution()
467 public static XFrame findAFrame(XMultiServiceFactory xMSF, XFrame myFrame, XFrame desktop) in findAFrame() argument
482 …for (XEnumeration e = Desktop.getDesktop(xMSF).getComponents().createEnumeration(); e.hasMoreEleme… in findAFrame()