Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Unified Diff: editor/tools/plugins/com.xored.glance.ui/src/com/xored/glance/ui/controls/text/styled/AbstractStyledTextSource.java

Issue 17431004: New UI for Find command: find-as-you-type. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.xored.glance.ui/src/com/xored/glance/ui/controls/text/styled/AbstractStyledTextSource.java
===================================================================
--- editor/tools/plugins/com.xored.glance.ui/src/com/xored/glance/ui/controls/text/styled/AbstractStyledTextSource.java (revision 0)
+++ editor/tools/plugins/com.xored.glance.ui/src/com/xored/glance/ui/controls/text/styled/AbstractStyledTextSource.java (revision 0)
@@ -0,0 +1,109 @@
+/*******************************************************************************
+ * Copyright (c) 2012 xored software, 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:
+ * xored software, Inc. - initial API and implementation (Yuri Strot)
+ ******************************************************************************/
+package com.xored.glance.ui.controls.text.styled;
+
+import org.eclipse.core.runtime.ListenerList;
+import org.eclipse.swt.custom.StyledText;
+import org.eclipse.swt.events.SelectionEvent;
+import org.eclipse.swt.events.SelectionListener;
+import org.eclipse.swt.graphics.Point;
+
+import com.xored.glance.ui.sources.BaseTextSource;
+import com.xored.glance.ui.sources.ITextBlock;
+import com.xored.glance.ui.sources.ITextSourceListener;
+import com.xored.glance.ui.sources.Match;
+import com.xored.glance.ui.sources.SourceSelection;
+
+/**
+ * @author Yuri Strot
+ */
+public abstract class AbstractStyledTextSource extends BaseTextSource implements SelectionListener {
+
+ public AbstractStyledTextSource(final StyledText text) {
+ this.text = text;
+ blocks = new StyledTextBlock[] {createTextBlock()};
+ list = new ListenerList();
+ }
+
+ protected StyledTextBlock createTextBlock() {
+ return new StyledTextBlock(text);
+ }
+
+ public final void dispose() {
+ if (text != null && !text.isDisposed() && !disposed) {
+ doDispose();
+ }
+ disposed = true;
+ }
+
+ protected void doDispose() {
+ focusKeeper.dispose();
+ text.removeSelectionListener(this);
+ }
+
+ public boolean isDisposed() {
+ return disposed;
+ }
+
+ public ITextBlock[] getBlocks() {
+ return blocks;
+ }
+
+ public void addTextSourceListener(final ITextSourceListener listener) {
+ list.add(listener);
+ }
+
+ public void removeTextSourceListener(final ITextSourceListener listener) {
+ list.remove(listener);
+ }
+
+ public void widgetDefaultSelected(final SelectionEvent e) {
+ fireSelectionChanged();
+ }
+
+ public void widgetSelected(final SelectionEvent e) {
+ fireSelectionChanged();
+ }
+
+ private void fireSelectionChanged() {
+ final SourceSelection selection = getSelection();
+ final Object[] objects = list.getListeners();
+ for (final Object object : objects) {
+ final ITextSourceListener listener = (ITextSourceListener) object;
+ listener.selectionChanged(selection);
+ }
+ }
+
+ public SourceSelection getSelection() {
+ final Point point = text.getSelection();
+ final SourceSelection selection = new SourceSelection(blocks[0], point.x, point.y - point.x);
+ return selection;
+ }
+
+ public void select(final Match match) {
+ this.selected = match;
+ focusKeeper.setMatch(match);
+ }
+
+ protected StyledText getText() {
+ return text;
+ }
+
+ @Override
+ public void init() {
+ focusKeeper = new StyledTextSelector(text);
+ text.addSelectionListener(this);
+ }
+
+ private StyledTextSelector focusKeeper;
+ private final StyledText text;
+
+ private boolean disposed;
+ private final ListenerList list;
+ private final StyledTextBlock[] blocks;
+ protected Match selected;
+}

Powered by Google App Engine
This is Rietveld 408576698