Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerInfo.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerInfo.java60
1 files changed, 60 insertions, 0 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerInfo.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerInfo.java
new file mode 100644
index 00000000000..1fe666daff4
--- /dev/null
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IVerticalRulerInfo.java
@@ -0,0 +1,60 @@
+/**********************************************************************
+Copyright (c) 2000, 2002 IBM Corp. and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Common Public License v0.5
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/cpl-v05.html
+
+Contributors:
+ IBM Corporation - Initial API and implementation
+**********************************************************************/
+
+package org.eclipse.jface.text.source;
+
+
+import org.eclipse.swt.widgets.Control;
+
+
+/**
+ * A vertical ruler is a visual component which may serve
+ * text viewers as a line oriented annotation presentation
+ * area. The ruler info provides interested clients with the
+ * mapping and interaction aspect of the vertical ruler. This
+ * covers the mapping between coordinates of the ruler's
+ * control and line numbers based on the connected text viewer's
+ * document.
+ * @since 2.0
+ */
+public interface IVerticalRulerInfo {
+
+ /**
+ * Returns the ruler's SWT control.
+ *
+ * @return the ruler's SWT control
+ */
+ Control getControl();
+
+ /**
+ * Returns the line number of the last mouse button activity.
+ * Based on the input document of the connected text viewer.
+ *
+ * @return the line number of the last mouse button activity
+ */
+ int getLineOfLastMouseButtonActivity();
+
+ /**
+ * Translates a y-coordinate of the ruler's SWT control into
+ * the according line number of the document of the connected text viewer.
+ *
+ * @param y_coordinate a y-coordinate of the ruler's SWT control
+ * @return the line number of that coordinate
+ */
+ int toDocumentLineNumber(int y_coordinate);
+
+ /**
+ * Returns the width of this ruler's control.
+ *
+ * @return the width of this ruler's control
+ */
+ int getWidth();
+}

Back to the top