summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/UnoDialog2.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/UnoDialog2.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/UnoDialog2.java385
1 files changed, 385 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/ui/UnoDialog2.java b/wizards/com/sun/star/wizards/ui/UnoDialog2.java
new file mode 100644
index 000000000000..0769e1d23b38
--- /dev/null
+++ b/wizards/com/sun/star/wizards/ui/UnoDialog2.java
@@ -0,0 +1,385 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+package com.sun.star.wizards.ui;
+
+import com.sun.star.awt.*;
+import com.sun.star.lang.XMultiServiceFactory;
+import com.sun.star.uno.UnoRuntime;
+import com.sun.star.uno.XInterface;
+import com.sun.star.wizards.common.Desktop;
+import com.sun.star.wizards.common.Helper;
+import com.sun.star.wizards.common.PropertyNames;
+import com.sun.star.wizards.common.SystemDialog;
+import com.sun.star.wizards.ui.event.*;
+
+/**
+ * This class contains convenience methods for inserting components to a dialog.
+ * It was created for use with the automatic conversion of Basic XML Dialog
+ * description files to a Java class which builds the same dialog through the UNO API.<br/>
+ * It uses an Event-Listener method, which calls a method through reflection
+ * wenn an event on a component is trigered.
+ * see the classes AbstractListener, CommonListener, MethodInvocation for details.
+ */
+public class UnoDialog2 extends UnoDialog implements EventNames
+{
+
+ /**
+ * Override this method to return another listener.
+ * @return
+ */
+ protected AbstractListener createListener()
+ {
+ return new CommonListener();
+ }
+
+ public UnoDialog2(XMultiServiceFactory xmsf)
+ {
+ super(xmsf, new String[]
+ {
+ }, new Object[]
+ {
+ });
+ guiEventListener = createListener();
+ }
+
+ public XButton insertButton(String sName, String actionPerformed, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+
+ XButton xButton = (XButton) insertControlModel2("com.sun.star.awt.UnoControlButtonModel", sName, sPropNames, oPropValues, XButton.class);
+
+ if (actionPerformed != null)
+ {
+ xButton.addActionListener((XActionListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ACTION_PERFORMED, actionPerformed, eventTarget);
+ }
+ return xButton;
+ }
+
+ public XButton insertButton(String sName, String actionPerformed, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertButton(sName, actionPerformed, this, sPropNames, oPropValues);
+ }
+
+ public XButton insertImageButton(String sName, com.sun.star.awt.XActionListener actionPerformed, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+
+ XButton xButton = (XButton) insertControlModel2("com.sun.star.awt.UnoControlButtonModel", sName, sPropNames, oPropValues, XButton.class);
+
+ if (actionPerformed != null)
+ {
+ xButton.addActionListener(actionPerformed);
+ }
+ return xButton;
+ }
+
+ public XButton insertImageButton(String sName, com.sun.star.awt.XActionListener actionPerformed, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertImageButton(sName, actionPerformed, this, sPropNames, oPropValues);
+ }
+
+ public XCheckBox insertCheckBox(String sName, String itemChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+
+ XCheckBox xCheckBox = (XCheckBox) insertControlModel2("com.sun.star.awt.UnoControlCheckBoxModel", sName, sPropNames, oPropValues, XCheckBox.class);
+
+ if (itemChanged != null)
+ {
+ xCheckBox.addItemListener((XItemListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ITEM_CHANGED, itemChanged, eventTarget);
+ }
+ return xCheckBox;
+ }
+
+ public XCheckBox insertCheckBox(String sName, String itemChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertCheckBox(sName, itemChanged, this, sPropNames, oPropValues);
+ }
+
+ public XComboBox insertComboBox(String sName, String actionPerformed, String itemChanged, String textChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ XComboBox xComboBox = (XComboBox) insertControlModel2("com.sun.star.awt.UnoControlComboBoxModel", sName, sPropNames, oPropValues, XComboBox.class);
+ if (actionPerformed != null)
+ {
+ xComboBox.addActionListener((XActionListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ACTION_PERFORMED, actionPerformed, eventTarget);
+ }
+ if (itemChanged != null)
+ {
+ xComboBox.addItemListener((XItemListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ITEM_CHANGED, itemChanged, eventTarget);
+ }
+ if (textChanged != null)
+ {
+ XTextComponent xTextComponent = (XTextComponent) UnoRuntime.queryInterface(XTextComponent.class, xComboBox);
+ xTextComponent.addTextListener((XTextListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_TEXT_CHANGED, textChanged, eventTarget);
+ }
+ return xComboBox;
+ }
+
+ public XComboBox insertComboBox(String sName, String actionPerformed, String itemChanged, String textChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertComboBox(sName, actionPerformed, textChanged, itemChanged, this, sPropNames, oPropValues);
+ }
+
+ public XListBox insertListBox(String sName, String actionPerformed, String itemChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ XListBox xListBox = (XListBox) insertControlModel2("com.sun.star.awt.UnoControlListBoxModel", sName, sPropNames, oPropValues, XListBox.class);
+ if (actionPerformed != null)
+ {
+ xListBox.addActionListener((XActionListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ACTION_PERFORMED, actionPerformed, eventTarget);
+ }
+ if (itemChanged != null)
+ {
+ xListBox.addItemListener((XItemListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ITEM_CHANGED, itemChanged, eventTarget);
+ }
+ return xListBox;
+ }
+
+ public XListBox insertListBox(String sName, String actionPerformed, String itemChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertListBox(sName, actionPerformed, itemChanged, this, sPropNames, oPropValues);
+ }
+
+ public XRadioButton insertRadioButton(String sName, String itemChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ XRadioButton xRadioButton = (XRadioButton) insertControlModel2("com.sun.star.awt.UnoControlRadioButtonModel", sName, sPropNames, oPropValues, XRadioButton.class);
+ if (itemChanged != null)
+ {
+ xRadioButton.addItemListener((XItemListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_ITEM_CHANGED, itemChanged, eventTarget);
+ }
+ return xRadioButton;
+ }
+
+ public XRadioButton insertRadioButton(String sName, String itemChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertRadioButton(sName, itemChanged, this, sPropNames, oPropValues);
+ }
+
+ public XControl insertTitledBox(String sName, String[] sPropNames, Object[] oPropValues)
+ {
+ Object oTitledBox = insertControlModel2("com.sun.star.awt.UnoControlGroupBoxModel", sName, sPropNames, oPropValues);
+ return (XControl) UnoRuntime.queryInterface(XControl.class, oTitledBox);
+ }
+
+ public XTextComponent insertTextField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XTextComponent) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlEditModel", sPropNames, oPropValues, XTextComponent.class);
+ }
+
+ public XTextComponent insertTextField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertTextField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XControl insertImage(String sName, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XControl) insertControlModel2("com.sun.star.awt.UnoControlImageControlModel", sName, sPropNames, oPropValues, XControl.class);
+ }
+
+ public XControl insertInfoImage(int _posx, int _posy, int _iStep)
+ {
+ XControl xImgControl = insertImage(Desktop.getUniqueName(getDlgNameAccess(), "imgHint"),
+ new String[]
+ {
+ "Border", PropertyNames.PROPERTY_HEIGHT, PropertyNames.PROPERTY_IMAGEURL, PropertyNames.PROPERTY_POSITION_X, PropertyNames.PROPERTY_POSITION_Y, "ScaleImage", PropertyNames.PROPERTY_STEP, PropertyNames.PROPERTY_WIDTH
+ },
+ new Object[]
+ {
+ new Short((short) 0), new Integer(10), UIConsts.INFOIMAGEURL, new Integer(_posx), new Integer(_posy), Boolean.FALSE, new Integer(_iStep), new Integer(10)
+ });
+ super.getPeerConfiguration().setImageUrl(getModel(xImgControl), UIConsts.INFOIMAGEURL, UIConsts.INFOIMAGEURL_HC);
+ return xImgControl;
+ }
+
+ /**
+ * This method is used for creating Edit, Currency, Date, Formatted, Pattern, File
+ * and Time edit components.
+ */
+ private Object insertEditField(String sName, String sTextChanged, Object eventTarget, String sModelClass, String[] sPropNames, Object[] oPropValues, Class type)
+ {
+ XTextComponent xField = (XTextComponent) insertControlModel2(sModelClass, sName, sPropNames, oPropValues, XTextComponent.class);
+ if (sTextChanged != null)
+ {
+ xField.addTextListener((XTextListener) guiEventListener);
+ guiEventListener.add(sName, EVENT_TEXT_CHANGED, sTextChanged, eventTarget);
+ }
+ return UnoRuntime.queryInterface(type, xField);
+ }
+
+ public XControl insertFileControl(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XControl) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlFileControlModel", sPropNames, oPropValues, XControl.class);
+ }
+
+ public XControl insertFileControl(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertFileControl(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XCurrencyField insertCurrencyField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XCurrencyField) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlCurrencyFieldModel", sPropNames, oPropValues, XCurrencyField.class);
+ }
+
+ public XCurrencyField insertCurrencyField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertCurrencyField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XDateField insertDateField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XDateField) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlDateFieldModel", sPropNames, oPropValues, XDateField.class);
+ }
+
+ public XDateField insertDateField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertDateField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XNumericField insertNumericField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XNumericField) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlNumericFieldModel", sPropNames, oPropValues, XNumericField.class);
+ }
+
+ public XNumericField insertNumericField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertNumericField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XTimeField insertTimeField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XTimeField) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlTimeFieldModel", sPropNames, oPropValues, XTimeField.class);
+ }
+
+ public XTimeField insertTimeField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertTimeField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XPatternField insertPatternField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XPatternField) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlPatternFieldModel", sPropNames, oPropValues, XPatternField.class);
+ }
+
+ public XPatternField insertPatternField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertPatternField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XTextComponent insertFormattedField(String sName, String sTextChanged, Object eventTarget, String[] sPropNames, Object[] oPropValues)
+ {
+ return (XTextComponent) insertEditField(sName, sTextChanged, eventTarget, "com.sun.star.awt.UnoControlFormattedFieldModel", sPropNames, oPropValues, XTextComponent.class);
+ }
+
+ public XTextComponent insertFormattedField(String sName, String sTextChanged, String[] sPropNames, Object[] oPropValues)
+ {
+ return insertFormattedField(sName, sTextChanged, this, sPropNames, oPropValues);
+ }
+
+ public XControl insertFixedLine(String sName, String[] sPropNames, Object[] oPropValues)
+ {
+ Object oLine = insertControlModel2("com.sun.star.awt.UnoControlFixedLineModel", sName, sPropNames, oPropValues);
+ return (XControl) UnoRuntime.queryInterface(XControl.class, oLine);
+ }
+
+ public XScrollBar insertScrollBar(String sName, String[] sPropNames, Object[] oPropValues)
+ {
+ Object oScrollBar = insertControlModel2("com.sun.star.awt.UnoControlScrollBarModel", sName, sPropNames, oPropValues);
+ return (XScrollBar) UnoRuntime.queryInterface(XScrollBar.class, oScrollBar);
+ }
+
+ public XProgressBar insertProgressBar(String sName, String[] sPropNames, Object[] oPropValues)
+ {
+ Object oProgressBar = insertControlModel2("com.sun.star.awt.UnoControlProgressBarModel", sName, sPropNames, oPropValues);
+ return (XProgressBar) UnoRuntime.queryInterface(XProgressBar.class, oProgressBar);
+ }
+
+ public XControl insertGroupBox(String sName, String[] sPropNames, Object[] oPropValues)
+ {
+ Object oGroupBox = insertControlModel2("com.sun.star.awt.UnoControlGroupBoxModel", sName, sPropNames, oPropValues);
+ return (XControl) UnoRuntime.queryInterface(XControl.class, oGroupBox);
+ }
+
+ public Object insertControlModel2(String serviceName, String componentName, String[] sPropNames, Object[] oPropValues)
+ {
+ try
+ {
+ //System.out.println("Inserting : " + componentName);
+ XInterface xControlModel = insertControlModel(serviceName, componentName, new String[]
+ {
+ }, new Object[]
+ {
+ });
+ Helper.setUnoPropertyValues(xControlModel, sPropNames, oPropValues);
+ //setControlPropertiesDebug(xControlModel, sPropNames, oPropValues);
+ //System.out.println(" Setting props successfull !");
+ Helper.setUnoPropertyValue(xControlModel, PropertyNames.PROPERTY_NAME, componentName);
+ }
+ catch (Exception ex)
+ {
+ ex.printStackTrace();
+ }
+ final Object aObj = xDlgContainer.getControl(componentName);
+ return aObj;
+ }
+
+ private void setControlPropertiesDebug(Object model, String[] names, Object[] values)
+ {
+ for (int i = 0; i < names.length; i++)
+ {
+ System.out.println(" Settings: " + names[i]);
+ Helper.setUnoPropertyValue(model, names[i], values[i]);
+ }
+
+
+ }
+
+ public Object insertControlModel2(String serviceName, String componentName, String[] sPropNames, Object[] oPropValues, Class type)
+ {
+ return UnoRuntime.queryInterface(type, insertControlModel2(serviceName, componentName, sPropNames, oPropValues));
+ }
+
+ public String translateURL(String relativeURL)
+ {
+ return "";
+ }
+
+ public static Object getControlModel(Object unoControl)
+ {
+ Object obj = ((XControl) UnoRuntime.queryInterface(XControl.class, unoControl)).getModel();
+ return obj;
+ }
+
+ public int showMessageBox(String windowServiceName, int windowAttribute, String MessageText)
+ {
+ return SystemDialog.showMessageBox(xMSF, this.xControl.getPeer(), windowServiceName, windowAttribute, MessageText);
+ }
+}