Imported GNU Classpath 0.90
[official-gcc.git] / libjava / classpath / gnu / java / awt / peer / gtk / GtkTextAreaPeer.java
blob5d9be1aec63388a28fe0162cd67fe272c2b37e10
1 /* GtkTextAreaPeer.java -- Implements TextAreaPeer with GTK
2 Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package gnu.java.awt.peer.gtk;
41 import java.awt.Dimension;
42 import java.awt.Font;
43 import java.awt.FontMetrics;
44 import java.awt.Rectangle;
45 import java.awt.TextArea;
46 import java.awt.im.InputMethodRequests;
47 import java.awt.peer.TextAreaPeer;
48 import java.awt.peer.TextComponentPeer;
50 public class GtkTextAreaPeer extends GtkComponentPeer
51 implements TextComponentPeer, TextAreaPeer
53 private static transient int DEFAULT_ROWS = 10;
54 private static transient int DEFAULT_COLS = 80;
56 native void create (int width, int height, int scrollbarVisibility);
58 /**
59 * Overridden to set Font for text widget inside scrolled window.
61 protected native void gtkWidgetModifyFont(String name, int style, int size);
63 native void gtkWidgetRequestFocus ();
65 public native void connectSignals ();
67 public native int getCaretPosition ();
68 public native void setCaretPosition (int pos);
69 public native int getSelectionStart ();
70 public native int getSelectionEnd ();
71 public native String getText ();
72 public native void select (int start, int end);
73 public native void setEditable (boolean state);
74 public native void setText (String text);
76 public int getIndexAtPoint(int x, int y)
78 // FIXME
79 return 0;
82 public Rectangle getCharacterBounds (int pos)
84 // FIXME
85 return null;
88 public long filterEvents (long filter)
90 // FIXME
91 return filter;
94 void create ()
96 Font f = awtComponent.getFont ();
98 // By default, Sun sets a TextArea's font when its peer is
99 // created. If f != null then the peer's font is set by
100 // GtkComponent.create.
101 if (f == null)
103 f = new Font ("Dialog", Font.PLAIN, 12);
104 awtComponent.setFont (f);
107 FontMetrics fm = getFontMetrics (f);
109 TextArea ta = ((TextArea) awtComponent);
110 int sizeRows = ta.getRows ();
111 int sizeCols = ta.getColumns ();
113 sizeRows = sizeRows == 0 ? DEFAULT_ROWS : sizeRows;
114 sizeCols = sizeCols == 0 ? DEFAULT_COLS : sizeCols;
116 int width = sizeCols * fm.getMaxAdvance ();
117 int height = sizeRows * (fm.getMaxDescent () + fm.getMaxAscent ());
119 create (width, height, ta.getScrollbarVisibility ());
120 setEditable (ta.isEditable ());
123 public GtkTextAreaPeer (TextArea ta)
125 super (ta);
127 setText (ta.getText ());
128 setCaretPosition (0);
131 public native void insert (String str, int pos);
132 public native void replaceRange (String str, int start, int end);
134 public Dimension getMinimumSize (int rows, int cols)
136 return minimumSize (rows == 0 ? DEFAULT_ROWS : rows,
137 cols == 0 ? DEFAULT_COLS : cols);
140 public Dimension getPreferredSize (int rows, int cols)
142 return preferredSize (rows == 0 ? DEFAULT_ROWS : rows,
143 cols == 0 ? DEFAULT_COLS : cols);
146 native int getHScrollbarHeight ();
147 native int getVScrollbarWidth ();
149 // Deprecated
150 public Dimension minimumSize (int rows, int cols)
152 TextArea ta = ((TextArea) awtComponent);
153 int height = 0;
154 int width = 0;
156 if (ta.getScrollbarVisibility () == TextArea.SCROLLBARS_BOTH
157 || ta.getScrollbarVisibility () == TextArea.SCROLLBARS_HORIZONTAL_ONLY)
158 height = getHScrollbarHeight ();
160 if (ta.getScrollbarVisibility () == TextArea.SCROLLBARS_BOTH
161 || ta.getScrollbarVisibility () == TextArea.SCROLLBARS_VERTICAL_ONLY)
162 width = getVScrollbarWidth ();
164 Font f = awtComponent.getFont ();
165 if (f == null)
166 return new Dimension (width, height);
168 FontMetrics fm = getFontMetrics (f);
170 int sizeRows = rows == 0 ? DEFAULT_ROWS : rows;
171 int sizeCols = cols == 0 ? DEFAULT_COLS : cols;
173 width += sizeCols * fm.getMaxAdvance ();
174 height += sizeRows * (fm.getMaxDescent () + fm.getMaxAscent ());
176 return new Dimension (width, height);
179 public Dimension preferredSize (int rows, int cols)
181 TextArea ta = ((TextArea) awtComponent);
182 int height = 0;
183 int width = 0;
185 if (ta.getScrollbarVisibility () == TextArea.SCROLLBARS_BOTH
186 || ta.getScrollbarVisibility () == TextArea.SCROLLBARS_HORIZONTAL_ONLY)
187 height = getHScrollbarHeight ();
189 if (ta.getScrollbarVisibility () == TextArea.SCROLLBARS_BOTH
190 || ta.getScrollbarVisibility () == TextArea.SCROLLBARS_VERTICAL_ONLY)
191 width = getVScrollbarWidth ();
193 Font f = awtComponent.getFont ();
194 if (f == null)
195 return new Dimension (width, height);
197 FontMetrics fm = getFontMetrics (f);
199 int sizeRows = rows == 0 ? DEFAULT_ROWS : rows;
200 int sizeCols = cols == 0 ? DEFAULT_COLS : cols;
202 width += sizeCols * fm.getMaxAdvance ();
203 height += sizeRows * (fm.getMaxDescent () + fm.getMaxAscent ());
205 return new Dimension (width, height);
208 public void replaceText (String str, int start, int end)
210 replaceRange (str, start, end);
213 public void insertText (String str, int pos)
215 insert (str, pos);
218 public InputMethodRequests getInputMethodRequests()
220 // FIXME: implement
221 return null;