summaryrefslogtreecommitdiff
path: root/embeddedobj/test/Container1/EmbedContApp.java
blob: 9743a4f4cadc32f9c273cf9ac4394973ac40c505 (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
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
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you 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 .
 */

package embeddedobj.test;

import java.awt.*;
import java.applet.*;
import java.awt.event.*;
import java.net.*;
import java.io.*;
import java.util.Vector;

import javax.swing.JOptionPane;
import javax.swing.Timer;

import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;

import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
import com.sun.star.uno.Any;

import com.sun.star.lang.XComponent;

import com.sun.star.util.XCloseable;
import com.sun.star.util.XURLTransformer;
import com.sun.star.util.URL;

import com.sun.star.beans.PropertyValue;
import com.sun.star.beans.NamedValue;

import com.sun.star.datatransfer.DataFlavor;
import com.sun.star.datatransfer.XTransferable;

import com.sun.star.container.XNameAccess;

import com.sun.star.io.XStream;
import com.sun.star.io.XInputStream;
import com.sun.star.io.XOutputStream;
import com.sun.star.io.XTruncate;

import com.sun.star.awt.XWindow;
import com.sun.star.awt.XBitmap;

import com.sun.star.task.XJob;

import com.sun.star.embed.*;


class ActionObject
{
    public byte m_nID;
    public String m_sParam;

    public ActionObject()
    {
        m_nID = 0;
        m_sParam = null;
    }

    public ActionObject( byte nID )
    {
        m_nID = nID;
        m_sParam = null;
    }

    public ActionObject( byte nID, String sParam )
    {
        m_nID = nID;
        m_sParam = sParam;
    }

    public ActionObject( ActionObject aObject )
    {
        m_nID = aObject.m_nID;
        m_sParam = aObject.m_sParam;
    }
};

public class EmbedContApp extends Applet
    implements MouseListener, XEmbeddedClient, ActionListener, XJob, XInplaceClient, XWindowSupplier
{
    private XMultiServiceFactory m_xServiceFactory;

    private final boolean m_bStoreVisRepl = false;

    private XJob m_xMainThreadExecutor;
    private NamedValue[] m_pValuesForExecutor;

    private XEmbeddedObject m_xEmbedObj;
    private XStorage m_xStorage;
    private float    m_nXScaling;
    private float    m_nYScaling;
    private float    m_nXPixelSize;
    private float    m_nYPixelSize;

    private Frame m_aFrame;
    private Menu m_aFileMenu;
    private Menu m_aObjectMenu;
    private Toolkit m_aToolkit;

    private Image m_aImage;
    private Object m_oImageLock;

    private boolean m_bOwnFile = false;

    private boolean m_bLinkObj = false;
    private String m_aLinkURI;

    private Object m_oActionsNumberLock;

    private Timer m_aTimer;
    private boolean m_bDestroyed = false;

    private Object m_oInHandlerLock;
    private boolean m_bInHandler = false;

    private XURLTransformer m_xTransformer;

    private NativeView m_aNativeView;
    private XWindow m_xVCLWindow;

    private XBitmap m_xBitmap;
    private BitmapPainter m_aBitmapPainter;

// Constants
    private final byte DESTROY                  =  1;
    private final byte ACTIVATE_OUTPLACE        =  2;
    private final byte NEW_DOCUMENT             =  3;
    private final byte SAVE_AS                  =  4;
    private final byte OPEN_FILE                =  5;
    private final byte SAVE                     =  6;
    private final byte NEW_OBJECT               =  7;
    private final byte OBJECT_FROM_FILE         =  8;
    private final byte LINK_FROM_FILE           =  9;
    private final byte CONVERT_LINK_TO_OBJECT   = 10;
    private final byte ACTIVATE_INPLACE         = 11;
    private final byte DEACTIVATE               = 12;

// Methods
    public EmbedContApp( Frame aFrame, XMultiServiceFactory xServiceFactory )
    {
        m_aFrame = aFrame;
        m_xServiceFactory = xServiceFactory;
    }

    public void init()
    {
        resize( 800, 600 );
        setBackground( Color.gray );

        m_aToolkit = Toolkit.getDefaultToolkit();

        try {
            Object oTransformer = m_xServiceFactory.createInstance( "com.sun.star.util.URLTransformer" );
            m_xTransformer = (XURLTransformer)UnoRuntime.queryInterface( XURLTransformer.class, oTransformer );
        } catch( Exception e ) { System.exit( 0 ); }

        m_oActionsNumberLock = new Object();
        m_aActionsList = new ArrayList();

        m_oInHandlerLock = new Object();
        m_oImageLock = new Object();

        try {
            Object oJob = m_xServiceFactory.createInstance( "com.sun.star.comp.thread.MainThreadExecutor" );
            m_xMainThreadExecutor = (XJob)UnoRuntime.queryInterface( XJob.class, oJob );
        } catch( Exception e ) {}

        if ( m_xMainThreadExecutor == null )
        {
            System.out.println( "Can't create MainThreadExecutor! The application is unusable!" );
            System.exit( 0 );
        }

        m_nXScaling = 1;
        m_nYScaling = 1;
        m_nXPixelSize = 1;
        m_nYPixelSize = 1;

        m_pValuesForExecutor = new NamedValue[1];
        m_pValuesForExecutor[0] = new NamedValue( "JobToExecute", (Object)this );

        m_aTimer = new Timer( 100, this );
        m_aTimer.start();

        // Get a menu bar.
        MenuBar aMenuBar = m_aFrame.getMenuBar();
        if( aMenuBar == null )
        {
            aMenuBar = new MenuBar();
            m_aFrame.setMenuBar( aMenuBar );
        }

        // Create menus for the menu bar.

        // File menu
        m_aFileMenu = new Menu( "File", true );
        aMenuBar.add( m_aFileMenu );

        MenuItem aItem = new NewMenuItem();
        m_aFileMenu.add( aItem );

        aItem = new OpenFileMenuItem();
        m_aFileMenu.add( aItem );

        aItem = new SaveMenuItem();
        m_aFileMenu.add( aItem );

        aItem = new SaveAsMenuItem();
        m_aFileMenu.add( aItem );

        // Object menu
        m_aObjectMenu = new Menu( "Object", true );
        aMenuBar.add( m_aObjectMenu );

        aItem = new NewObjectMenuItem();
        m_aObjectMenu.add( aItem );

        aItem = new LoadObjectMenuItem();
        m_aObjectMenu.add( aItem );

        aItem = new LinkObjectMenuItem();
        m_aObjectMenu.add( aItem );

        aItem = new ConvertLinkToEmbedMenuItem();
        m_aObjectMenu.add( aItem );

        // Activation menu
        m_aObjectMenu = new Menu( "Activation", true );
        aMenuBar.add( m_aObjectMenu );

        aItem = new ActivateOutplaceMenuItem();
        m_aObjectMenu.add( aItem );

        aItem = new ActivateInplaceMenuItem();
        m_aObjectMenu.add( aItem );

        aItem = new DeactivateMenuItem();
        m_aObjectMenu.add( aItem );

        m_aNativeView = new NativeView();
        m_aNativeView.resize( 800, 600 );
        this.add( m_aNativeView );


    public void actionPerformed( ActionEvent evt )
    {
        synchronized( m_oInHandlerLock )
        {
            if ( m_bInHandler )
                return;
            m_bInHandler = true;
        }

        synchronized( m_oActionsNumberLock )
        {
            if ( m_aActionsList.size() > 0 )
            {
                try {
                    m_xMainThreadExecutor.execute( m_pValuesForExecutor );
                }
                catch( Exception e )
                {
                    System.out.println( "Exception in actionPerformed() : " + e );
                }
            }
            else
            {
                synchronized( m_oInHandlerLock )
                {
                    m_bInHandler = false;
                }
            }
        }
    }

    // XWindowSupplier
    public XWindow getWindow()
    {
        return m_xVCLWindow;
    }

    // XEmbeddedClient
    public void saveObject()
        throws com.sun.star.uno.Exception
    {
        if ( m_xEmbedObj != null )
        {
            try {
                XEmbedPersist xPersist = (XEmbedPersist)UnoRuntime.queryInterface( XEmbedPersist.class, m_xEmbedObj );
                if ( xPersist != null )
                {
                    xPersist.storeOwn();
                    generateNewImage();
                }
                else
                    JOptionPane.showMessageDialog( m_aFrame, "No XEmbedPersist!", "Error:", JOptionPane.ERROR_MESSAGE );
            }
            catch( Exception e )
            {
                JOptionPane.showMessageDialog( m_aFrame, e, "Exception in saveObject:", JOptionPane.ERROR_MESSAGE );
            }
        }

        generateNewImage();
        repaint();
    }

    public void onShowWindow( boolean bVisible )
    {
        // for now nothing to do
    }

    // XInplaceClient
    public boolean canInplaceActivate()
    {
        return true;
    }

    public void onInplaceActivate()
    {
        // TODO
        // prepare for inplace activation

        // REMOVE
        // workaround for CLIPCHILDREN problem
        if ( m_aBitmapPainter != null )
            m_aBitmapPainter.stopPainting();
    }

    public void onUIActivate()
    {
        // TODO
        // prepare for UI activate
    }

    public void onInplaceDeactivate()
    {
        // TODO
        // inplace deactivation is done

        // REMOVE
        // workaround for CLIPCHILDREN problem
        if ( m_aBitmapPainter != null )
            m_aBitmapPainter.startPainting();
    }

    public void onUIDeactivate()
    {
        // TODO
        // prepare for UI deactivate
    }

    public XIPMainContainerWindow getTopmostWindow()
    {
        // TODO
        // return an implementation of XIPMainContainerWindow
        // mainly required for ui activation
        // dummy implementation is enough for inplace activation

        return null;
    }

    public XInplaceUIWindow getDocumentWindow()
    {
        // TODO
        // return implementation of XInplaceUIWindow
        // mainly required for ui activation
        // dummy implementation is enough for inplace activation

        return null;
    }

    public com.sun.star.awt.Rectangle getPosRect()
    {
        // provide position rectangle to the object
        try {
            // here object bitmap and scaling factor hold the size
            com.sun.star.awt.Size aBitmapSize = m_xBitmap.getSize();
            com.sun.star.awt.Size aVisSize = new com.sun.star.awt.Size(
                                            (int)( aBitmapSize.Width * m_nXScaling ),
                                            (int)( aBitmapSize.Height * m_nYScaling ) );
            return new com.sun.star.awt.Rectangle( 10, 10, aVisSize.Width, aVisSize.Height );
        }
        catch( Exception e )
        {
            System.out.println( "Position rectangle generation failed!" );
        }

        return new com.sun.star.awt.Rectangle( 10, 10, 110, 110 );
    }

    public com.sun.star.awt.Rectangle getClipRect()
    {
        // provide clip rectangle to the object
        // in this application position and clip rectangles are the same

        try {
            // here object bitmap and scaling factor hold the size
            com.sun.star.awt.Size aBitmapSize = m_xBitmap.getSize();
            com.sun.star.awt.Size aVisSize = new com.sun.star.awt.Size(
                                            (int)( aBitmapSize.Width * m_nXScaling ),
                                            (int)( aBitmapSize.Height * m_nYScaling ) );
            return new com.sun.star.awt.Rectangle( 10, 10, aVisSize.Width, aVisSize.Height );
        }
        catch( Exception e )
        {
            System.out.println( "Clip rectangle generation failed!" );
        }

        return new com.sun.star.awt.Rectangle( 10, 10, 110, 110 );
    }

    public void translateAccelerators( com.sun.star.awt.KeyEvent[] aKeys )
    {
        // TODO
        // an accelerator table for object
        // ui activation related
    }

    public void scrollObj( com.sun.star.awt.Size aOffset )
    {
        // TODO
        // scrolls the object to a specified offset
        // not mandatory for the testing application :)
    }

    public void onPosRectChange( com.sun.star.awt.Rectangle aPosRect )
    {
        // object asks to change the position
        if ( m_xEmbedObj != null )
        {
            try {
                int nState = m_xEmbedObj.getCurrentState();
                // such a position change make sense only when object is
                // either inplace or ui active
                if ( nState == EmbedStates.EMBED_INPLACE_ACTIVE
                  || nState == EmbedStates.EMBED_UI_ACTIVE )
                 {
                    XInplaceObject xInplObj = (XInplaceObject)UnoRuntime.queryInterface( XInplaceObject.class, m_xEmbedObj );
                     if ( xInplObj != null )
                    {
                        xInplObj.setObjectRects( aPosRect, aPosRect ); // show the whole object
                        if ( m_aBitmapPainter != null )
                            m_aBitmapPainter.setRect( aPosRect );
                    }
                    else
                         System.out.println( "Why object that does not support inplace activation behave like inplace object?!" );
                 }
                 else
                     System.out.println( "The object is not active but asks to change visual area!" );
            } catch( Exception e )
            {
                 System.out.println( "Exception is thrown in onPosRectChange: " + e );
            }
        }
        else
             System.out.println( "Who asks to change visual area?!!" );
    }

    // XJob
    public Object execute( NamedValue[] pValues )
    {
        for( int nInd = 0; nInd < m_aActionsList.size(); nInd++ )
        {
            ActionObject aAction = m_aActionsList.get( nInd );
            if ( aAction != null )
            {
                if ( aAction.m_nID == DESTROY )
                {
                    // free all resources
                    clearObjectAndStorage();
                    m_bDestroyed = true;
                }
                else if ( aAction.m_nID == ACTIVATE_OUTPLACE )
                {
                    // activate object if exists and not active
                    if ( m_xEmbedObj != null )
                    {
                        try {
                            m_xEmbedObj.changeState( EmbedStates.EMBED_ACTIVE );
                        }
                        catch( Exception ex )
                        {
                            System.out.println( "Exception on mouse click" + ex );
                        }
                    }
                }
                else if ( aAction.m_nID == NEW_DOCUMENT )
                {
                    // clear everything
                    clearObjectAndStorage();

                    repaint();
                }
                else if ( aAction.m_nID == SAVE_AS )
                {
                    // open SaveAs dialog and store

                    if ( m_xStorage != null && m_xEmbedObj != null )
                    {
                        try {
                            /*
                                if ( m_bLinkObj )
                                    storeLinkAsFileURI( aFileURI );
                                else
                            */
                            saveObjectAsFileURI( aAction.m_sParam );
                        }
                        catch( Exception ex )
                        {
                            System.out.println( "Exception in SaveAsMenuItem: " + ex );
                        }
                    }
                }
                else if ( aAction.m_nID == OPEN_FILE )
                {
                    // clear everything
                    clearObjectAndStorage();

                    // load from specified file
                    loadFileURI( aAction.m_sParam );

                    if ( m_xEmbedObj != null )
                    {
                        try {
                            m_xEmbedObj.setClientSite( this );
                        }
                        catch( Exception ex )
                        {
                            System.out.println( "Exception in OpenFileMenuItem: " + ex );
                        }
                    }

                    generateNewImage();
                    repaint();
                }
                else if ( aAction.m_nID == SAVE )
                {
                    if ( m_xStorage != null && m_xEmbedObj != null )
                    {
                        // if has persistence store there
                        // if not it is and error, SaveAs had to be used

                        if ( m_bOwnFile )
                        {
                            if ( m_xStorage != null )
                            {
                                try {
                                    saveObject();

                                    if ( m_bLinkObj )
                                        storeLinkToStorage();

                                    XTransactedObject xTransact = (XTransactedObject)UnoRuntime.queryInterface( XTransactedObject.class,
                                                                                                                m_xStorage );
                                    if ( xTransact != null )
                                        xTransact.commit();
                                }
                                catch( Exception ex )
                                {
                                    System.out.println( "Exception during save operation in SaveMenuItem:" + ex );
                                }
                            }
                            else
                            {
                                System.out.println( "No storage for owned file!" );
                            }
                        }
                        else
                        {
                            System.out.println( "No owned file!" );
                        }
                    }
                }
                else if ( aAction.m_nID == NEW_OBJECT )
                {
                    // remove current object an init a new one
                    clearObjectAndStorage();

                    if ( aAction.m_sParam != null )
                    {
                        m_xStorage = createTempStorage();

                        if ( m_xStorage != null )
                            m_xEmbedObj = createEmbedObject( aAction.m_sParam );
                        else
                            System.out.println( "Can't create temporary storage!" );

                        if ( m_xEmbedObj != null )
                        {
                            try {
                                m_xEmbedObj.setClientSite( this );
                            }
                            catch( Exception ex )
                            {
                                System.out.println( "Exception in NewObjectMenuItem:" + ex );
                            }
                        }
                    }

                    generateNewImage();
                    repaint();
                }
                else if ( aAction.m_nID == OBJECT_FROM_FILE )
                {
                    // first remove current object
                    clearObjectAndStorage();

                    // create object from specified file
                    m_xStorage = createTempStorage();

                    if ( m_xStorage != null )
                        m_xEmbedObj = loadEmbedObject( aAction.m_sParam );

                    if ( m_xEmbedObj != null )
                    {
                        try {
                            m_xEmbedObj.setClientSite( this );
                        }
                        catch( Exception ex )
                        {
                            System.out.println( "Exception in LoadObjectMenuItem: " + ex );
                        }
                    }

                    generateNewImage();
                    repaint();
                }
                else if ( aAction.m_nID == LINK_FROM_FILE )
                {
                    // first remove current object
                    clearObjectAndStorage();

                    m_xStorage = createTempStorage();

                    // create object from specified file
                    m_xEmbedObj = createLinkObject( aAction.m_sParam );

                    if ( m_xEmbedObj != null )
                    {
                        m_aLinkURI = aAction.m_sParam;
                        m_bLinkObj = true;

                        try {
                            m_xEmbedObj.setClientSite( this );
                        }
                        catch( Exception ex )
                        {
                            System.out.println( "Exception in LinkObjectMenuItem:" + ex );
                        }
                    }

                    generateNewImage();
                    repaint();
                }
                else if ( aAction.m_nID == CONVERT_LINK_TO_OBJECT )
                {
                    if ( !m_bLinkObj )
                    {
                        System.out.println( "The object is not a link!" );
                        continue;
                    }

                    if ( m_xEmbedObj != null )
                    {
                        if ( m_xStorage != null )
                        {
                            try {
                                XNameAccess xNameAccess = (XNameAccess)UnoRuntime.queryInterface( XNameAccess.class,
                                                                                                m_xStorage );
                                if ( xNameAccess != null && xNameAccess.hasByName( "LinkName" ) )
                                    m_xStorage.removeElement( "LinkName" );

                                XLinkageSupport xLinkage = (XLinkageSupport)UnoRuntime.queryInterface( XLinkageSupport.class,
                                                                                                        m_xEmbedObj );
                                if ( xLinkage != null )
                                {
                                    xLinkage.breakLink( m_xStorage, "EmbedSub" );
                                    m_bLinkObj = false;
                                    m_aLinkURI = null;
                                }
                                else
                                    System.out.println( "No XLinkageSupport in ConvertLink... !" );
                            }
                            catch( Exception e1 )
                            {
                                System.out.println( "Exception in ConvertLinkToEmbed:try 1 :" + e1 );
                            }
                        }
                    }
                }
                else if ( aAction.m_nID == ACTIVATE_INPLACE )
                {
                    // activate object
                    if ( m_xEmbedObj != null )
                    {
                        // in general it is better to check acceptable states
                        try {
                            m_xEmbedObj.changeState( EmbedStates.EMBED_INPLACE_ACTIVE );
                        }
                        catch( Exception ex )
                        {
                            System.out.println( "Exception on inplace activation " + ex );
                        }
                    }
                }
                else if ( aAction.m_nID == DEACTIVATE )
                {
                    // activate object

                    if ( m_xEmbedObj != null )
                    {
                        int nOldState = -1;
                        try {
                            nOldState = m_xEmbedObj.getCurrentState();
                        } catch( Exception e )
                        {}

                        if ( nOldState == EmbedStates.EMBED_ACTIVE
                          || nOldState == EmbedStates.EMBED_INPLACE_ACTIVE
                          || nOldState == EmbedStates.EMBED_UI_ACTIVE )
                        {
                            try {
                                m_xEmbedObj.changeState( EmbedStates.EMBED_RUNNING );
                            }
                            catch( Exception ex )
                            {
                                System.out.println( "Exception on inplace activation " + ex );
                            }
                        }
                        else
                        {
                            System.out.println( "Deactivation of nonactive object!" );
                        }
                    }
                }
                else
                {
                    System.out.println( "Unknown action is requested: " + aAction.m_nID + "\n" );
                }
            }
        }

        m_aActionsList.clear();

        synchronized( m_oInHandlerLock )
        {
            m_bInHandler = false;
        }

        return Any.VOID;
    }

    public void actionRegister( byte nActionID, String sParam )
    {
        synchronized( m_oActionsNumberLock )
        {
            int nSize = m_aActionsList.size();
            if ( nSize < 199 )
            {
                if ( nSize == 0 )
                    m_aActionsList.add( new ActionObject( nActionID, sParam ) );
                else
                {
                    ActionObject aAction = m_aActionsList.get( nSize - 1 );
                    if ( aAction != null && aAction.m_nID != DESTROY )
                        m_aActionsList.add( new ActionObject( nActionID, sParam ) );
                }
            }
        }
    }

    public void SaveAsOperation()
    {
        if ( m_xStorage != null && m_xEmbedObj != null )
        {
            FileDialog aFileDialog = new FileDialog( m_aFrame, "SaveAs", FileDialog.SAVE );
            aFileDialog.show();
            if ( aFileDialog.getFile() != null )
            {
                String aFileName = aFileDialog.getDirectory() + aFileDialog.getFile();
                File aFile = new File( aFileName );
                if ( aFile != null )
                {
                    // create object from specified file
                    String aFileURI = getValidURL( aFile.toURI().toASCIIString() );
                    actionRegister( SAVE_AS, aFileURI );
                }
            }
        }
        else
            JOptionPane.showMessageDialog( m_aFrame, "No document is embedded!", "Error:", JOptionPane.ERROR_MESSAGE );

    }

    public void destroy()
    {
        // redirect the call through the timer and call super.destroy();
        actionRegister( DESTROY, null );

        for ( int i = 0; i < 3 && !m_bDestroyed; i++ )
        {
            try {
                Thread.sleep( 200 );
            } catch ( Exception e )
            {}
        }

        if ( !m_bDestroyed )
            System.out.println( "The object application can not exit correctly!" );

        m_aTimer.stop();

        super.destroy();
    }

    public void update( Graphics g )
    {
        paint( g );
    }

    public void paint( Graphics g )
    {
        super.paint( g );

        createVclWindow();
    }

    public void createVclWindow()
    {
        synchronized( m_oImageLock )
        {
            if ( m_xVCLWindow == null && m_xServiceFactory != null && m_xEmbedObj != null && m_xBitmap != null )
            {
                java.awt.Rectangle aBounds = getBounds();
                m_xVCLWindow = WindowHelper.createWindow( m_xServiceFactory, m_aNativeView, aBounds );
                m_xVCLWindow.setVisible( true );

                com.sun.star.awt.Size aBitmapSize = new com.sun.star.awt.Size( 200, 100 );

                XVisualObject xVisObj = (XVisualObject)UnoRuntime.queryInterface( XVisualObject.class, m_xEmbedObj );
                try {
                    com.sun.star.awt.Size aVisSize = xVisObj.getVisAreaSize( Aspects.MSASPECT_CONTENT );
                    m_nXPixelSize = aVisSize.Width / aBitmapSize.Width;
                    m_nYPixelSize = aVisSize.Height / aBitmapSize.Height;
                }
                catch( Exception e )
                {
                }

                if ( m_xBitmap != null )
                     aBitmapSize = m_xBitmap.getSize();

                System.out.println( "The visual area is Width = " + aBitmapSize.Width + "; Height = " + aBitmapSize.Height );

                com.sun.star.awt.Rectangle aRect = new com.sun.star.awt.Rectangle(
                                                        10,
                                                        10,
                                                        Math.min( (int)aBounds.getWidth() - 20, aBitmapSize.Width ),
                                                        Math.min( (int)aBounds.getHeight() - 20, aBitmapSize.Height ) );

                m_aBitmapPainter = new BitmapPainter( m_xMainThreadExecutor, m_xVCLWindow, m_xBitmap, aRect );
            }
        }
    }

    public void generateNewImage()
    {
        if ( m_xEmbedObj != null )
        {
            try {
                int nOldState = m_xEmbedObj.getCurrentState();
                int nState = nOldState;
                if ( nOldState == EmbedStates.EMBED_LOADED )
                {
                    m_xEmbedObj.changeState( EmbedStates.EMBED_RUNNING );
                    nState = EmbedStates.EMBED_RUNNING;
                }

                if ( nState == EmbedStates.EMBED_UI_ACTIVE || nState == EmbedStates.EMBED_INPLACE_ACTIVE
                  || nState == EmbedStates.EMBED_ACTIVE || nState == EmbedStates.EMBED_RUNNING )
                {
                    XComponentSupplier xCompProv = (XComponentSupplier)UnoRuntime.queryInterface(
                                                                                    XComponentSupplier.class,
                                                                                    m_xEmbedObj );
                    if ( xCompProv != null )
                    {
                        XCloseable xCloseable = xCompProv.getComponent();
                        XTransferable xTransfer = (XTransferable)UnoRuntime.queryInterface(
                                                                                    XTransferable.class,
                                                                                    xCloseable );
                        if ( xTransfer != null )
                        {
                            DataFlavor aFlavor = new DataFlavor();
                            aFlavor.MimeType = "application/x-openoffice;windows_formatname=\"Bitmap\"";
                            aFlavor.HumanPresentableName = "Bitmap";
                            aFlavor.DataType = new Type( byte[].class );

                            Object aAny = xTransfer.getTransferData( aFlavor );
                            if ( aAny != null && AnyConverter.isArray( aAny ) )
                            {
                                synchronized( m_oImageLock )
                                {
                                    m_xBitmap = WindowHelper.getVCLBitmapFromBytes( m_xServiceFactory, aAny );
                                    if ( m_aBitmapPainter != null )
                                    {
                                        m_aBitmapPainter.setBitmap( m_xBitmap );

                                        if ( m_xBitmap != null )
                                        {
                                            try {
                                                com.sun.star.awt.Size aBitmapSize = m_xBitmap.getSize();
                                                com.sun.star.awt.Size aVisSize = new com.sun.star.awt.Size(
                                                                                (int)( aBitmapSize.Width * m_nXScaling ),
                                                                                (int)( aBitmapSize.Height * m_nYScaling ) );
                                                m_aBitmapPainter.setSize( aVisSize );
                                            }
                                            catch( Exception e )
                                            {
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        else
                            System.out.println( "paint() : can not get XTransferable for the component!\n" );
                    }
                    else
                        System.out.println( "paint() : XComponentSupplier is not implemented!\n" );
                }
            }
            catch( com.sun.star.uno.Exception e )
            {
                // dialogs should not be used in paint()
                System.out.println( "Exception in paint(): " + e );
            }
        }
    }

    public void mouseClicked( MouseEvent e )
    {
        if( e.getModifiers() == InputEvent.BUTTON1_MASK )
        {
            actionRegister( ACTIVATE_OUTPLACE, null );
        }
    }

    public void mousePressed( MouseEvent e ){};
    public void mouseEntered( MouseEvent e ){};
    public void mouseExited( MouseEvent e ){};
    public void mouseReleased( MouseEvent e ){};

    class NewMenuItem extends MenuItem implements ActionListener // Menu New
    {
        public NewMenuItem()
        {
            super( "New", new MenuShortcut( KeyEvent.VK_A ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            actionRegister( NEW_DOCUMENT, null );
        }
    }

    class SaveAsMenuItem extends MenuItem implements ActionListener // Menu SaveAs...
    {
        public SaveAsMenuItem()
        {
            super( "SaveAs..." );
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            // open SaveAs dialog and store

            SaveAsOperation();
        }
    }

    class OpenFileMenuItem extends MenuItem implements ActionListener // Menu Open
    {
        public OpenFileMenuItem()
        {
            super( "Open", new MenuShortcut( KeyEvent.VK_C ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            // open OpenFile dialog and load doc
            FileDialog aFileDialog = new FileDialog( m_aFrame, "Open" );
            aFileDialog.show();
            if ( aFileDialog.getFile() != null )
            {
                String aFileName = aFileDialog.getDirectory() + aFileDialog.getFile();
                File aFile = new File( aFileName );
                if ( aFile != null )
                {
                    // create object from specified file
                    String aFileURI = getValidURL( aFile.toURI().toASCIIString() );
                    actionRegister( OPEN_FILE, aFileURI );
                }
            }
        }
    }

    class SaveMenuItem extends MenuItem implements ActionListener // Menu Save
    {
        public SaveMenuItem()
        {
            super( "Save", new MenuShortcut( KeyEvent.VK_D ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            // if has persistence store there
            // if not open SaveAs dialog and store
            if ( m_xStorage != null && m_xEmbedObj != null )
            {
                if ( m_bOwnFile )
                {
                    if ( m_xStorage == null )
                    {
                        JOptionPane.showMessageDialog( m_aFrame,
                                                        "No storage for oned file!",
                                                        "Error:",
                                                        JOptionPane.ERROR_MESSAGE );

                        return;
                    }

                    actionRegister( SAVE, null );
                }
                else
                {
                    SaveAsOperation();
                }
            }
            else
                JOptionPane.showMessageDialog( m_aFrame, "No document is embedded!", "Error:", JOptionPane.ERROR_MESSAGE );
        }
    }

    class NewObjectMenuItem extends MenuItem implements ActionListener // Menu NewObject
    {
        public NewObjectMenuItem()
        {
            super( "Create", new MenuShortcut( KeyEvent.VK_N ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            Object[] possibleValues = { "com.sun.star.comp.Writer.TextDocument",
                                        "com.sun.star.comp.Writer.GlobalDocument",
                                        "com.sun.star.comp.Writer.WebDocument",
                                        "com.sun.star.comp.Calc.SpreadsheetDocument",
                                        "com.sun.star.comp.Draw.PresentationDocument",
                                        "com.sun.star.comp.Draw.DrawingDocument",
                                        "com.sun.star.comp.Math.FormulaDocument",
                                        "BitmapImage" };

            String selectedValue = (String)JOptionPane.showInputDialog( null, "DocumentType", "Select",
                                                                           JOptionPane.INFORMATION_MESSAGE, null,
                                                                           possibleValues, possibleValues[0] );

            actionRegister( NEW_OBJECT, selectedValue );
        }
    }

    class LoadObjectMenuItem extends MenuItem implements ActionListener // Menu LoadObject
    {
        public LoadObjectMenuItem()
        {
            super( "Load from file", new MenuShortcut( KeyEvent.VK_L ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            // open OpenFile dialog and load doc
            FileDialog aFileDialog = new FileDialog( m_aFrame, "Select sources to use for object init" );
            aFileDialog.show();
            if ( aFileDialog.getFile() != null )
            {
                String aFileName = aFileDialog.getDirectory() + aFileDialog.getFile();
                File aFile = new File( aFileName );
                if ( aFile != null )
                {
                    // create object from specified file
                    String aFileURI = getValidURL( aFile.toURI().toASCIIString() );
                    actionRegister( OBJECT_FROM_FILE, aFileURI );
                }
            }
        }
    }

    class LinkObjectMenuItem extends MenuItem implements ActionListener // Menu LinkObject
    {
        public LinkObjectMenuItem()
        {
            super( "Create link", new MenuShortcut( KeyEvent.VK_M ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            // open OpenFile dialog and load doc
            FileDialog aFileDialog = new FileDialog( m_aFrame, "Select sources to use for object init" );
            aFileDialog.show();
            if ( aFileDialog.getFile() != null )
            {
                String aFileName = aFileDialog.getDirectory() + aFileDialog.getFile();
                File aFile = new File( aFileName );
                if ( aFile != null )
                {
                    // create object from specified file
                    String aFileURI = getValidURL( aFile.toURI().toASCIIString() );
                    actionRegister( LINK_FROM_FILE, aFileURI );
                }
            }
        }
    }

    class ConvertLinkToEmbedMenuItem extends MenuItem implements ActionListener // Menu LinkObject
    {
        public ConvertLinkToEmbedMenuItem()
        {
            super( "Convert link to embed", new MenuShortcut( KeyEvent.VK_M ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            actionRegister( CONVERT_LINK_TO_OBJECT, null );
        }
    }

    class ActivateOutplaceMenuItem extends MenuItem implements ActionListener // Menu ActiveteOutplace
    {
        public ActivateOutplaceMenuItem()
        {
            super( "Activate outplace", new MenuShortcut( KeyEvent.VK_A ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            actionRegister( ACTIVATE_OUTPLACE, null );
        }
    }

    class ActivateInplaceMenuItem extends MenuItem implements ActionListener // Menu ActivateInplace
    {
        public ActivateInplaceMenuItem()
        {
            super( "Activate inplace", new MenuShortcut( KeyEvent.VK_I ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            actionRegister( ACTIVATE_INPLACE, null );
        }
    }

    class DeactivateMenuItem extends MenuItem implements ActionListener // Menu Deactivate
    {
        public DeactivateMenuItem()
        {
            super( "Deactivate", new MenuShortcut( KeyEvent.VK_D ));
            addActionListener( this );
        }

        public void actionPerformed( ActionEvent e )
        {
            actionRegister( DEACTIVATE, null );
        }
    }

    // Helper methods
    public XEmbeddedObject createEmbedObject( String aServiceName )
    {
        XEmbeddedObject xEmbObj = null;
        byte[] pClassID = new byte[16];

        if ( aServiceName.equals( "com.sun.star.comp.Writer.TextDocument" ) )
        {
            int[] pTempClassID = { 0x8B, 0xC6, 0xB1, 0x65, 0xB1, 0xB2, 0x4E, 0xDD,
                                    0xAA, 0x47, 0xDA, 0xE2, 0xEE, 0x68, 0x9D, 0xD6 };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "com.sun.star.comp.Writer.GlobalDocument" ) )
        {
            int[] pTempClassID = { 0xB2, 0x1A, 0x0A, 0x7C, 0xE4, 0x03, 0x41, 0xFE,
                                    0x95, 0x62, 0xBD, 0x13, 0xEA, 0x6F, 0x15, 0xA0 };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "com.sun.star.comp.Writer.WebDocument" ) )
        {
            int[] pTempClassID = { 0xA8, 0xBB, 0xA6, 0x0C, 0x7C, 0x60, 0x45, 0x50,
                                    0x91, 0xCE, 0x39, 0xC3, 0x90, 0x3F, 0xAC, 0x5E };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "com.sun.star.comp.Calc.SpreadsheetDocument" ) )
        {
            int[] pTempClassID = { 0x47, 0xBB, 0xB4, 0xCB, 0xCE, 0x4C, 0x4E, 0x80,
                                    0xA5, 0x91, 0x42, 0xD9, 0xAE, 0x74, 0x95, 0x0F };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "com.sun.star.comp.Draw.PresentationDocument" ) )
        {
            int[] pTempClassID = { 0x91, 0x76, 0xE4, 0x8A, 0x63, 0x7A, 0x4D, 0x1F,
                                    0x80, 0x3B, 0x99, 0xD9, 0xBF, 0xAC, 0x10, 0x47 };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "com.sun.star.comp.Draw.DrawingDocument" ) )
        {
            int[] pTempClassID = { 0x4B, 0xAB, 0x89, 0x70, 0x8A, 0x3B, 0x45, 0xB3,
                                    0x99, 0x1C, 0xCB, 0xEE, 0xAC, 0x6B, 0xD5, 0xE3 };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "com.sun.star.comp.Math.FormulaDocument" ) )
        {
            int[] pTempClassID = { 0x07, 0x8B, 0x7A, 0xBA, 0x54, 0xFC, 0x45, 0x7F,
                                    0x85, 0x51, 0x61, 0x47, 0xE7, 0x76, 0xA9, 0x97 };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }
        else if ( aServiceName.equals( "BitmapImage" ) )
        {
            int[] pTempClassID = { 0xD3, 0xE3, 0x4B, 0x21, 0x9D, 0x75, 0x10, 0x1A,
                                    0x8C, 0x3D, 0x00, 0xAA, 0x00, 0x1A, 0x16, 0x52 };
            for ( int ind = 0; ind < 16; ind++ )
                pClassID[ind] = (byte)pTempClassID[ind];
        }

        if ( pClassID != null )
        {
            // create embedded object based on the class ID
            try {
                Object oEmbedCreator = m_xServiceFactory.createInstance( "com.sun.star.embed.EmbeddedObjectCreator" );
                XEmbedObjectCreator xEmbedCreator = (XEmbedObjectCreator)UnoRuntime.queryInterface(
                                                                                        XEmbedObjectCreator.class,
                                                                                        oEmbedCreator );
                if ( xEmbedCreator != null )
                {
                    Object oEmbObj = xEmbedCreator.createInstanceInitNew( pClassID,
                                                                        "Dummy name",
                                                                        m_xStorage,
                                                                        "EmbedSub",
                                                                        new PropertyValue[0] );
                    xEmbObj = (XEmbeddedObject)UnoRuntime.queryInterface( XEmbeddedObject.class, oEmbObj );
                }
                else
                    JOptionPane.showMessageDialog( m_aFrame,
                                                   "Can't create EmbedCreator!",
                                                   "Error:",
                                                   JOptionPane.ERROR_MESSAGE );
            }
            catch( Exception e )
            {
                JOptionPane.showMessageDialog( m_aFrame, e, "Exception in createInstanceInitNew():", JOptionPane.ERROR_MESSAGE );
            }
        }
        else
            JOptionPane.showMessageDialog( m_aFrame, "Can't retrieve class ID!", "Error:", JOptionPane.ERROR_MESSAGE );

        return xEmbObj;
    }

    public XEmbeddedObject createLinkObject( String aLinkURL )
    {
        XEmbeddedObject xEmbObj = null;

        try {
            Object oLinkCreator = m_xServiceFactory.createInstance( "com.sun.star.embed.EmbeddedObjectCreator" );
            XLinkCreator xLinkCreator = (XLinkCreator)UnoRuntime.queryInterface(
                                                                                    XLinkCreator.class,
                                                                                    oLinkCreator );
            if ( xLinkCreator != null )
            {
                PropertyValue[] aMedDescr = { new PropertyValue(), new PropertyValue() };
                aMedDescr[0].Name = "URL";
                aMedDescr[0].Value = (Object) aLinkURL;
                aMedDescr[1].Name = "ReadOnly";
                aMedDescr[1].Value = (Object) Boolean.FALSE;
                Object oEmbObj = xLinkCreator.createInstanceLink( m_xStorage, "EmbedSub", aMedDescr, new PropertyValue[0] );
                xEmbObj = (XEmbeddedObject)UnoRuntime.queryInterface( XEmbeddedObject.class, oEmbObj );
            }
            else
                JOptionPane.showMessageDialog( m_aFrame,
                                               "Can't create LinkCreator!",
                                               "Error:",
                                               JOptionPane.ERROR_MESSAGE );
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in createLinkObject():", JOptionPane.ERROR_MESSAGE );
        }


        return xEmbObj;
    }


    public XEmbeddedObject loadEmbedObject( String aFileURI )
    {
        XEmbeddedObject xEmbObj = null;
        try {
            Object oEmbedCreator = m_xServiceFactory.createInstance( "com.sun.star.embed.EmbeddedObjectCreator" );
            XEmbedObjectCreator xEmbedCreator = (XEmbedObjectCreator)UnoRuntime.queryInterface(
                                                                                    XEmbedObjectCreator.class,
                                                                                    oEmbedCreator );
            if ( xEmbedCreator != null )
            {
                PropertyValue[] aMedDescr = { new PropertyValue(), new PropertyValue() };
                aMedDescr[0].Name = "URL";
                aMedDescr[0].Value = (Object) aFileURI;
                aMedDescr[1].Name = "ReadOnly";
                aMedDescr[1].Value = (Object) Boolean.FALSE;
                Object oEmbObj = xEmbedCreator.createInstanceInitFromMediaDescriptor( m_xStorage,
                                                                                    "EmbedSub",
                                                                                    aMedDescr,
                                                                                    new PropertyValue[0] );
                xEmbObj = (XEmbeddedObject)UnoRuntime.queryInterface( XEmbeddedObject.class, oEmbObj );
            }
            else
                JOptionPane.showMessageDialog( m_aFrame,
                                               "Can't create EmbedFactory!",
                                               "Error:",
                                               JOptionPane.ERROR_MESSAGE );
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in loadEmbedObject():", JOptionPane.ERROR_MESSAGE );
        }

        return xEmbObj;
    }

    public void clearObjectAndStorage()
    {
        synchronized( m_oImageLock )
        {
            m_aImage = null;
        }

        m_nXScaling = 1;
        m_nYScaling = 1;
        m_nXPixelSize = 1;
        m_nYPixelSize = 1;

        m_bOwnFile = false;

        m_aLinkURI = null;
        m_bLinkObj = false;

        if ( m_xEmbedObj != null )
        {
            try {
                XCloseable xClose = (XCloseable)UnoRuntime.queryInterface( XCloseable.class, m_xEmbedObj );
                if ( xClose != null )
                    xClose.close( true );
            }
            catch ( Exception ex )
            {}
            m_xEmbedObj = null;
        }

        if ( m_xStorage != null )
        {
            try {
                XComponent xComponent = (XComponent)UnoRuntime.queryInterface( XComponent.class, m_xStorage );
                if ( xComponent != null )
                    xComponent.dispose();
            }
            catch ( Exception ex )
            {}
            m_xStorage = null;
        }
    }

    public XStorage createTempStorage()
    {
        XStorage xTempStorage = null;

        try {
            Object oStorageFactory = m_xServiceFactory.createInstance( "com.sun.star.embed.StorageFactory" );
            XSingleServiceFactory xStorageFactory = (XSingleServiceFactory)UnoRuntime.queryInterface(
                                                                                        XSingleServiceFactory.class,
                                                                                        oStorageFactory );
            if ( xStorageFactory != null )
            {
                Object oStorage = xStorageFactory.createInstance();
                xTempStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oStorage );
            }
            else
                JOptionPane.showMessageDialog( m_aFrame,
                                                "Can't create StorageFactory!",
                                                "Error:",
                                                JOptionPane.ERROR_MESSAGE );
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in createTempStorage():", JOptionPane.ERROR_MESSAGE );
        }

        return xTempStorage;
    }

    public void saveObjectAsFileURI( String aFileURI )
    {
        try {
            Object oStorageFactory = m_xServiceFactory.createInstance( "com.sun.star.embed.StorageFactory" );
            XSingleServiceFactory xStorageFactory = (XSingleServiceFactory)UnoRuntime.queryInterface(
                                                                                        XSingleServiceFactory.class,
                                                                                        oStorageFactory );
            if ( xStorageFactory != null )
            {
                XEmbedPersist xPersist = (XEmbedPersist)UnoRuntime.queryInterface( XEmbedPersist.class, m_xEmbedObj );
                if ( xPersist != null )
                {
                    Object aArgs[] = new Object[2];
                    aArgs[0] = aFileURI;
                    aArgs[1] = Integer.valueOf( ElementModes.ELEMENT_READWRITE );

                    Object oStorage = xStorageFactory.createInstanceWithArguments( aArgs );
                    XStorage xTargetStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oStorage );

                    PropertyValue aProps[] = { new PropertyValue() };
                    aProps[0].Name = "StoreVisualReplacement";
                    aProps[0].Value = Boolean.valueOf( m_bStoreVisRepl );

                    xPersist.storeAsEntry( xTargetStorage, "EmbedSub", new PropertyValue[0], aProps );
                    xPersist.saveCompleted( true );

                    // the object must be already based on new storage
                    XComponent xComponent = (XComponent)UnoRuntime.queryInterface( XComponent.class, m_xStorage );
                    xComponent.dispose();

                    m_xStorage = xTargetStorage;
                    m_bOwnFile = true;

                    XTransactedObject xTransact = (XTransactedObject)UnoRuntime.queryInterface( XTransactedObject.class,
                                                                                            m_xStorage );
                    if ( xTransact != null )
                        xTransact.commit();
                }
                else
                    JOptionPane.showMessageDialog( m_aFrame, "No XEmbedPersist!", "Error:", JOptionPane.ERROR_MESSAGE );
            }
            else
                JOptionPane.showMessageDialog( m_aFrame,
                                                "Can't create StorageFactory!",
                                                "Error:",
                                                JOptionPane.ERROR_MESSAGE );
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in saveStorageToFileURI():", JOptionPane.ERROR_MESSAGE );
        }

    }

    public void loadFileURI( String aFileURI )
    {
        try
        {
            Object oStorageFactory = m_xServiceFactory.createInstance( "com.sun.star.embed.StorageFactory" );
            XSingleServiceFactory xStorageFactory = (XSingleServiceFactory)UnoRuntime.queryInterface(
                                                                                        XSingleServiceFactory.class,
                                                                                        oStorageFactory );
            Object aArgs[] = new Object[2];
            aArgs[0] = aFileURI;
            aArgs[1] = Integer.valueOf( ElementModes.ELEMENT_READWRITE );

            Object oStorage = xStorageFactory.createInstanceWithArguments( aArgs );
            XStorage xTargetStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oStorage );

            Object oEmbedCreator = m_xServiceFactory.createInstance( "com.sun.star.embed.EmbeddedObjectCreator" );
            XEmbedObjectCreator xEmbedCreator = (XEmbedObjectCreator)UnoRuntime.queryInterface(
                                                                                    XEmbedObjectCreator.class,
                                                                                    oEmbedCreator );

            XNameAccess xNameAccess = (XNameAccess)UnoRuntime.queryInterface( XNameAccess.class,
                                                                            xTargetStorage );
            if ( xNameAccess == null )
            {
                JOptionPane.showMessageDialog( m_aFrame, "No XNameAccess!", "Error:", JOptionPane.ERROR_MESSAGE );
                return;
            }

            Object oEmbObj = null;
            if ( xNameAccess.hasByName( "LinkName" ) && xTargetStorage.isStreamElement( "LinkName" ) )
            {
            }
            else
                oEmbObj = xEmbedCreator.createInstanceInitFromEntry( xTargetStorage,
                                                                    "EmbedSub",
                                                                    false,
                                                                    new PropertyValue[0] );

            m_xEmbedObj = (XEmbeddedObject)UnoRuntime.queryInterface( XEmbeddedObject.class, oEmbObj );

            if ( m_xEmbedObj != null )
            {
                m_xStorage = xTargetStorage;
                m_bOwnFile = true;
            }
            else
                JOptionPane.showMessageDialog( m_aFrame,
                                               "Can't create EmbedObject from storage!",
                                               "Error:",
                                               JOptionPane.ERROR_MESSAGE );
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in loadFileURI():", JOptionPane.ERROR_MESSAGE );
        }
    }

    public void storeLinkToStorage()
    {
        if ( m_xStorage != null && m_bLinkObj )
        {
            try {
                XStream xLinkStream = m_xStorage.openStreamElement( "LinkName", ElementModes.ELEMENT_WRITE );

                if ( xLinkStream != null )
                {
                    XOutputStream xLinkOutStream = xLinkStream.getOutputStream();
                    XTruncate xTruncate = (XTruncate) UnoRuntime.queryInterface( XTruncate.class,
                                                                                 xLinkOutStream );
                    if ( xLinkOutStream != null && xTruncate != null )
                    {
                        xTruncate.truncate();

                        char[] aLinkChar = m_aLinkURI.toCharArray();
                        byte[] aLinkBytes = new byte[ aLinkChar.length ];
                        for ( int ind = 0; ind < aLinkChar.length; ind++ )
                            aLinkBytes[ind] = (byte)aLinkChar[ind];

                        xLinkOutStream.writeBytes( aLinkBytes );
                        xLinkOutStream.closeOutput();

                        XComponent xComponent = (XComponent) UnoRuntime.queryInterface( XComponent.class,
                                                                                        xLinkStream );
                        if ( xComponent != null )
                            xComponent.dispose();
                    }
                    else
                        JOptionPane.showMessageDialog( m_aFrame,
                                                        "The substream can not be truncated or written!",
                                                        "Error:",
                                                        JOptionPane.ERROR_MESSAGE );

                }
                else
                    JOptionPane.showMessageDialog( m_aFrame,
                                                    "Can't create/open substream!",
                                                    "Error:",
                                                    JOptionPane.ERROR_MESSAGE );
            }
            catch( Exception e )
            {
                JOptionPane.showMessageDialog( m_aFrame,
                                            e,
                                            "Exception in storeLinkToStorage:",
                                            JOptionPane.ERROR_MESSAGE );

            }
        }
    }

    public void storeLinkAsFileURI( String aFileURI )
    {
        try {
            Object oStorageFactory = m_xServiceFactory.createInstance( "com.sun.star.embed.StorageFactory" );
            XSingleServiceFactory xStorageFactory = (XSingleServiceFactory)UnoRuntime.queryInterface(
                                                                                        XSingleServiceFactory.class,
                                                                                        oStorageFactory );
            if ( xStorageFactory != null )
            {
                Object aArgs[] = new Object[2];
                aArgs[0] = aFileURI;
                aArgs[1] = Integer.valueOf( ElementModes.ELEMENT_READWRITE );

                Object oStorage = xStorageFactory.createInstanceWithArguments( aArgs );
                XStorage xTargetStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oStorage );

                XComponent xComponent = (XComponent)UnoRuntime.queryInterface( XComponent.class, m_xStorage );
                xComponent.dispose();

                m_xStorage = xTargetStorage;
                m_bOwnFile = true;

                storeLinkToStorage();

                XTransactedObject xTransact = (XTransactedObject)UnoRuntime.queryInterface( XTransactedObject.class,
                                                                                            m_xStorage );
                if ( xTransact != null )
                    xTransact.commit();
            }
            else
                JOptionPane.showMessageDialog( m_aFrame,
                                                "Can't create StorageFactory!",
                                                "Error:",
                                                JOptionPane.ERROR_MESSAGE );
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in saveStorageToFileURI():", JOptionPane.ERROR_MESSAGE );
        }
    }

    public String getValidURL( String sFileURL )
    {
        // m_xTransformer must be set!
        URL[] aURLs = { new URL() };
        aURLs[0].Complete = sFileURL;

        try {
            if ( !m_xTransformer.parseSmart( aURLs, "" ) )
                throw new Exception();
        }
        catch( Exception e )
        {
            JOptionPane.showMessageDialog( m_aFrame, e, "Exception in getValidURL():", JOptionPane.ERROR_MESSAGE );
        }

        return aURLs[0].Complete;
    }

    public void disposeObject()
    {
        // TODO:
        // usage of object, storage and bitmap painter should be locked
        // but since possibility of race condition is very low
        // it is not really required for testing application

        clearObjectAndStorage();

        if ( m_aBitmapPainter != null )
        {
            m_aBitmapPainter.disconnectListener();
            m_aBitmapPainter = null;
        }
    }
}