Package com.sun.star.wizards.common

Examples of com.sun.star.wizards.common.UNODialogs


   
   
    public void showProgressDisplay(XMultiServiceFactory xMSF, boolean bgetConnection){
    try{
      int iHeight;
      CurUNOProgressDialog = new UNODialogs(xMSF, new String[] {"Height", "Step", "Title", "Width"},
              new Object[] {new Integer(84), new Integer(0), sProgressTitle, new Integer(180)});
      com.sun.star.awt.FontDescriptor oFontDesc = new com.sun.star.awt.FontDescriptor();
      oFontDesc.Weight = com.sun.star.awt.FontWeight.BOLD;

      if (bgetConnection){
View Full Code Here


      CurReportDocument =  new ReportDocument(xMSF, true, false, ReportMessages);
      if (CurReportDocument.CurDBMetaData.DataSourceNames.length > 0){              // 1
    CurReportDocument.xProgressBar.setValue(20);
    CurReportDocument.loadStyleTemplates(CurReportPaths.ReportPath + "/stl-default.stw", "LoadPageStyles");
    WidthList = DBMetaData.InitializeWidthList();
    CurUNODialog = new UNODialogs(xMSF, new String[] {"Height", "HelpURL", "Step", "Title", "Width"},
    new Object[] {new Integer(210), "HID:34320", new Integer(1), WizardTitle[0], new Integer(270)});
    CurReportDocument.xProgressBar.setValue(30);
    fillFirstStep(CurReportDocument, CurPropertyValue, CurReportDocument.CurDBMetaData);
    CurReportDocument.xProgressBar.setValue(40);
    fillSecondStep();
View Full Code Here

TOP

Related Classes of com.sun.star.wizards.common.UNODialogs

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.