summaryrefslogtreecommitdiff
path: root/scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java')
-rwxr-xr-xscripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java147
1 files changed, 147 insertions, 0 deletions
diff --git a/scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java b/scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java
new file mode 100755
index 000000000000..f9747d7db398
--- /dev/null
+++ b/scripting/java/org/openoffice/netbeans/modules/office/options/OfficeSettingsBeanInfo.java
@@ -0,0 +1,147 @@
+/*************************************************************************
+ *
+ * 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 org.openoffice.netbeans.modules.office.options;
+
+import java.awt.Image;
+import java.awt.Component;
+import javax.swing.event.ChangeListener;
+import javax.swing.event.ChangeEvent;
+import java.beans.*;
+
+import org.openide.ErrorManager;
+import org.openide.util.NbBundle;
+import org.openide.util.Utilities;
+
+import org.openoffice.idesupport.OfficeInstallation;
+import org.openoffice.netbeans.modules.office.wizard.SelectPathPanel;
+
+/** Description of {@link OfficeSettings}.
+ *
+ * @author tomaso
+ */
+public class OfficeSettingsBeanInfo extends SimpleBeanInfo {
+
+ public PropertyDescriptor[] getPropertyDescriptors() {
+ try {
+ PropertyDescriptor[] props = new PropertyDescriptor[] {
+ new PropertyDescriptor(OfficeSettings.OFFICE_DIRECTORY,
+ OfficeSettings.class,
+ "get" + OfficeSettings.OFFICE_DIRECTORY,
+ "set" + OfficeSettings.OFFICE_DIRECTORY),
+ new PropertyDescriptor(OfficeSettings.WARN_BEFORE_DOC_DEPLOY,
+ OfficeSettings.class,
+ "get" + OfficeSettings.WARN_BEFORE_DOC_DEPLOY,
+ "set" + OfficeSettings.WARN_BEFORE_DOC_DEPLOY),
+ new PropertyDescriptor(OfficeSettings.WARN_BEFORE_PARCEL_DELETE,
+ OfficeSettings.class,
+ "get" + OfficeSettings.WARN_BEFORE_PARCEL_DELETE,
+ "set" + OfficeSettings.WARN_BEFORE_PARCEL_DELETE),
+ new PropertyDescriptor(OfficeSettings.WARN_AFTER_DIR_DEPLOY,
+ OfficeSettings.class,
+ "get" + OfficeSettings.WARN_AFTER_DIR_DEPLOY,
+ "set" + OfficeSettings.WARN_AFTER_DIR_DEPLOY),
+ new PropertyDescriptor(OfficeSettings.WARN_BEFORE_MOUNT,
+ OfficeSettings.class,
+ "get" + OfficeSettings.WARN_BEFORE_MOUNT,
+ "set" + OfficeSettings.WARN_BEFORE_MOUNT)
+ };
+
+ props[0].setDisplayName(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "PROP_OfficeDirectory"));
+ props[0].setShortDescription(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "HINT_OfficeDirectory"));
+ props[0].setPropertyEditorClass(OfficeDirectoryEditor.class);
+
+ props[1].setDisplayName(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "PROP_WarnBeforeDocDeploy"));
+ props[1].setShortDescription(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "HINT_WarnBeforeDocDeploy"));
+ props[1].setHidden(true);
+
+ props[2].setDisplayName(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "PROP_WarnAfterDirDeploy"));
+ props[2].setShortDescription(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "HINT_WarnAfterDirDeploy"));
+ props[2].setHidden(true);
+
+ props[3].setDisplayName(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "PROP_WarnBeforeMount"));
+ props[3].setShortDescription(NbBundle.getMessage(
+ OfficeSettingsBeanInfo.class, "HINT_WarnBeforeMount"));
+ props[3].setHidden(true);
+
+ return props;
+ }
+ catch (IntrospectionException ie) {
+ ErrorManager.getDefault().notify(ie);
+ return null;
+ }
+ }
+
+ public Image getIcon(int type) {
+ if (type == BeanInfo.ICON_COLOR_16x16 || type == BeanInfo.ICON_MONO_16x16) {
+ return Utilities.loadImage("/org/openoffice/netbeans/modules/office/options/OfficeSettingsIcon.gif");
+ } else {
+ return Utilities.loadImage("/org/openoffice/netbeans/modules/office/options/OfficeSettingsIcon32.gif");
+ }
+ }
+
+ public static class OfficeDirectoryEditor extends PropertyEditorSupport
+ implements ChangeListener {
+
+ private SelectPathPanel panel;
+
+ public String getAsText () {
+ return ((OfficeInstallation)getValue()).getPath();
+ }
+
+ public void setAsText (String path) {
+ OfficeInstallation oi = new OfficeInstallation(path);
+
+ if (!oi.supportsFramework())
+ throw new IllegalArgumentException(path +
+ " is not a valid Office install");
+ else
+ setValue (oi);
+ }
+
+ public Component getCustomEditor() {
+ panel = new SelectPathPanel();
+ panel.addChangeListener(this);
+ return panel.getComponent();
+ }
+
+ public boolean supportsCustomEditor() {
+ return true;
+ }
+
+ public void stateChanged(ChangeEvent evt) {
+ setValue(panel.getSelectedPath());
+ }
+ }
+}