Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 74d5d1a86c3697b5fa9aa159f28b64f4f7b7a9c8 (plain) (blame)
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
/*******************************************************************************
 * Copyright (c) 2010, 2011 Tom Seidel, Remus Software
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 *
 * Contributors:
 *     Tom Seidel - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.htmltext;

import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Path;
import org.eclipse.mylyn.htmltext.commands.Command;
import org.eclipse.mylyn.htmltext.commands.GetHtmlCommand;
import org.eclipse.mylyn.htmltext.commands.SetHtmlCommand;
import org.eclipse.mylyn.htmltext.configuration.Configuration;
import org.eclipse.mylyn.htmltext.events.NodeSelectionEvent;
import org.eclipse.mylyn.htmltext.listener.NodeSelectionChangeListener;
import org.eclipse.mylyn.htmltext.model.TriState;
import org.eclipse.mylyn.htmltext.util.ColorConverter;
import org.eclipse.swt.SWTException;
import org.eclipse.swt.accessibility.Accessible;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.browser.BrowserFunction;
import org.eclipse.swt.browser.OpenWindowListener;
import org.eclipse.swt.browser.ProgressAdapter;
import org.eclipse.swt.browser.ProgressEvent;
import org.eclipse.swt.events.ControlListener;
import org.eclipse.swt.events.DisposeListener;
import org.eclipse.swt.events.FocusListener;
import org.eclipse.swt.events.HelpListener;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.events.TraverseListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Cursor;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.graphics.Region;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Layout;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Monitor;
import org.eclipse.swt.widgets.ScrollBar;
import org.eclipse.swt.widgets.Shell;

/**
 * @author Tom Seidel <tom.seidel@remus-software.org>
 */
public class HtmlComposer {

	/**
	 * A function which is called if the content of the editor has changed.
	 * <p>
	 * Unfortunately the underlying ckeditor cannot guarantee that every
	 * modification will be notified to the appended listeners. There is an
	 * additional polling mechanismus which tracks modifications.
	 * </p>
	 * 
	 * @author Tom Seidel <tom.seidel@remus-software.org>
	 */
	private class ModifiedFunction extends BrowserFunction {
		public ModifiedFunction(Browser browser) {
			super(browser, "_delegate_modified");
		}

		@Override
		public Object function(Object[] arguments) {
			if (arguments.length > 0) {
				String identifier = (String) arguments[0];
				Event event = new Event();
				event.widget = getBrowser();
				event.data = this;
				ModifyEvent modifyEvent = new ModifyEvent(event);
				if (pendingListenerCallBackMap.get(identifier) != null) {
					List<ModifyListener> list = pendingListenerCallBackMap
							.get(identifier);
					for (ModifyListener modifyListener : list) {
						modifyListener.modifyText(modifyEvent);
					}
				} else {
					if (modifyListenerList.size() > 0) {
						for (ModifyListener listener : modifyListenerList) {
							listener.modifyText(modifyEvent);
						}
					}
				}
				pendingListenerCallBackMap.remove(identifier);
			}

			return null;
		}

	}

	/**
	 * BrowserFunction that is called if the wrapped Ckeditor is initialized.
	 * 
	 * @author Tom Seidel <tom.seidel@remus-software.org>
	 */
	private class RenderCompleteFunction extends BrowserFunction {

		public RenderCompleteFunction(Browser browser) {
			super(browser, "_delegate_init");
		}

		@Override
		public Object function(Object[] arguments) {
			initialize();
			return null;
		}

	}

	/**
	 * BrowserFunction that delegates the event from ckeditor that is thrown if
	 * the selected dom-node changed.
	 * 
	 * @author Tom Seidel <tom.seidel@remus-software.org>
	 */
	private class SelectionChangedFunction extends BrowserFunction {

		public SelectionChangedFunction(Browser browser) {
			super(browser, "_delegate_selectionChanged");
		}

		@Override
		public Object function(Object[] arguments) {
			// check if listeners are registered. Could be that in the near
			// future the construction of NodeSelectionEvent is not so cheap
			// like at the moment.
			if (selectionListenerList.size() > 0) {
				NodeSelectionEvent nodeSelectionEvent = new NodeSelectionEvent(
						null);
				for (NodeSelectionChangeListener listener : selectionListenerList) {
					listener.selectedNodeChanged(nodeSelectionEvent);
				}
			}
			if (trackedCommands.size() > 0) {
				Set<String> keySet = trackedCommands.keySet();
				for (String string : keySet) {
					String valueOf = String
							.valueOf(evaluate("return integration.editor.getCommand('"
									+ string + "').state;"));
					TriState fromString = TriState.fromString(valueOf);
					if (fromString != trackedCommands.get(string).getState()) {
						trackedCommands.get(string).setState(fromString);
					}
				}
			}
			return null;
		}

	}

	/**
	 * The wrapped browser widget.
	 */
	private final Browser browser;

	/**
	 * A list of listeners which fire if the selected node within the html is
	 * changed.
	 */
	private transient List<NodeSelectionChangeListener> selectionListenerList = new ArrayList<NodeSelectionChangeListener>();

	private transient List<ModifyListener> modifyListenerList = new ArrayList<ModifyListener>();

	/**
	 * a temporary collection of commands that are executed before the ckeditor
	 * was initialized. If the ckeditor finishes its initialization all commands
	 * are executed.
	 * 
	 * @see HtmlComposer#initialize()
	 */
	private final List<Command> pendingCommands = Collections
			.synchronizedList(new ArrayList<Command>());

	/**
	 * A map of commands that were executed before the widget was initialized
	 * and their appending listeners which are still waiting for an event.
	 */
	private Map<Command, List<ModifyListener>> pendingListeners = new HashMap<Command, List<ModifyListener>>();

	/**
	 * A map of callback-Ids and their appended Listeners. This is
	 */
	private Map<String, List<ModifyListener>> pendingListenerCallBackMap = new HashMap<String, List<ModifyListener>>();

	/**
	 * Tracked {@link Command}s.
	 */
	private final Map<String, Command> trackedCommands = new HashMap<String, Command>();

	/**
	 * Flag if the ckeditor finishes its initialization and is ready for
	 * receiving commands.
	 */
	private boolean initialized;

	
	/**
	 * Constructs a new instance of a {@link Browser} and includes a ckeditor
	 * instance.
	 * 
	 * @param parent
	 *            a composite control which will be the parent of the new
	 *            instance (cannot be null)
	 * @param style
	 *            the style of control to construct
	 * @see Browser#Browser(Composite, int)
	 * 
	 */
	public HtmlComposer(final Composite parent, final int style) {
		this(parent, style, null);
		
	}
	/**
	 * Constructs a new instance of a {@link Browser} and includes a ckeditor
	 * instance.
	 * 
	 * @param parent
	 *            a composite control which will be the parent of the new
	 *            instance (cannot be null)
	 * @param style
	 *            the style of control to construct
	 * @param config the configuration for the html-widget
	 * @see Browser#Browser(Composite, int)
	 * @since 0.8
	 */
	public HtmlComposer(final Composite parent, final int style, Configuration config) {
		browser = new Browser(parent, style);
		browser.setMenu(new Menu(browser));
		new RenderCompleteFunction(browser);
		URL baseUrl;
		try {
			baseUrl = FileLocator.resolve(FileLocator.find(HtmlTextActivator
					.getDefault().getBundle(), new Path(
					"/eclipsebridge/base.html"), Collections.emptyMap()));
			browser.setUrl(baseUrl.toString() + (config != null ? "?" + config.toQuery() : ""));
			browser.addProgressListener(new ProgressAdapter() {
				@Override
				public void completed(ProgressEvent event) {
					browser.execute("integration.eclipseRunning = true;");
					browser.removeProgressListener(this);
				}
			});
		} catch (IOException e) {
			throw new RuntimeException(e);
		}
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#addControlListener(org.eclipse.swt.events.ControlListener)
	 */
	public void addControlListener(final ControlListener listener) {
		browser.addControlListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Widget#addDisposeListener(org.eclipse.swt.events.DisposeListener)
	 */
	public void addDisposeListener(final DisposeListener listener) {
		browser.addDisposeListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#addFocusListener(org.eclipse.swt.events.FocusListener)
	 */
	public void addFocusListener(final FocusListener listener) {
		browser.addFocusListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#addHelpListener(org.eclipse.swt.events.HelpListener)
	 */
	public void addHelpListener(final HelpListener listener) {
		browser.addHelpListener(listener);
	}

	public void addModifyListener(ModifyListener listener) {
		modifyListenerList.add(listener);
	}

	public void addNodeSelectionChangeListener(
			NodeSelectionChangeListener listener) {
		selectionListenerList.add(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#addPaintListener(org.eclipse.swt.events.PaintListener)
	 */
	public void addPaintListener(final PaintListener listener) {
		browser.addPaintListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#addTraverseListener(org.eclipse.swt.events.TraverseListener)
	 */
	public void addTraverseListener(final TraverseListener listener) {
		browser.addTraverseListener(listener);
	}

	/**
	 * @param wHint
	 * @param hHint
	 * @return
	 * @see org.eclipse.swt.widgets.Control#computeSize(int, int)
	 */
	public Point computeSize(final int wHint, final int hHint) {
		return browser.computeSize(wHint, hHint);
	}

	/**
	 * @param wHint
	 * @param hHint
	 * @param changed
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#computeSize(int, int, boolean)
	 */
	public Point computeSize(final int wHint, final int hHint,
			final boolean changed) {
		return browser.computeSize(wHint, hHint, changed);
	}

	/**
	 * @param x
	 * @param y
	 * @param width
	 * @param height
	 * @return
	 * @see org.eclipse.swt.widgets.Scrollable#computeTrim(int, int, int, int)
	 */
	public Rectangle computeTrim(final int x, final int y, final int width,
			final int height) {
		return browser.computeTrim(x, y, width, height);
	}

	/**
	 * @see org.eclipse.swt.widgets.Widget#dispose()
	 */
	public void dispose() {
		Collection<Command> values = trackedCommands.values();
		for (Command command : values) {
			command.dispose();
		}
		browser.dispose();
	}

	/**
	 * @param script
	 * @return
	 * @throws SWTException
	 * @see org.eclipse.swt.browser.Browser#evaluate(java.lang.String)
	 */
	public Object evaluate(String script) throws SWTException {
		return browser.evaluate(script);
	}

	/**
	 * @param script
	 * @return
	 * @see org.eclipse.swt.browser.Browser#execute(java.lang.String)
	 */
	public boolean execute(String script) {
		return browser.execute(script);
	}

	/**
	 * Executes a given command
	 * 
	 * @param command
	 *            the command to execute
	 */
	public void execute(Command command) {
		if (initialized) {
			/*
			 * if the command was executed while the ckeditor was not
			 * initialized yet. this is required to keep track of the listeners
			 * that needs to be notified if a command is executed before the
			 * widget was initialized but also to filter the listeners that were
			 * added to the widget after the originating command was scheduled.
			 */
			if (pendingListeners.get(command) != null) {
				String nanoTime = String.valueOf(System.nanoTime());
				pendingListenerCallBackMap.put(nanoTime,
						pendingListeners.get(command));
				execute("integration.pendingCommandIdentifier = \'" + nanoTime
						+ "\';");
				execute(command.getCommand());
				pendingListeners.remove(command);
			} else {
				execute("integration.pendingCommandIdentifier = \'\';");
				execute(command.getCommand());
			}
		} else {
			pendingListeners.put(command, new ArrayList<ModifyListener>(
					modifyListenerList));
			pendingCommands.add(command);
		}
	}

	/**
	 * Execute a command wit a result.
	 * 
	 * @param command
	 *            the command to execute
	 * @return the result of the execution.
	 */
	public Object executeWithReturn(Command command) {
		if (initialized) {
			return evaluate(command.getCommand());
		}
		return null;
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#forceFocus()
	 */
	public boolean forceFocus() {
		return browser.forceFocus();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getAccessible()
	 */
	public Accessible getAccessible() {
		return browser.getAccessible();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getBackground()
	 */
	public Color getBackground() {
		return browser.getBackground();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getBackgroundImage()
	 */
	public Image getBackgroundImage() {
		return browser.getBackgroundImage();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#getBackgroundMode()
	 */
	public int getBackgroundMode() {
		return browser.getBackgroundMode();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getBorderWidth()
	 */
	public int getBorderWidth() {
		return browser.getBorderWidth();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getBounds()
	 */
	public Rectangle getBounds() {
		return browser.getBounds();
	}

	public Browser getBrowser() {
		return browser;
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#getChildren()
	 */
	public Control[] getChildren() {
		return browser.getChildren();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Scrollable#getClientArea()
	 */
	public Rectangle getClientArea() {
		return browser.getClientArea();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getCursor()
	 */
	public Cursor getCursor() {
		return browser.getCursor();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#getData()
	 */
	public Object getData() {
		return browser.getData();
	}

	/**
	 * @param key
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#getData(java.lang.String)
	 */
	public Object getData(final String key) {
		return browser.getData(key);
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#getDisplay()
	 */
	public Display getDisplay() {
		return browser.getDisplay();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getEnabled()
	 */
	public boolean getEnabled() {
		return browser.getEnabled();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getFont()
	 */
	public Font getFont() {
		return browser.getFont();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getForeground()
	 */
	public Color getForeground() {
		return browser.getForeground();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Scrollable#getHorizontalBar()
	 */
	public ScrollBar getHorizontalBar() {
		return browser.getHorizontalBar();
	}

	/**
	 * Returns the current html content of the widget
	 * 
	 * @return the html
	 */
	public String getHtml() {
		GetHtmlCommand getHtmlCommand = new GetHtmlCommand();
		getHtmlCommand.setComposer(this);
		Object executeWithReturn = executeWithReturn(getHtmlCommand);
		if (executeWithReturn != null) {
			return String.valueOf(executeWithReturn);
		}
		return null;

	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#getLayout()
	 */
	public Layout getLayout() {
		return browser.getLayout();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getLayoutData()
	 */
	public Object getLayoutData() {
		return browser.getLayoutData();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#getLayoutDeferred()
	 */
	public boolean getLayoutDeferred() {
		return browser.getLayoutDeferred();
	}

	/**
	 * @param eventType
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#getListeners(int)
	 */
	public Listener[] getListeners(final int eventType) {
		return browser.getListeners(eventType);
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getLocation()
	 */
	public Point getLocation() {
		return browser.getLocation();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getMenu()
	 */
	public Menu getMenu() {
		return browser.getMenu();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getMonitor()
	 */
	public Monitor getMonitor() {
		return browser.getMonitor();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getParent()
	 */
	public Composite getParent() {
		return browser.getParent();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getRegion()
	 */
	public Region getRegion() {
		return browser.getRegion();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getShell()
	 */
	public Shell getShell() {
		return browser.getShell();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getSize()
	 */
	public Point getSize() {
		return browser.getSize();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.browser.Browser#getStyle()
	 */
	public int getStyle() {
		return browser.getStyle();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#getTabList()
	 */
	public Control[] getTabList() {
		return browser.getTabList();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Scrollable#getVerticalBar()
	 */
	public ScrollBar getVerticalBar() {
		return browser.getVerticalBar();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#getVisible()
	 */
	public boolean getVisible() {
		return browser.getVisible();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.browser.Browser#getWebBrowser()
	 */
	public Object getWebBrowser() {
		return browser.getWebBrowser();
	}

	void initialize() {
		new SelectionChangedFunction(browser);
		new ModifiedFunction(browser);
		initialized = true;
		for (Command command : pendingCommands) {
			execute(command);
		}
		pendingCommands.clear();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#isDisposed()
	 */
	public boolean isDisposed() {
		return browser.isDisposed();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#isEnabled()
	 */
	public boolean isEnabled() {
		return browser.isEnabled();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.browser.Browser#isFocusControl()
	 */
	public boolean isFocusControl() {
		return browser.isFocusControl();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#isLayoutDeferred()
	 */
	public boolean isLayoutDeferred() {
		return browser.isLayoutDeferred();
	}

	/**
	 * @param eventType
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#isListening(int)
	 */
	public boolean isListening(final int eventType) {
		return browser.isListening(eventType);
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#isReparentable()
	 */
	public boolean isReparentable() {
		return browser.isReparentable();
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Control#isVisible()
	 */
	public boolean isVisible() {
		return browser.isVisible();
	}

	/**
	 * @see org.eclipse.swt.widgets.Composite#layout()
	 */
	public void layout() {
		browser.layout();
	}

	/**
	 * @param changed
	 * @see org.eclipse.swt.widgets.Composite#layout(boolean)
	 */
	public void layout(final boolean changed) {
		browser.layout(changed);
	}

	/**
	 * @param changed
	 * @param all
	 * @see org.eclipse.swt.widgets.Composite#layout(boolean, boolean)
	 */
	public void layout(final boolean changed, final boolean all) {
		browser.layout(changed, all);
	}

	/**
	 * @param changed
	 * @see org.eclipse.swt.widgets.Composite#layout(org.eclipse.swt.widgets.Control[])
	 */
	public void layout(final Control[] changed) {
		browser.layout(changed);
	}

	/**
	 * @param control
	 * @see org.eclipse.swt.widgets.Control#moveAbove(org.eclipse.swt.widgets.Control)
	 */
	public void moveAbove(final Control control) {
		browser.moveAbove(control);
	}

	/**
	 * @param control
	 * @see org.eclipse.swt.widgets.Control#moveBelow(org.eclipse.swt.widgets.Control)
	 */
	public void moveBelow(final Control control) {
		browser.moveBelow(control);
	}

	/**
	 * @param eventType
	 * @param event
	 * @see org.eclipse.swt.widgets.Widget#notifyListeners(int,
	 *      org.eclipse.swt.widgets.Event)
	 */
	public void notifyListeners(final int eventType, final Event event) {
		browser.notifyListeners(eventType, event);
	}

	/**
	 * @see org.eclipse.swt.widgets.Control#pack()
	 */
	public void pack() {
		browser.pack();
	}

	/**
	 * @param changed
	 * @see org.eclipse.swt.widgets.Control#pack(boolean)
	 */
	public void pack(final boolean changed) {
		browser.pack(changed);
	}

	/**
	 * @param gc
	 * @return
	 * @see org.eclipse.swt.widgets.Control#print(org.eclipse.swt.graphics.GC)
	 */
	public boolean print(final GC gc) {
		return browser.print(gc);
	}

	/**
	 * @see org.eclipse.swt.widgets.Control#redraw()
	 */
	public void redraw() {
		browser.redraw();
	}

	/**
	 * @param x
	 * @param y
	 * @param width
	 * @param height
	 * @param all
	 * @see org.eclipse.swt.widgets.Control#redraw(int, int, int, int, boolean)
	 */
	public void redraw(final int x, final int y, final int width,
			final int height, final boolean all) {
		browser.redraw(x, y, width, height, all);
	}

	/**
	 * @see org.eclipse.swt.browser.Browser#refresh()
	 */
	public void refresh() {
		browser.refresh();
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Widget#removeDisposeListener(org.eclipse.swt.events.DisposeListener)
	 */
	public void removeDisposeListener(final DisposeListener listener) {
		browser.removeDisposeListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#removeFocusListener(org.eclipse.swt.events.FocusListener)
	 */
	public void removeFocusListener(final FocusListener listener) {
		browser.removeFocusListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#removeHelpListener(org.eclipse.swt.events.HelpListener)
	 */
	public void removeHelpListener(final HelpListener listener) {
		browser.removeHelpListener(listener);
	}

	public void removeModifyListener(ModifyListener listener) {
		modifyListenerList.remove(listener);
	}

	public void removeNodeSelectionChangeListener(
			NodeSelectionChangeListener listener) {
		selectionListenerList.remove(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.browser.Browser#removeOpenWindowListener(org.eclipse.swt.browser.OpenWindowListener)
	 */
	public void removeOpenWindowListener(final OpenWindowListener listener) {
		browser.removeOpenWindowListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#removePaintListener(org.eclipse.swt.events.PaintListener)
	 */
	public void removePaintListener(final PaintListener listener) {
		browser.removePaintListener(listener);
	}

	/**
	 * @param listener
	 * @see org.eclipse.swt.widgets.Control#removeTraverseListener(org.eclipse.swt.events.TraverseListener)
	 */
	public void removeTraverseListener(final TraverseListener listener) {
		browser.removeTraverseListener(listener);
	}

	/**
	 * @param color
	 * @see org.eclipse.swt.widgets.Control#setBackground(org.eclipse.swt.graphics.Color)
	 */
	public void setBackground(final Color color) {
		browser.setBackground(color);
		execute(new Command() {

			@Override
			public String getCommandIdentifier() {
				return "set_background_internal";
			}

			@Override
			public String getCommand() {
				String hexValue = color != null ? "#" +ColorConverter
						.convertRgbToHex(color.getRGB()) : "";
				return "document.getElementById(\'cke_editor1_arialbl\').nextSibling.style.backgroundColor = \'"
						+ hexValue + "\';";
			}
		});
	}

	/**
	 * @param image
	 * @see org.eclipse.swt.widgets.Control#setBackgroundImage(org.eclipse.swt.graphics.Image)
	 */
	public void setBackgroundImage(final Image image) {
		browser.setBackgroundImage(image);
	}

	/**
	 * @param mode
	 * @see org.eclipse.swt.widgets.Composite#setBackgroundMode(int)
	 */
	public void setBackgroundMode(final int mode) {
		browser.setBackgroundMode(mode);
	}

	/**
	 * @param x
	 * @param y
	 * @param width
	 * @param height
	 * @see org.eclipse.swt.widgets.Control#setBounds(int, int, int, int)
	 */
	public void setBounds(final int x, final int y, final int width,
			final int height) {
		browser.setBounds(x, y, width, height);
	}

	/**
	 * @param rect
	 * @see org.eclipse.swt.widgets.Control#setBounds(org.eclipse.swt.graphics.Rectangle)
	 */
	public void setBounds(final Rectangle rect) {
		browser.setBounds(rect);
	}

	/**
	 * @param capture
	 * @see org.eclipse.swt.widgets.Control#setCapture(boolean)
	 */
	public void setCapture(final boolean capture) {
		browser.setCapture(capture);
	}

	/**
	 * @param cursor
	 * @see org.eclipse.swt.widgets.Control#setCursor(org.eclipse.swt.graphics.Cursor)
	 */
	public void setCursor(final Cursor cursor) {
		browser.setCursor(cursor);
	}

	/**
	 * @param data
	 * @see org.eclipse.swt.widgets.Widget#setData(java.lang.Object)
	 */
	public void setData(final Object data) {
		browser.setData(data);
	}

	/**
	 * @param key
	 * @param value
	 * @see org.eclipse.swt.widgets.Widget#setData(java.lang.String,
	 *      java.lang.Object)
	 */
	public void setData(final String key, final Object value) {
		browser.setData(key, value);
	}

	/**
	 * @param enabled
	 * @see org.eclipse.swt.widgets.Control#setEnabled(boolean)
	 */
	public void setEnabled(final boolean enabled) {
		browser.setEnabled(enabled);
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Composite#setFocus()
	 */
	public boolean setFocus() {
		boolean setFocus = browser.setFocus();
		browser.execute("integration.editor.focus();");
		return setFocus;
	}

	/**
	 * @param font
	 * @see org.eclipse.swt.widgets.Control#setFont(org.eclipse.swt.graphics.Font)
	 */
	public void setFont(final Font font) {
		browser.setFont(font);
	}

	/**
	 * @param color
	 * @see org.eclipse.swt.widgets.Control#setForeground(org.eclipse.swt.graphics.Color)
	 */
	public void setForeground(final Color color) {
		browser.setForeground(color);
	}

	/**
	 * Replaces the current content of the widget with the given html. For
	 * inserting html at the current selection use:
	 * 
	 * <pre>
	 * HtmlComposer.execute(&quot;integration.editor.insertHtml('myHtmlToInsert');&quot;);
	 * </pre>
	 * 
	 * @param html
	 */
	public void setHtml(String html) {
		SetHtmlCommand setHtmlCommand = new SetHtmlCommand();
		setHtmlCommand.setComposer(this);
		setHtmlCommand.setHtml(html);
		execute(setHtmlCommand);
	}

	/**
	 * @param layout
	 * @see org.eclipse.swt.widgets.Composite#setLayout(org.eclipse.swt.widgets.Layout)
	 */
	public void setLayout(final Layout layout) {
		browser.setLayout(layout);
	}

	/**
	 * @param layoutData
	 * @see org.eclipse.swt.widgets.Control#setLayoutData(java.lang.Object)
	 */
	public void setLayoutData(final Object layoutData) {
		browser.setLayoutData(layoutData);
	}

	/**
	 * @param defer
	 * @see org.eclipse.swt.widgets.Composite#setLayoutDeferred(boolean)
	 */
	public void setLayoutDeferred(final boolean defer) {
		browser.setLayoutDeferred(defer);
	}

	/**
	 * @param x
	 * @param y
	 * @see org.eclipse.swt.widgets.Control#setLocation(int, int)
	 */
	public void setLocation(final int x, final int y) {
		browser.setLocation(x, y);
	}

	/**
	 * @param location
	 * @see org.eclipse.swt.widgets.Control#setLocation(org.eclipse.swt.graphics.Point)
	 */
	public void setLocation(final Point location) {
		browser.setLocation(location);
	}

	/**
	 * @param menu
	 * @see org.eclipse.swt.widgets.Control#setMenu(org.eclipse.swt.widgets.Menu)
	 */
	public void setMenu(final Menu menu) {
		browser.setMenu(menu);
	}

	/**
	 * @param parent
	 * @return
	 * @see org.eclipse.swt.widgets.Control#setParent(org.eclipse.swt.widgets.Composite)
	 */
	public boolean setParent(final Composite parent) {
		return browser.setParent(parent);
	}

	/**
	 * @param redraw
	 * @see org.eclipse.swt.widgets.Control#setRedraw(boolean)
	 */
	public void setRedraw(final boolean redraw) {
		browser.setRedraw(redraw);
	}

	/**
	 * @param region
	 * @see org.eclipse.swt.widgets.Control#setRegion(org.eclipse.swt.graphics.Region)
	 */
	public void setRegion(final Region region) {
		browser.setRegion(region);
	}

	/**
	 * @param width
	 * @param height
	 * @see org.eclipse.swt.widgets.Control#setSize(int, int)
	 */
	public void setSize(final int width, final int height) {
		browser.setSize(width, height);
	}

	/**
	 * @param size
	 * @see org.eclipse.swt.widgets.Control#setSize(org.eclipse.swt.graphics.Point)
	 */
	public void setSize(final Point size) {
		browser.setSize(size);
	}

	/**
	 * @param tabList
	 * @see org.eclipse.swt.widgets.Composite#setTabList(org.eclipse.swt.widgets.Control[])
	 */
	public void setTabList(final Control[] tabList) {
		browser.setTabList(tabList);
	}

	/**
	 * @param visible
	 * @see org.eclipse.swt.widgets.Control#setVisible(boolean)
	 */
	public void setVisible(final boolean visible) {
		browser.setVisible(visible);
	}

	/**
	 * @param x
	 * @param y
	 * @return
	 * @see org.eclipse.swt.widgets.Control#toControl(int, int)
	 */
	public Point toControl(final int x, final int y) {
		return browser.toControl(x, y);
	}

	/**
	 * @param point
	 * @return
	 * @see org.eclipse.swt.widgets.Control#toControl(org.eclipse.swt.graphics.Point)
	 */
	public Point toControl(final Point point) {
		return browser.toControl(point);
	}

	/**
	 * @param x
	 * @param y
	 * @return
	 * @see org.eclipse.swt.widgets.Control#toDisplay(int, int)
	 */
	public Point toDisplay(final int x, final int y) {
		return browser.toDisplay(x, y);
	}

	/**
	 * @param point
	 * @return
	 * @see org.eclipse.swt.widgets.Control#toDisplay(org.eclipse.swt.graphics.Point)
	 */
	public Point toDisplay(final Point point) {
		return browser.toDisplay(point);
	}

	/**
	 * @return
	 * @see org.eclipse.swt.widgets.Widget#toString()
	 */
	@Override
	public String toString() {
		return browser.toString();
	}

	public void trackCommand(Command command) {
		trackedCommands.put(command.getCommandIdentifier(), command);
	}

	/**
	 * @param traversal
	 * @return
	 * @see org.eclipse.swt.widgets.Control#traverse(int)
	 */
	public boolean traverse(final int traversal) {
		return browser.traverse(traversal);
	}

	public void untrackCommand(Command command) {
		trackedCommands.remove(command.getCommandIdentifier());
	}

}

Back to the top