Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'rpm/org.eclipse.linuxtools.rpm.ui/src/org/eclipse/linuxtools/rpm/ui/propertypage/InstallScriptsPage.java')
-rw-r--r--rpm/org.eclipse.linuxtools.rpm.ui/src/org/eclipse/linuxtools/rpm/ui/propertypage/InstallScriptsPage.java153
1 files changed, 153 insertions, 0 deletions
diff --git a/rpm/org.eclipse.linuxtools.rpm.ui/src/org/eclipse/linuxtools/rpm/ui/propertypage/InstallScriptsPage.java b/rpm/org.eclipse.linuxtools.rpm.ui/src/org/eclipse/linuxtools/rpm/ui/propertypage/InstallScriptsPage.java
new file mode 100644
index 0000000000..28b2ad4ab3
--- /dev/null
+++ b/rpm/org.eclipse.linuxtools.rpm.ui/src/org/eclipse/linuxtools/rpm/ui/propertypage/InstallScriptsPage.java
@@ -0,0 +1,153 @@
+/*******************************************************************************
+ * Copyright (c) 2004-2009 Red Hat, Inc.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.linuxtools.rpm.ui.propertypage;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.jface.preference.PreferencePage;
+import org.eclipse.linuxtools.rpm.core.utils.RPMQuery;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Label;
+import org.eclipse.swt.widgets.Text;
+import org.eclipse.ui.dialogs.PropertyPage;
+import org.eclipse.ui.statushandlers.StatusAdapter;
+import org.eclipse.ui.statushandlers.StatusManager;
+
+public class InstallScriptsPage extends PropertyPage {
+
+ private static final String RPM_PRE_INSTALL = Messages
+ .getString("InstallScriptsPage.PreinstallScript"); //$NON-NLS-1$
+
+ private static final String RPM_POST_INSTALL = Messages
+ .getString("InstallScriptsPage.PostinstallScript"); //$NON-NLS-1$
+
+ private static final String RPM_PRE_UNINSTALL = Messages
+ .getString("InstallScriptsPage.PreuninstallScript"); //$NON-NLS-1$
+
+ private static final String RPM_POST_UNINSTALL = Messages
+ .getString("InstallScriptsPage.PostuninstallScript"); //$NON-NLS-1$
+
+ private static final int SCRIPT_ENTRIES_FIELD_WIDTH = 80;
+
+ private static final int SCRIPT_ENTRIES_FIELD_HEIGHT = 20;
+
+ private Text rpm_PreInstallText;
+
+ private Text rpm_PostInstallText;
+
+ private Text rpm_PreUnInstallText;
+
+ private Text rpm_PostUnInstallText;
+
+ /**
+ * Constructor for RPMPropertyPage.
+ */
+ public InstallScriptsPage() {
+ super();
+ }
+
+ private void addScriptFields(Composite parent) {
+ Composite composite = createDefaultComposite(parent);
+
+ // RPM labels and text fields setup
+
+ Label rpmPreInstallLabel = new Label(composite, SWT.NONE);
+ rpmPreInstallLabel.setText(RPM_PRE_INSTALL);
+ rpm_PreInstallText = new Text(composite, SWT.MULTI | SWT.BORDER
+ | SWT.READ_ONLY | SWT.V_SCROLL | SWT.WRAP);
+ GridData gdPreInst = new GridData();
+ gdPreInst.widthHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_WIDTH);
+ gdPreInst.heightHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_HEIGHT);
+ rpm_PreInstallText.setLayoutData(gdPreInst);
+
+ Label rpmPostInstallLabel = new Label(composite, SWT.NONE);
+ rpmPostInstallLabel.setText(RPM_POST_INSTALL);
+ rpm_PostInstallText = new Text(composite, SWT.MULTI | SWT.BORDER
+ | SWT.READ_ONLY | SWT.V_SCROLL | SWT.WRAP);
+ GridData gdPostInst = new GridData();
+ gdPostInst.widthHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_WIDTH);
+ gdPostInst.heightHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_HEIGHT);
+ rpm_PostInstallText.setLayoutData(gdPostInst);
+
+ Label rpmPreUnInstallLabel = new Label(composite, SWT.NONE);
+ rpmPreUnInstallLabel.setText(RPM_PRE_UNINSTALL);
+ rpm_PreUnInstallText = new Text(composite, SWT.MULTI | SWT.BORDER
+ | SWT.READ_ONLY | SWT.V_SCROLL | SWT.WRAP);
+ GridData gdPreUnInst = new GridData();
+ gdPreUnInst.widthHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_WIDTH);
+ gdPreUnInst.heightHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_HEIGHT);
+ rpm_PreUnInstallText.setLayoutData(gdPreUnInst);
+
+ Label rpmPostUnInstallLabel = new Label(composite, SWT.NONE);
+ rpmPostUnInstallLabel.setText(RPM_POST_UNINSTALL);
+ rpm_PostUnInstallText = new Text(composite, SWT.MULTI | SWT.BORDER
+ | SWT.READ_ONLY | SWT.V_SCROLL | SWT.WRAP);
+ GridData gdPostUnInst = new GridData();
+ gdPostUnInst.widthHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_WIDTH);
+ gdPostUnInst.heightHint = convertWidthInCharsToPixels(SCRIPT_ENTRIES_FIELD_HEIGHT);
+ rpm_PostUnInstallText.setLayoutData(gdPostUnInst);
+
+ // Populate RPM text fields
+ try {
+ IFile rpmFile = (IFile) getElement();
+ String rpm_PreInstall = RPMQuery.getPreInstallScript(rpmFile);
+ rpm_PreInstallText.setText(rpm_PreInstall);
+
+ String rpm_PostInstall = RPMQuery.getPostInstallScript(rpmFile);
+ rpm_PostInstallText.setText(rpm_PostInstall);
+
+ String rpm_PreUnInstall = RPMQuery.getPreUninstallScript(rpmFile);
+ rpm_PreUnInstallText.setText(rpm_PreUnInstall);
+
+ String rpm_PostUnInstall = RPMQuery.getPostUninstallScript(rpmFile);
+ rpm_PostUnInstallText.setText(rpm_PostUnInstall);
+ } catch (CoreException e) {
+ StatusManager.getManager().handle(new StatusAdapter(e.getStatus()),
+ StatusManager.LOG | StatusManager.SHOW);
+ }
+
+ }
+
+ /**
+ * @see PreferencePage#createContents(Composite)
+ */
+ @Override
+ protected Control createContents(Composite parent) {
+ Composite composite = new Composite(parent, SWT.NONE);
+ GridLayout layout = new GridLayout();
+ composite.setLayout(layout);
+ GridData data = new GridData(GridData.FILL);
+ data.grabExcessHorizontalSpace = true;
+ composite.setLayoutData(data);
+
+ addScriptFields(composite);
+ return composite;
+ }
+
+ private Composite createDefaultComposite(Composite parent) {
+ Composite composite = new Composite(parent, SWT.NULL);
+ GridLayout layout = new GridLayout();
+ layout.numColumns = 2;
+ composite.setLayout(layout);
+
+ GridData data = new GridData();
+ data.verticalAlignment = GridData.FILL;
+ data.horizontalAlignment = GridData.FILL;
+ composite.setLayoutData(data);
+
+ return composite;
+ }
+
+} \ No newline at end of file

Back to the top