summaryrefslogtreecommitdiff
path: root/platform/util/src/com/intellij/ui/Graphics2DDelegate.java
blob: 1d13b77b367c5446805f9ed82e59ff0e7451c23b (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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
 * Copyright 2000-2014 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.intellij.ui;

import com.intellij.util.ui.UIUtil;
import org.jetbrains.annotations.NotNull;

import java.awt.*;
import java.awt.font.FontRenderContext;
import java.awt.font.GlyphVector;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.awt.image.BufferedImageOp;
import java.awt.image.ImageObserver;
import java.awt.image.RenderedImage;
import java.awt.image.renderable.RenderableImage;
import java.text.AttributedCharacterIterator;
import java.util.Map;

public class Graphics2DDelegate extends Graphics2D{
  protected final Graphics2D myDelegate;

  public Graphics2DDelegate(Graphics2D g2d){
    myDelegate=g2d;
  }

  @Override
  public void addRenderingHints(Map hints) {
    myDelegate.addRenderingHints(hints);
  }

  @Override
  public void clearRect(int x, int y, int width, int height) {
    myDelegate.clearRect(x, y, width, height);
  }

  @Override
  public void clip(Shape s) {
    myDelegate.clip(s);
  }

  @Override
  public void clipRect(int x, int y, int width, int height) {
    myDelegate.clipRect(x, y, width, height);
  }

  @Override
  public void copyArea(int x, int y, int width, int height, int dx, int dy) {
    myDelegate.copyArea(x, y, width, height, dx, dy);
  }

  @NotNull
  @Override
  public Graphics create() {
    return new Graphics2DDelegate((Graphics2D)myDelegate.create());
  }

  @Override
  public void dispose() {
    myDelegate.dispose();
  }

  @Override
  public void draw(Shape s) {
    myDelegate.draw(s);
  }

  @Override
  public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
    myDelegate.drawArc(x, y, width, height, startAngle, arcAngle);
  }

  @Override
  public void drawGlyphVector(GlyphVector g, float x, float y) {
    myDelegate.drawGlyphVector(g, x, y);
  }

  @Override
  public void drawImage(BufferedImage img, BufferedImageOp op, int x, int y) {
    myDelegate.drawImage(img, op, x, y);
  }

  @Override
  public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer) {
    return myDelegate.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer);
  }

  @Override
  public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer) {
    return myDelegate.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
  }

  @Override
  public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer) {
    return myDelegate.drawImage(img, x, y, bgcolor, observer);
  }

  @Override
  public boolean drawImage(Image img, int x, int y, ImageObserver observer) {
    return myDelegate.drawImage(img, x, y, observer);
  }

  @Override
  public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) {
    return myDelegate.drawImage(img, x, y, width, height, bgcolor, observer);
  }

  @Override
  public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) {
    return myDelegate.drawImage(img, x, y, width, height, observer);
  }

  @Override
  public boolean drawImage(Image img, AffineTransform xform, ImageObserver obs) {
    return myDelegate.drawImage(img, xform, obs);
  }

  @Override
  public void drawLine(int x1, int y1, int x2, int y2) {
    UIUtil.drawLine(myDelegate, x1, y1, x2, y2);
  }

  @Override
  public void drawOval(int x, int y, int width, int height) {
    myDelegate.drawOval(x, y, width, height);
  }

  @Override
  public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints) {
    myDelegate.drawPolygon(xPoints, yPoints, nPoints);
  }

  @Override
  public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints) {
    myDelegate.drawPolyline(xPoints, yPoints, nPoints);
  }

  @Override
  public void drawRenderableImage(RenderableImage img, AffineTransform xform) {
    myDelegate.drawRenderableImage(img, xform);
  }

  @Override
  public void drawRenderedImage(RenderedImage img, AffineTransform xform) {
    myDelegate.drawRenderedImage(img, xform);
  }

  @Override
  public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) {
    myDelegate.drawRoundRect(x, y, width, height, arcWidth, arcHeight);
  }

  @Override
  public void drawString(AttributedCharacterIterator iterator, float x, float y) {
    myDelegate.drawString(iterator, x, y);
  }

  @Override
  public void drawString(AttributedCharacterIterator iterator, int x, int y) {
    myDelegate.drawString(iterator, x, y);
  }

  @Override
  public void drawString(String s, float x, float y) {
    myDelegate.drawString(s, x, y);
  }

  @Override
  public void drawString(String str, int x, int y) {
    myDelegate.drawString(str, x, y);
  }

  @Override
  public void fill(Shape s) {
    myDelegate.fill(s);
  }

  @Override
  public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
    myDelegate.fillArc(x, y, width, height, startAngle, arcAngle);
  }

  @Override
  public void fillOval(int x, int y, int width, int height) {
    myDelegate.fillOval(x, y, width, height);
  }

  @Override
  public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) {
    myDelegate.fillPolygon(xPoints, yPoints, nPoints);
  }

  @Override
  public void fillRect(int x, int y, int width, int height) {
    myDelegate.fillRect(x, y, width, height);
  }

  @Override
  public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) {
    myDelegate.fillRoundRect(x, y, width, height, arcWidth, arcHeight);
  }

  @Override
  public Color getBackground() {
    return myDelegate.getBackground();
  }

  @Override
  public Shape getClip() {
    return myDelegate.getClip();
  }

  @Override
  public Rectangle getClipBounds() {
    return myDelegate.getClipBounds();
  }

  @Override
  public Color getColor() {
    return myDelegate.getColor();
  }

  @Override
  public Composite getComposite() {
    return myDelegate.getComposite();
  }

  @Override
  public GraphicsConfiguration getDeviceConfiguration() {
    return myDelegate.getDeviceConfiguration();
  }

  @Override
  public Font getFont() {
    return myDelegate.getFont();
  }

  @Override
  public FontMetrics getFontMetrics(Font f) {
    return myDelegate.getFontMetrics(f);
  }

  @Override
  public FontRenderContext getFontRenderContext() {
    return myDelegate.getFontRenderContext();
  }

  @Override
  public Paint getPaint() {
    return myDelegate.getPaint();
  }

  @Override
  public Object getRenderingHint(RenderingHints.Key hintKey) {
    return myDelegate.getRenderingHint(hintKey);
  }

  @Override
  public RenderingHints getRenderingHints() {
    return myDelegate.getRenderingHints();
  }

  @Override
  public Stroke getStroke() {
    return myDelegate.getStroke();
  }

  @Override
  public AffineTransform getTransform() {
    return myDelegate.getTransform();
  }

  @Override
  public boolean hit(Rectangle rect, Shape s, boolean onStroke) {
    return myDelegate.hit(rect, s, onStroke);
  }

  @Override
  public void rotate(double theta) {
    myDelegate.rotate(theta);
  }

  @Override
  public void rotate(double theta, double x, double y) {
    myDelegate.rotate(theta, x, y);
  }

  @Override
  public void scale(double sx, double sy) {
    myDelegate.scale(sx, sy);
  }

  @Override
  public void setBackground(Color color) {
    myDelegate.setBackground(color);
  }

  @Override
  public void setClip(Shape sh) {
    myDelegate.setClip(sh);
  }

  @Override
  public void setClip(int x, int y, int w, int h) {
    myDelegate.setClip(x, y, w, h);
  }

  @Override
  public void setColor(Color color) {
    myDelegate.setColor(color);
  }

  @Override
  public void setComposite(Composite comp) {
    myDelegate.setComposite(comp);
  }

  @Override
  public void setFont(Font font) {
    myDelegate.setFont(font);
  }

  @Override
  public void setPaint(Paint paint) {
    myDelegate.setPaint(paint);
  }

  @Override
  public void setPaintMode() {
    myDelegate.setPaintMode();
  }

  @Override
  public void setRenderingHint(RenderingHints.Key hintKey, Object hintValue) {
    myDelegate.setRenderingHint(hintKey, hintValue);
  }

  @Override
  public void setRenderingHints(Map hints) {
    myDelegate.setRenderingHints(hints);
  }

  /*
   * Sets the Stroke in the current graphics state.
   * @param s The Stroke object to be used to stroke a Path in
   * the rendering process.
   * @see BasicStroke
   */
  @Override
  public void setStroke(Stroke s) {
    myDelegate.setStroke(s);
  }

  @Override
  public void setTransform(AffineTransform Tx) {
    myDelegate.setTransform(Tx);
  }

  @Override
  public void setXORMode(Color c) {
    myDelegate.setXORMode(c);
  }

  @Override
  public void shear(double shx, double shy) {
    myDelegate.shear(shx, shy);
  }

  @Override
  public void transform(AffineTransform xform) {
    myDelegate.transform(xform);
  }

  @Override
  public void translate(double tx, double ty) {
    myDelegate.translate(tx, ty);
  }

  @Override
  public void translate(int x, int y) {
    myDelegate.translate(x, y);
  }
}