Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2005-03-30 18:13:32 +0000
committernitind2005-03-30 18:13:32 +0000
commitbca26632bc76e44b789d3a2abdabd37b8c612856 (patch)
treeb01bd047b5ef6baaba22b4336c46edca9040a2f8 /bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentoutline/PropertyChangeUpdateAction.java
parent1de77ff70afb4c0e88abce34ad371838f6ecdd92 (diff)
downloadwebtools.sourceediting-bca26632bc76e44b789d3a2abdabd37b8c612856.tar.gz
webtools.sourceediting-bca26632bc76e44b789d3a2abdabd37b8c612856.tar.xz
webtools.sourceediting-bca26632bc76e44b789d3a2abdabd37b8c612856.zip
move property sheet and content outline to internal
Diffstat (limited to 'bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentoutline/PropertyChangeUpdateAction.java')
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentoutline/PropertyChangeUpdateAction.java80
1 files changed, 80 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentoutline/PropertyChangeUpdateAction.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentoutline/PropertyChangeUpdateAction.java
new file mode 100644
index 0000000000..3a538c2d01
--- /dev/null
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/contentoutline/PropertyChangeUpdateAction.java
@@ -0,0 +1,80 @@
+/*******************************************************************************
+ * Copyright (c) 2001, 2004 IBM Corporation and others.
+ * 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:
+ * IBM Corporation - initial API and implementation
+ * Jens Lukowski/Innoopract - initial renaming/restructuring
+ *
+ *******************************************************************************/
+package org.eclipse.wst.sse.ui.internal.contentoutline;
+
+import org.eclipse.jface.action.Action;
+import org.eclipse.jface.action.IAction;
+import org.eclipse.jface.preference.IPreferenceStore;
+import org.eclipse.ui.texteditor.IUpdate;
+
+/**
+ * An IAction.AS_CHECK_BOX action that sets and gets its checked state along
+ * with a value from a preference store. Should be used with
+ * PropertyChangeUpdateActionContributionItem to listen to changes in the
+ * store and update the checked state from PropertyChangeEvents.
+ */
+public class PropertyChangeUpdateAction extends Action implements IUpdate {
+ private String fPreferenceKey;
+ private IPreferenceStore fStore;
+ private boolean fUpdateFromPropertyChange = true;
+
+ public PropertyChangeUpdateAction(String text, IPreferenceStore store, String preferenceKey, boolean defaultValue) {
+ super(text, IAction.AS_CHECK_BOX);
+ fPreferenceKey = preferenceKey;
+ fStore = store;
+ fStore.setDefault(getPreferenceKey(), defaultValue);
+ setId(getPreferenceKey());
+ setChecked(getPreferenceStore().getBoolean(getPreferenceKey()));
+ }
+
+ /**
+ * @return Returns the orderPreferenceKey.
+ */
+ public String getPreferenceKey() {
+ return fPreferenceKey;
+ }
+
+ /**
+ * @return Returns the store.
+ */
+ public IPreferenceStore getPreferenceStore() {
+ return fStore;
+ }
+
+ /**
+ * @return Returns the updateFromPropertyChange.
+ */
+ public boolean isUpdateFromPropertyChange() {
+ return fUpdateFromPropertyChange;
+ }
+
+ public final void run() {
+ super.run();
+ fStore.setValue(getPreferenceKey(), isChecked());
+ if (!isUpdateFromPropertyChange())
+ update();
+ }
+
+ /**
+ * @param updateFromPropertyChange
+ * The updateFromPropertyChange to set.
+ */
+ public void setUpdateFromPropertyChange(boolean updateFromPropertyChange) {
+ fUpdateFromPropertyChange = updateFromPropertyChange;
+ }
+
+ public void update() {
+ setChecked(fStore.getBoolean(getPreferenceKey()));
+ }
+
+}

Back to the top