summaryrefslogtreecommitdiff
path: root/java/org/gnu/emacs/EmacsWindow.java
blob: 28db04a261d185aa113b9ea67d09c470e0e63f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/* Communication module for Android terminals.  -*- c-file-style: "GNU" -*-

Copyright (C) 2023 Free Software Foundation, Inc.

This file is part of GNU Emacs.

GNU Emacs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.

GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */

package org.gnu.emacs;

import java.lang.IllegalStateException;
import java.util.ArrayList;
import java.util.List;

import android.graphics.Rect;
import android.graphics.Canvas;
import android.graphics.Bitmap;
import android.graphics.Point;

import android.view.View;
import android.view.ViewGroup;
import android.view.KeyEvent;

/* This defines a window, which is a handle.  Windows represent a
   rectangular subset of the screen with their own contents.

   Windows either have a parent window, in which case their views are
   attached to the parent's view, or are "floating", in which case
   their views are attached to the parent activity (if any), else
   nothing.

   Views are also drawables, meaning they can accept drawing
   requests.  */

public class EmacsWindow extends EmacsHandleObject
  implements EmacsDrawable
{
  /* The view associated with the window.  */
  public EmacsView view;

  /* The geometry of the window.  */
  private Rect rect;

  /* The parent window, or null if it is the root window.  */
  private EmacsWindow parent;

  /* List of all children in stacking order.  This must be kept
     consistent!  */
  private ArrayList<EmacsWindow> children;

  /* The EmacsActivity currently attached, if it exists.  */
  private EmacsActivity attached;

  /* The window background scratch GC.  foreground is always the
     window background.  */
  private EmacsGC scratchGC;

  public
  EmacsWindow (short handle, final EmacsWindow parent, int x, int y,
	       int width, int height)
  {
    super (handle);

    rect = new Rect (x, y, x + width, y + height);

    /* Create the view from the context's UI thread.  */
    view = EmacsService.SERVICE.getEmacsView (this);
    this.parent = parent;
    children = new ArrayList<EmacsWindow> ();

    /* The window is unmapped by default.  */
    view.setVisibility (View.GONE);

    /* If parent is the root window, notice that there are new
       children available for interested activites to pick up.  */
    if (parent == null)
      EmacsService.SERVICE.noticeAvailableChild (this);
    else
      {
	/* Otherwise, directly add this window as a child of that
	   window's view.  */
	synchronized (parent)
	  {
	    parent.children.add (this);
	    parent.view.post (new Runnable () {
		@Override
		public void
		run ()
		{
		  parent.view.addView (view);
		}
	      });
	  }
      }

    scratchGC = new EmacsGC ((short) 0);
  }

  public void
  changeWindowBackground (int pixel)
  {
    /* scratchGC is used as the argument to a FillRectangles req.  */
    scratchGC.foreground = pixel;
    scratchGC.markDirty ();
  }

  public Rect
  getGeometry ()
  {
    synchronized (this)
      {
	/* Huh, this is it.  */
	return rect;
      }
  }

  @Override
  public void
  destroyHandle () throws IllegalStateException
  {
    synchronized (this)
      {
	if (!children.isEmpty ())
	  throw new IllegalStateException ("Trying to destroy window with "
					   + "children!");
      }

    /* Notice that the child has been destroyed.  */
    EmacsService.SERVICE.noticeChildDestroyed (this);

    /* Remove the view from its parent and make it invisible.  */
    view.post (new Runnable () {
	public void
	run ()
	{
	  view.setVisibility (View.GONE);

	  if (view.getParent () != null)
	    ((ViewGroup) view.getParent ()).removeView (view);

	  if (attached != null)
	    attached.makeAvailable ();
	}
      });

    super.destroyHandle ();
  }

  public void
  setActivity (EmacsActivity activity)
  {
    synchronized (this)
      {
	activity = activity;
      }
  }

  public void
  viewLayout (int left, int top, int right, int bottom)
  {
    synchronized (this)
      {
	rect.left = left;
	rect.top = top;
	rect.right = right;
	rect.bottom = bottom;

	EmacsNative.sendConfigureNotify (this.handle,
					 System.currentTimeMillis (),
					 left, top, rect.width (),
					 rect.height ());
      }
  }

  public void
  requestViewLayout ()
  {
    view.post (new Runnable () {
	@Override
	public void
	run ()
	{
	  view.requestLayout ();
	}
      });
  }

  public void
  resizeWindow (int width, int height)
  {
    synchronized (this)
      {
	rect.right = rect.left + width;
	rect.bottom = rect.top + height;
      }
  }

  public void
  moveWindow (int x, int y)
  {
    int width, height;

    synchronized (this)
      {
	width = rect.width ();
	height = rect.height ();

	rect.left = x;
	rect.top = y;
	rect.right = x + width;
	rect.bottom = y + height;

	requestViewLayout ();
      }
  }

  public void
  mapWindow ()
  {
    view.post (new Runnable () {
	@Override
	public void
	run ()
	{
	  view.setVisibility (View.VISIBLE);
	}
      });
  }

  public void
  unmapWindow ()
  {
    view.post (new Runnable () {
	@Override
	public void
	run ()
	{
	  view.setVisibility (View.GONE);
	}
      });
  }

  @Override
  public Canvas
  lockCanvas ()
  {
    if (view.canvas != null)
      return view.canvas;

    return null;
  }

  @Override
  public void
  unlockCanvas ()
  {

  }

  @Override
  public void
  damageRect (Rect damageRect)
  {
    view.damageRect (damageRect);
  }

  public void
  swapBuffers ()
  {
    /* Before calling swapBuffers, make sure to flush the paint
       queue.  */
    EmacsService.SERVICE.flushPaintQueue ();
    view.post (new Runnable () {
	@Override
	public void
	run ()
	{
	  view.swapBuffers ();
	}
      });
  }

  public void
  clearWindow ()
  {
    synchronized (this)
      {
	EmacsService.SERVICE.fillRectangle (this, scratchGC,
					    0, 0, rect.width (),
					    rect.height ());
      }
  }

  public void
  clearArea (int x, int y, int width, int height)
  {
    EmacsService.SERVICE.fillRectangle (this, scratchGC,
					x, y, width, height);
  }

  @Override
  public Bitmap
  getBitmap ()
  {
    return view.bitmap;
  }

  public void
  onKeyDown (int keyCode, KeyEvent event)
  {
    EmacsNative.sendKeyPress (this.handle,
			      event.getEventTime (),
			      event.getModifiers (),
			      keyCode);
  }

  public void
  onKeyUp (int keyCode, KeyEvent event)
  {
    EmacsNative.sendKeyRelease (this.handle,
				event.getEventTime (),
				event.getModifiers (),
				keyCode);
  }
};