summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/viewfun5.cxx
blob: e015cc7aac6ce6803d400605d3d5bd4b6f6ee905 (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
/*************************************************************************
 *
 *  $RCSfile: viewfun5.cxx,v $
 *
 *  $Revision: 1.7 $
 *
 *  last change: $Author: nn $ $Date: 2001-03-23 19:24:39 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (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.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifdef PCH
#include "ui_pch.hxx"
#endif

#pragma hdrstop

//------------------------------------------------------------------

// TOOLS
#define _BIGINT_HXX
#define _SFXMULTISEL_HXX
#define _STACK_HXX
#define _QUEUE_HXX
#define _DYNARR_HXX
#define _TREELIST_HXX
#define _CACHESTR_HXX
#define _NEW_HXX
//#define _SHL_HXX
//#define _LINK_HXX
//#define _ERRCODE_HXX
//#define _GEN_HXX
//#define _FRACT_HXX
//#define _STRING_HXX
//#define _MTF_HXX
//#define _CONTNR_HXX
//#define _LIST_HXX
//#define _TABLE_HXX
#define _DYNARY_HXX
//#define _UNQIDX_HXX
#define _SVMEMPOOL_HXX
//#define _UNQID_HXX
//#define _DEBUG_HXX
//#define _DATE_HXX
//#define _TIME_HXX
//#define _DATETIME_HXX
//#define _INTN_HXX
//#define _WLDCRD_HXX
//#define _FSYS_HXX
//#define _STREAM_HXX
#define _CACHESTR_HXX
#define _SV_MULTISEL_HXX

//SV
//#define _CLIP_HXX ***
#define _CONFIG_HXX
#define _CURSOR_HXX
#define _FONTDLG_HXX
#define _PRVWIN_HXX
//#define _COLOR_HXX
//#define _PAL_HXX
//#define _BITMAP_HXX
//#define _GDIOBJ_HXX
//#define _POINTR_HXX
//#define _ICON_HXX
//#define _IMAGE_HXX
//#define _KEYCOD_HXX
//#define _EVENT_HXX
#define _HELP_HXX
//#define _APP_HXX
//#define _MDIAPP_HXX
//#define _TIMER_HXX
//#define _METRIC_HXX
//#define _REGION_HXX
//#define _OUTDEV_HXX
//#define _SYSTEM_HXX
//#define _VIRDEV_HXX
//#define _JOBSET_HXX
//#define _PRINT_HXX
//#define _WINDOW_HXX
//#define _SYSWIN_HXX
//#define _WRKWIN_HXX
#define _MDIWIN_HXX
//#define _FLOATWIN_HXX
//#define _DOCKWIN_HXX
//#define _CTRL_HXX
//#define _SCRBAR_HXX
//#define _BUTTON_HXX
//#define _IMAGEBTN_HXX
//#define _FIXED_HXX
//#define _GROUP_HXX
//#define _EDIT_HXX
//#define _COMBOBOX_HXX
//#define _LSTBOX_HXX
//#define _SELENG_HXX ***
//#define _SPLIT_HXX
#define _SPIN_HXX
//#define _FIELD_HXX
//#define _MOREBTN_HXX ***
//#define _TOOLBOX_HXX
//#define _STATUS_HXX ***
//#define _DIALOG_HXX
//#define _MSGBOX_HXX
//#define _SYSDLG_HXX
#define _FILDLG_HXX
//#define _PRNDLG_HXX
#define _COLDLG_HXX
//#define _TABDLG_HXX
#define _MENU_HXX
//#define _GDIMTF_HXX
//#define _POLY_HXX
//#define _ACCEL_HXX
//#define _GRAPH_HXX
#define _SOUND_HXX

#if defined  WIN
#define _MENUBTN_HXX
#endif

//svtools
#define _SCRWIN_HXX
#define _RULER_HXX
//#define _TABBAR_HXX
//#define _VALUESET_HXX
#define _STDMENU_HXX
//#define _STDCTRL_HXX
//#define _CTRLBOX_HXX
#define _CTRLTOOL_HXX
#define _EXTATTR_HXX
#define _FRM3D_HXX
#define _EXTATTR_HXX

//SVTOOLS
//#define _SVTREELIST_HXX ***
#define _FILTER_HXX
//#define _SVLBOXITM_HXX ***
//#define _SVTREEBOX_HXX ***
#define _SVICNVW_HXX
#define _SVTABBX_HXX

//sfxcore.hxx
//#define _SFXINIMGR_HXX ***
//#define _SFXCFGITEM_HXX
//#define _SFX_PRINTER_HXX
#define _SFXGENLINK_HXX
#define _SFXHINTPOST_HXX
//#define _SFXDOCINF_HXX
#define _SFXLINKHDL_HXX
//#define _SFX_PROGRESS_HXX

//sfxsh.hxx
//#define _SFXSH_HXX
///#define _PLUGAPPL_HXX
//#define _SFX_SHELL_HXX
//#define _SFXAPP_HXX
//#define _SFXDISPATCH_HXX
#define _SFXMSG_HXX
#define _SFXOBJFACE_HXX
#define _SFXREQUEST_HXX
#define _SFXMACRO_HXX


// SFX
#define _SFX_SAVEOPT_HXX
#define _SFXPRNMON_HXX
#define _INTRO_HXX
#define _SFXMSGDESCR_HXX
#define _SFXMSGPOOL_HXX
#define _SFXFILEDLG_HXX
#define _PASSWD_HXX
#define _SFXTBXCTRL_HXX
#define _SFXSTBITEM_HXX
#define _SFXMNUITEM_HXX
#define _SFXIMGMGR_HXX
#define _SFXTBXMGR_HXX
#define _SFXSTBMGR_HXX
#define _SFX_MINFITEM_HXX
#define _SFXEVENT_HXX
#define _SFX_CHILDALIGN_HXX
#define _SFXAPPWIN_HXX
#define _SFX_CHILDWIN_HXX
#define _SFXCTRLITEM_HXX


//sfxdoc.hxx
//#define _SFX_OBJSH_HXX
//#define _SFX_CLIENTSH_HXX
//#define _SFXDOCINF_HXX
//#define _SFX_OBJFAC_HXX
//#define _SFX_DOCFILT_HXX
//#define _SFXDOCFILE_HXX ***
//define _VIEWFAC_HXX
//#define _SFXVIEWFRM_HXX
//#define _SFXVIEWSH_HXX
//#define _MDIFRM_HXX ***
#define _SFX_IPFRM_HXX
//#define _SFX_INTERNO_HXX

//sfxdoc.hxx
//#define _SFXDOC_HXX
// --- #define _RSCSFX_HXX
//#define SFX_DECL_OBJECTSHELL_DEFINED
//#define _SFX_OBJSH_HXX
//#define _SFX_CLIENTSH_HXX
//#define _SFX_OBJFAC_HXX
#define _SFX_DOCFILT_HACK_HXX
#define _SFX_FCONTNR_HXX
#define STRING_LIST
//#define _SFXDOCFILE_HXX
//#define _SFX_INTERNO_HXX

//sfxdlg.hxx
//#define _SFXDLG_HXX
#define _DOCMGR_HXX
//#define _SFXITEMS_HXX
//#define _SFXTABDLG_HXX
#define _BASEDLGS_HXX
#define _SFX_DINFDLG_HXX
#define _SFXDINFEDT_HXX
#define _SFX_MGETEMPL_HXX
#define _SFX_TPLPITEM_HXX
#define _SFX_STYLEDLG_HXX
#define _NEWSTYLE_HXX
//#define SFX_DECL_OBJECTSHELL_DEFINED
#define _SFXDOCTEMPL_HXX
#define _SFXDOCTDLG_HXX
#define _SFXDOCKWIN_HXX
#define _SFX_TEMPLDLG_HXX
#define _SFXNEW_HXX
#define _SFXDOCMAN_HXX
#define _SFXNAVI_HXX


//sfxitems.hxx
#define _SFX_WHMAP_HXX
//#define _ARGS_HXX
//#define _SFXPOOLITEM_HXX
//#define _SFXINTITEM_HXX
//#define _SFXENUMITEM_HXX
#define _SFXFLAGITEM_HXX
//#define _SFXSTRITEM_HXX
//#define _SFXPTITEM_HXX
#define _SFXRECTITEM_HXX
//#define _SFXITEMPOOL_HXX
//#define _SFXITEMSET_HXX
#define _SFXITEMITER_HXX
#define _SFX_WHITER_HXX
#define _SFXPOOLCACH_HXX
//#define _AEITEM_HXX
#define _SFXRNGITEM_HXX
//#define _SFXSLSTITM_HXX
//#define _SFXSTYLE_HXX

//xout.hxx
//#define _XENUM_HXX
//#define _XPOLY_HXX
//#define _XATTR_HXX
//#define _XOUTX_HXX
//#define _XPOOL_HXX
//#define _XTABLE_HXX

//svdraw.hxx
#define _SDR_NOITEMS
#define _SDR_NOTOUCH
#define _SDR_NOTRANSFORM
#define _SDR_NOOBJECTS //*
//#define _SDR_NOVIEWS

//#define SI_NOITEMS
//#define SI_NODRW
#define _SI_NOSBXCONTROLS
//#define _VCATTR_HXX
#define _VCONT_HXX
//#define _VCSBX_HXX
#define _SI_NOOTHERFORMS
#define _VCTRLS_HXX
//#define _VCDRWOBJ_HXX
#define _SI_NOCONTROL
#define _SETBRW_HXX
#define _VCBRW_HXX
#define _SI_NOSBXCONTROLS
//#define _SIDLL_HXX ***

#ifdef WIN
#define _VCSBX_HXX
#define _VCDRWOBJ_HXX
#define _SBX_HXX
#endif

//view3d.hxx
//#define _E3D_VIEW3D_HXX

//obj3d.hxx
//#define _E3D_OBJ3D_HXX

//volume3d.hxx
//#define _VOLUME3D_HXX




#define _SVX_DAILDLL_HXX
#define _SVX_HYPHEN_HXX
#define _SVX_IMPGRF_HXX
#define _SVX_OPTITEMS_HXX
#define _SVX_OPTGERL_HXX
#define _SVX_OPTSAVE_HXX
#define _SVX_OPTSPELL_HXX
#define _SVX_OPTPATH_HXX
#define _SVX_OPTLINGU_HXX
#define _SVX_RULER_HXX
#define _SVX_RULRITEM_HXX
#define _SVX_SPLWRAP_HXX
#define _SVX_SPLDLG_HXX
#define _SVX_THESDLG_HXX


//------------------------------------------------------------------

#include <svx/dbexch.hrc>
#include <svx/fmmodel.hxx>
#include <svx/svdetc.hxx>
#include <svx/svditer.hxx>
#include <svx/svdobj.hxx>
#include <svx/svdogrp.hxx>
#include <svx/svdouno.hxx>
#include <svx/svdpage.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/docfile.hxx>
#include <so3/ipobj.hxx>
#include <so3/svstor.hxx>
#include <offmgr/app.hxx>
#include <so3/clsids.hxx>
#include <sot/formats.hxx>
#include <svtools/pathoptions.hxx>
#include <svtools/ptitem.hxx>
#include <svtools/stritem.hxx>
#include <svtools/transfer.hxx>
#include <vcl/drag.hxx>
#include <vcl/graph.hxx>

#include <sot/formats.hxx>
#define SOT_FORMATSTR_ID_STARCALC_CURRENT	SOT_FORMATSTR_ID_STARCALC_50

#ifndef SO2_DECL_SVINPLACEOBJECT_DEFINED
#define SO2_DECL_SVINPLACEOBJECT_DEFINED
SO2_DECL_REF(SvInPlaceObject)
#endif
#ifndef SO2_DECL_SVSTORAGE_DEFINED
#define SO2_DECL_SVSTORAGE_DEFINED
SO2_DECL_REF(SvStorage)
#endif

#include "viewfunc.hxx"
#include "docsh.hxx"
#include "drawview.hxx"
#include "impex.hxx"
#include "dbfunc.hxx"
#include "dbcolect.hxx"
#include "sc.hrc"
#include "filter.hxx"
#include "scextopt.hxx"
#include "tabvwsh.hxx"		//	wegen GetViewFrame
#include "compiler.hxx"

#ifndef _SFXVIEWFRM_HXX //autogen
#include <sfx2/viewfrm.hxx>
#endif

using namespace com::sun::star;

// STATIC DATA -----------------------------------------------------------

//==================================================================

BOOL ScViewFunc::PasteDataFormat( ULONG nFormatId, SvDataObject* pObject,
                                    USHORT nPosX, USHORT nPosY,
                                    Window* pWin, Point* pLogicPos )
{
    //!	pWin wird nicht mehr benutzt

    Point aPos;						//	Einfuege-Position (1/100 mm)
    if (pLogicPos)
        aPos = *pLogicPos;
    else
    {
        //	Bei Text-Formaten muss die Position nicht berechnet werden

        if ( !ScImportExport::IsFormatSupported( nFormatId )
                && nFormatId != FORMAT_RTF )
        {
            //	MapMode des Fensters ist hier noch nicht auf Drawing initialisiert,
            //	wenn der Drawing-Layer noch nicht angelegt ist

            ScDocument* pDoc = GetViewData()->GetDocument();
            USHORT nTab = GetViewData()->GetTabNo();
            USHORT i;
            long nXT = 0;
            for (i=0; i<nPosX; i++)
                nXT += pDoc->GetColWidth(i,nTab);
            long nYT = 0;
            for (i=0; i<nPosY; i++)
                nYT += pDoc->FastGetRowHeight(i,nTab);
            aPos = Point( (long)(nXT * HMM_PER_TWIPS), (long)(nYT * HMM_PER_TWIPS) );
        }
    }

    ULONG nSba	   = SOT_FORMATSTR_ID_SBA_DATAEXCHANGE;
    ULONG nField   = Exchange::RegisterFormatName(
        String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM(SBA_FIELDEXCHANGE_FORMAT)));
    ULONG nBiff	   = Exchange::RegisterFormatName(
        String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM("Biff5")));

    BOOL bRet = FALSE;

    if ( nFormatId == SOT_FORMATSTR_ID_EMBED_SOURCE ||
         nFormatId == SOT_FORMATSTR_ID_LINK_SOURCE ||
         nFormatId == SOT_FORMATSTR_ID_EMBED_SOURCE_OLE ||
         nFormatId == SOT_FORMATSTR_ID_LINK_SOURCE_OLE )
    {
        //	DLLs hier doch nicht initialisieren, ist schon in Main::Init passiert

        BOOL bStorFilled;
        const ULONG nScFormat = SOT_FORMATSTR_ID_STARCALC_CURRENT;

        SvStorageRef aStor = new SvStorage( EMPTY_STRING, STREAM_STD_READWRITE );
        if( SvFactory::IsOwnFormat( bStorFilled, pObject, nScFormat, &aStor )  )
        {
            if (bStorFilled)
            {
                // Eigenes Format

                ScDocShellRef xDocShRef = new ScDocShell(SFX_CREATE_MODE_EMBEDDED);
                if (xDocShRef->DoLoad(aStor))
                {
                    ScDocument* pSrcDoc = xDocShRef->GetDocument();
                    USHORT nSrcTab = pSrcDoc->GetVisibleTab();
                    if (!pSrcDoc->HasTable(nSrcTab))
                        nSrcTab = 0;

                    ScMarkData aSrcMark;
                    aSrcMark.SelectOneTable( nSrcTab );			// fuer CopyToClip
                    ScDocument* pClipDoc = new ScDocument( SCDOCMODE_CLIP );

                    USHORT nFirstCol, nFirstRow, nLastCol, nLastRow;
                    pSrcDoc->GetDataStart( nSrcTab, nFirstCol, nFirstRow );
                    pSrcDoc->GetCellArea( nSrcTab, nLastCol, nLastRow );
                    pSrcDoc->CopyToClip( nFirstCol, nFirstRow, nLastCol, nLastRow,
                                            FALSE, pClipDoc, FALSE, &aSrcMark );
                    ScGlobal::SetClipDocName( xDocShRef->GetTitle( SFX_TITLE_FULLNAME ) );

                    SetCursor( nPosX, nPosY );
                    Unmark();
                    PasteFromClip( IDF_ALL, pClipDoc );
                    delete pClipDoc;
                    bRet = TRUE;
                }
                ((SfxInPlaceObject*)xDocShRef)->DoClose();
                xDocShRef.Clear();
            }
        }
        else
        {
            BOOL bIsLink = ( nFormatId == SOT_FORMATSTR_ID_LINK_SOURCE ||
                             nFormatId == SOT_FORMATSTR_ID_LINK_SOURCE_OLE );
            SvInPlaceObjectRef aIPObj = &((SvFactory*)SvInPlaceObject::ClassFactory())
                                    ->CreateAndInit( pObject, aStor, bIsLink, bStorFilled );
            if ( aIPObj.Is() )
            {
                SvObjectDescriptor aDesc(pObject);
                Size aDescSize = aDesc.GetSize();

                PasteObject( aPos, aIPObj, &aDescSize );
                bRet = TRUE;
            }
            else
                DBG_ERROR("Fehler bei CreateAndInit");
        }
    }
    else if ( nFormatId == SOT_FORMATSTR_ID_LINK )
    {
        //!	warum ist Link bei ScImportExport eingetragen ???

        bRet = PasteDDE( pObject );
    }
    else if( ScImportExport::IsFormatSupported( nFormatId ) )
    {
        SvData aData( nFormatId );
        if (pObject->GetData( &aData ))
        {
            ScDocument* pDoc = GetViewData()->GetDocument();
            ScAddress aPos( nPosX, nPosY, GetViewData()->GetTabNo() );
            ScImportExport aObj( GetViewData()->GetDocument(), aPos );
            bRet = aObj.ImportData( aData );
            InvalidateAttribs();
            GetViewData()->UpdateInputHandler();
        }
    }
    else if (nFormatId == SOT_FORMATSTR_ID_SVXB)
    {
        SvData aData( SOT_FORMATSTR_ID_SVXB );
        if (pObject->GetData( &aData ))
        {
            Graphic* pGraphic;
            if ( aData.GetData( (SvDataCopyStream**) &pGraphic,
                                Graphic::StaticType(), TRANSFER_MOVE ) )
                bRet = PasteGraphic( aPos, *pGraphic, EMPTY_STRING, EMPTY_STRING );
        }
    }
    else if (nFormatId == SOT_FORMATSTR_ID_DRAWING)				// SvDraw Model
    {
        SvData aData( SOT_FORMATSTR_ID_DRAWING );
        if (pObject->GetData( &aData ))
        {
            SvStorageStreamRef aStrm;

            if ( aData.GetData(aStrm) )
            {
                MakeDrawLayer();	// vorher, damit die 3D-Factory angelegt ist

                SvtPathOptions aPathOpt;
                String aPath = aPathOpt.GetPalettePath();
                FmFormModel* pModel = new FmFormModel(
                                        aPath, NULL, GetViewData()->GetDocShell() );
                pModel->GetItemPool().FreezeIdRanges();
                aStrm->Seek(0);

                //	SdrModel stream operator doesn't support XML
                //!	call XML export here!
                aStrm->SetVersion(SOFFICE_FILEFORMAT_50);

                pModel->SetStreamingSdrModel(TRUE);
                pModel->GetItemPool().Load(*aStrm);
                *aStrm >> *pModel;
                pModel->SetStreamingSdrModel(FALSE);

                                            // alles auf passenden Layer setzen:
                ULONG nObjCount = 0;
                USHORT nPages = pModel->GetPageCount();
                for (USHORT i=0; i<nPages; i++)
                {
                    SdrPage* pPage = pModel->GetPage(i);
                    SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS );
                    SdrObject* pObject = aIter.Next();
                    while (pObject)
                    {
                        ++nObjCount;
                        if ( pObject->ISA(SdrUnoObj) )
                            pObject->NbcSetLayer(SC_LAYER_CONTROLS);
                        else
                            pObject->NbcSetLayer(SC_LAYER_FRONT);
                        pObject = aIter.Next();
                    }
                }

                PasteDraw( aPos, pModel, (nObjCount > 1) );		// gruppiert, wenn mehr als 1
                delete pModel;
                bRet = TRUE;
            }
        }
    }
    else if (nFormatId == nSba)
    {
        //!	char or sal_Unicode from sba ???

        ULONG nLen = DragServer::GetDataLen(0, nSba);
        char* pTxt = new char[nLen];
        DragServer::PasteData(0, pTxt, nLen, nSba);		// String ist 0-terminiert
        String sDataDesc = String::CreateFromAscii(pTxt);
        delete[] pTxt;
        SfxStringItem aDataDesc(SID_SBA_IMPORT, sDataDesc);

        ScDocShell* pDocSh = GetViewData()->GetDocShell();
        ScDocument* pDoc = pDocSh->GetDocument();
        USHORT nTab = GetViewData()->GetTabNo();

        ClickCursor(nPosX, nPosY, FALSE);				// Cursor setzen

        //	Datenbank-Bereich "Import1" wird hier nicht mehr angelegt,
        //	sondern erst beim Slot-Execute an der DocShell, damit er ins
        //	Undo aufgenommen werden kann.

        ScDBData* pDBData = pDocSh->GetDBData( ScRange(nPosX,nPosY,nTab), SC_DB_OLD, FALSE );
        String sTarget;
        if (pDBData)
            sTarget = pDBData->GetName();
        else
        {
            ScAddress aPos( nPosX,nPosY,nTab );
            aPos.Format( sTarget, SCA_ABS_3D, pDoc );
        }
        SfxStringItem aTarget(FN_PARAM_1, sTarget);

        BOOL bAreaIsNew = !pDBData;
        SfxBoolItem aAreaNew(FN_PARAM_2, bAreaIsNew);

        //	asynchron, damit nicht der ganze Import im Drop-Handler passiert
        SfxDispatcher& rDisp = GetViewData()->GetDispatcher();
        rDisp.Execute(SID_SBA_IMPORT, SFX_CALLMODE_ASYNCHRON,
                                    &aDataDesc, &aTarget, &aAreaNew, 0L );

        bRet = TRUE;
    }
    else if (nFormatId == nField)
    {
        SvData aData(nFormatId);
        if ( pObject->GetData(&aData) )
        {
            String aString;
            if ( aData.GetData(aString) )
            {
                MakeDrawLayer();
                ScDrawView* pDrawView = GetScDrawView();
                SdrObject* pObj = pDrawView->CreateFieldControl(aString);
                if (pObj)
                {
                    Point aInsPos = aPos;
                    Rectangle aRect(pObj->GetLogicRect());
                    aInsPos.X() -= aRect.GetSize().Width()  / 2;
                    aInsPos.Y() -= aRect.GetSize().Height() / 2;
                    if ( aInsPos.X() < 0 ) aInsPos.X() = 0;
                    if ( aInsPos.Y() < 0 ) aInsPos.Y() = 0;
                    aRect.SetPos(aInsPos);
                    pObj->SetLogicRect(aRect);

                    if ( pObj->ISA(SdrUnoObj) )
                        pObj->NbcSetLayer(SC_LAYER_CONTROLS);
                    else
                        pObj->NbcSetLayer(SC_LAYER_FRONT);
                    if (pObj->ISA(SdrObjGroup))
                    {
                        SdrObjListIter aIter( *pObj, IM_DEEPWITHGROUPS );
                        SdrObject* pSubObj = aIter.Next();
                        while (pSubObj)
                        {
                            if ( pSubObj->ISA(SdrUnoObj) )
                                pSubObj->NbcSetLayer(SC_LAYER_CONTROLS);
                            else
                                pSubObj->NbcSetLayer(SC_LAYER_FRONT);
                            pSubObj = aIter.Next();
                        }
                    }

                    pDrawView->InsertObjectSafe(pObj, *pDrawView->GetPageViewPvNum(0));

                    GetViewData()->GetViewShell()->SetDrawShell( TRUE );
                    bRet = TRUE;
                }
            }
        }
    }
    else if (nFormatId == nBiff)
    {
        //	Excel-Import in ein Clipboard-Dokument...

        SvData aData( nBiff, MEDIUM_STORAGE );
        if (pObject->GetData( &aData ))
        {
            SvStorageRef pStor;
            if ( aData.GetData( pStor, TRANSFER_REFERENCE ) && pStor.Is() )
            {
#if 0
                SvStorage aDest( "d:\\test.xls" );	// wenn man sich ansehen will,
                pStor->CopyTo( &aDest );			// was da wirklich im Clipboard steht
#endif
                ScDocument* pDoc = GetViewData()->GetDocument();
                ScDocument* pInsDoc = new ScDocument( SCDOCMODE_CLIP );
                USHORT nSrcTab = 0;		// Biff5 im Clipboard: immer Tabelle 0
                pInsDoc->ResetClip( pDoc, nSrcTab );

                SfxMedium aMed( pStor, TRUE );
                FltError eErr = ScImportExcel( aMed, pInsDoc, EIF_AUTO );
                if ( eErr == eERR_OK )
                {
                    ScRange aSource;
                    const ScExtDocOptions* pExtOpt = pInsDoc->GetExtDocOptions();
                    const ScExtTabOptions* pTabOpt = pExtOpt ?
                                            pExtOpt->GetExtTabOptions(nSrcTab) : NULL;
                    if ( pTabOpt && pTabOpt->bValidDim &&
                            pTabOpt->aDim.aEnd.Col() > pTabOpt->aDim.aStart.Col() &&
                            pTabOpt->aDim.aEnd.Row() > pTabOpt->aDim.aStart.Row() )
                    {
                        //	das Ende zeigt direkt hinter den Datenbereich
                        aSource = ScRange(
                            pTabOpt->aDim.aStart.Col(), pTabOpt->aDim.aStart.Row(), nSrcTab,
                            pTabOpt->aDim.aEnd.Col()-1, pTabOpt->aDim.aEnd.Row()-1, nSrcTab );
                        //	die Selektion kann groesser als der belegte Bereich sein
                        if ( pTabOpt->bValidSel )
                        {
                            if ( pTabOpt->aLastSel.aStart.Col() < aSource.aStart.Col() )
                                aSource.aStart.SetCol( pTabOpt->aLastSel.aStart.Col() );
                            if ( pTabOpt->aLastSel.aStart.Row() < aSource.aStart.Row() )
                                aSource.aStart.SetRow( pTabOpt->aLastSel.aStart.Row() );
                            //	in der Selektion ist das Ende wirklich das Ende
                            if ( pTabOpt->aLastSel.aEnd.Col() > aSource.aEnd.Col() )
                                aSource.aEnd.SetCol( pTabOpt->aLastSel.aEnd.Col() );
                            if ( pTabOpt->aLastSel.aEnd.Row() > aSource.aEnd.Row() )
                                aSource.aEnd.SetRow( pTabOpt->aLastSel.aEnd.Row() );
                        }
                    }
                    else
                    {
                        DBG_ERROR("keine Dimension");	//!	kann das vorkommen?
                        USHORT nFirstCol, nFirstRow, nLastCol, nLastRow;
                        pInsDoc->GetDataStart( nSrcTab, nFirstCol, nFirstRow );
                        pInsDoc->GetCellArea( nSrcTab, nLastCol, nLastRow );
                        aSource = ScRange( nFirstCol, nFirstRow, nSrcTab,
                                            nLastCol, nLastRow, nSrcTab );
                    }

                    if ( pLogicPos )
                    {
                        // Position angegeben (Drag&Drop) - Selektion umsetzen
                        MoveCursorAbs( nPosX, nPosY, SC_FOLLOW_NONE, FALSE, FALSE );
                        Unmark();
                    }

                    pInsDoc->SetClipArea( aSource );
                    PasteFromClip(IDF_ALL, pInsDoc);
                    delete pInsDoc;

                    bRet = TRUE;
                }
            }
        }
    }
    else switch (nFormatId)
    {
        case FORMAT_RTF:
            PasteRTF( nPosX, nPosY, pObject );					// -> viewfun4		//! Cursor
            bRet = TRUE;
            InvalidateAttribs();
            GetViewData()->UpdateInputHandler();
            break;

        case FORMAT_BITMAP:
            {
                SvData aData( FORMAT_BITMAP );
                if (pObject->GetData( &aData ))
                {
                    Bitmap* pBitmap = NULL;
                    aData.GetData(&pBitmap, TRANSFER_MOVE);
                    if( pBitmap )
                        bRet = PasteBitmap( aPos, *pBitmap );
                }
            }
            break;

        case FORMAT_GDIMETAFILE:
            {
                SvData aData( FORMAT_GDIMETAFILE );
                if (pObject->GetData( &aData ))
                {
                    GDIMetaFile* pMtf = NULL;
//					aData.GetData(&pMtf, TRANSFER_MOVE);
                    aData.GetData(&pMtf, TRANSFER_REFERENCE);
                    if( pMtf )
                        bRet = PasteMetaFile( aPos, *pMtf );
                }
            }
            break;

        case FORMAT_FILE:
            {
                USHORT nCount = DragServer::GetItemCount();
                if (nCount == 0)	// nur wenn nicht ueber D&D
                {
                    SvData aData( FORMAT_FILE );
                    if (pObject->GetData( &aData ))
                    {
                        String aFile;
                        aData.GetData( aFile );
                        bRet = PasteFile( aPos, aFile );
                    }
                }
                else
                {
                    // Vielleicht kann MM das Format ja eines Tages...
                    for( USHORT i = 0; i < nCount ; i++ )
                    {
//						PasteFile( aPos, DragServer::PasteFile( i ) );

                        String aFile = DragServer::PasteFile( i );
                        SfxStringItem aNameItem( FID_INSERT_FILE, aFile );
                        SfxPointItem aPosItem( FN_PARAM_1, aPos );
                        SfxDispatcher* pDisp =
                            GetViewData()->GetViewShell()->GetViewFrame()->GetDispatcher();
                        if (pDisp)
                            pDisp->Execute( FID_INSERT_FILE, SFX_CALLMODE_ASYNCHRON,
                                                &aNameItem, &aPosItem, (void*)0 );

                        aPos.X() += 400;
                        aPos.Y() += 400;
                    }
                    bRet = TRUE;
                }
            }
            break;

        default:
            {
                DBG_ERROR("PasteDataFormat - unbekanntes Format");
            }
    }

    return bRet;
}

BOOL ScViewFunc::PasteDDE( SvDataObject* pObject )
{
    const SvDataTypeList& rTypeLst = pObject->GetTypeList();

        // Groesse testen (nur wenn auch String angeboten)

    USHORT nCols = 1;
    USHORT nRows = 1;
    if ( rTypeLst.Get( FORMAT_STRING ) )
    {
        SvData aSizeData( FORMAT_STRING );
        if (pObject->GetData( &aSizeData ))
        {
            String aDataStr;
            aSizeData.GetData( aDataStr );

            //	Groesse aus String hier genauso wie in ScDdeLink::DataChanged

            aDataStr.ConvertLineEnd(LINEEND_LF);
            xub_StrLen nLen = aDataStr.Len();
            if (nLen && aDataStr.GetChar(nLen-1) == '\n')
                aDataStr.Erase(nLen-1);

            if (aDataStr.Len())
            {
                nRows = aDataStr.GetTokenCount( '\n' );
                String aLine = aDataStr.GetToken( 0, '\n' );
                if (aLine.Len())
                    nCols = aLine.GetTokenCount( '\t' );
            }
        }
    }

        // Formel zusammenbauen

    SvData aData( SOT_FORMATSTR_ID_LINK );
    if ( !pObject->GetData( &aData ) )
    {
        DBG_ERROR("DDE Data not found.");
        return FALSE;
    }

    void *pData;
    if( !aData.GetData( &pData, TRANSFER_REFERENCE ) )
    {
        DBG_ERROR("DDE Falsches Medium.");
        return FALSE;
    }

    //!	char or sal_Unicode from dde ???

    rtl_TextEncoding eSysEnc = gsl_getSystemTextEncoding();
    String aApp  ( (char*)pData, eSysEnc );
    String aTopic( (char*)pData + aApp.Len() + 1, eSysEnc );
    String aItem ( (char*)pData + aApp.Len() + aTopic.Len() + 2, eSysEnc );

    if (!ScCompiler::pSymbolTableNative)
    {
        DBG_ERROR("ScCompiler::pSymbolTableNative missing");
        return FALSE;
    }

    //!	use tokens
    String aFormula( '=' );
    aFormula += ScCompiler::pSymbolTableNative[SC_OPCODE_DDE];
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("(\""));
    aFormula += aApp;
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("\";\""));
    aFormula += aTopic;
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("\";\""));
    aFormula += aItem;
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("\")"));

        //	Block markieren

    USHORT nTab = GetViewData()->GetTabNo();
    USHORT nCurX = GetViewData()->GetCurX();
    USHORT nCurY = GetViewData()->GetCurY();
    HideAllCursors();
    DoneBlockMode();
    InitBlockMode( nCurX, nCurY, nTab );
    MarkCursor( nCurX+nCols-1, nCurY+nRows-1, nTab );
    ShowAllCursors();

        //	Formel eingeben

    EnterMatrix( aFormula );
    CursorPosChanged();

    return TRUE;
}

//------------------------------------------------------------------

//	using new clipboard interface:

BOOL ScViewFunc::PasteDataFormat( ULONG nFormatId,
                    const uno::Reference<datatransfer::XTransferable>& rxTransferable,
                    USHORT nPosX, USHORT nPosY, Point* pLogicPos )
{
    Point aPos;						//	inserting position (1/100 mm)
    if (pLogicPos)
        aPos = *pLogicPos;
    else
    {
        //	inserting position isn't needed for text formats
        BOOL bIsTextFormat = ( ScImportExport::IsFormatSupported( nFormatId ) ||
                                nFormatId == FORMAT_RTF );
        if ( !bIsTextFormat )
        {
            //	Window MapMode isn't drawing MapMode if DrawingLayer hasn't been created yet

            ScDocument* pDoc = GetViewData()->GetDocument();
            USHORT nTab = GetViewData()->GetTabNo();
            USHORT i;
            long nXT = 0;
            for (i=0; i<nPosX; i++)
                nXT += pDoc->GetColWidth(i,nTab);
            long nYT = 0;
            for (i=0; i<nPosY; i++)
                nYT += pDoc->FastGetRowHeight(i,nTab);
            aPos = Point( (long)(nXT * HMM_PER_TWIPS), (long)(nYT * HMM_PER_TWIPS) );
        }
    }

    TransferableDataHelper aDataHelper( rxTransferable );
    BOOL bRet = FALSE;

    //
    //	handle individual formats
    //

    if ( nFormatId == SOT_FORMATSTR_ID_EMBED_SOURCE ||
         nFormatId == SOT_FORMATSTR_ID_LINK_SOURCE ||
         nFormatId == SOT_FORMATSTR_ID_EMBED_SOURCE_OLE ||
         nFormatId == SOT_FORMATSTR_ID_LINK_SOURCE_OLE )
    {
        SotStorageStreamRef				xStm;
        TransferableObjectDescriptor	aObjDesc;

        if( aDataHelper.GetTransferableObjectDescriptor( SOT_FORMATSTR_ID_OBJECTDESCRIPTOR, aObjDesc ) &&
            aDataHelper.GetSotStorageStream( nFormatId, xStm ) )
        {
            SvStorageRef xStore( new SvStorage( *xStm ) );
            if ( aObjDesc.maClassName == SvGlobalName( SO3_SC_CLASSID_30 ) ||
                 aObjDesc.maClassName == SvGlobalName( SO3_SC_CLASSID_40 ) ||
                 aObjDesc.maClassName == SvGlobalName( SO3_SC_CLASSID_50 ) ||
                 aObjDesc.maClassName == SvGlobalName( SO3_SC_CLASSID_60 ) )
            {
                //	own format (including old formats)
                ScDocShellRef xDocShRef = new ScDocShell(SFX_CREATE_MODE_EMBEDDED);
                if (xDocShRef->DoLoad(xStore))
                {
                    ScDocument* pSrcDoc = xDocShRef->GetDocument();
                    USHORT nSrcTab = pSrcDoc->GetVisibleTab();
                    if (!pSrcDoc->HasTable(nSrcTab))
                        nSrcTab = 0;

                    ScMarkData aSrcMark;
                    aSrcMark.SelectOneTable( nSrcTab );			// for CopyToClip
                    ScDocument* pClipDoc = new ScDocument( SCDOCMODE_CLIP );

                    USHORT nFirstCol, nFirstRow, nLastCol, nLastRow;
                    if ( pSrcDoc->GetDataStart( nSrcTab, nFirstCol, nFirstRow ) )
                        pSrcDoc->GetCellArea( nSrcTab, nLastCol, nLastRow );
                    else
                        nFirstCol = nFirstRow = nLastCol = nLastRow = 0;
                    pSrcDoc->CopyToClip( nFirstCol, nFirstRow, nLastCol, nLastRow,
                                            FALSE, pClipDoc, FALSE, &aSrcMark );
                    ScGlobal::SetClipDocName( xDocShRef->GetTitle( SFX_TITLE_FULLNAME ) );

                    SetCursor( nPosX, nPosY );
                    Unmark();
                    PasteFromClip( IDF_ALL, pClipDoc );
                    delete pClipDoc;
                    bRet = TRUE;
                }
                ((SfxInPlaceObject*)xDocShRef)->DoClose();
                xDocShRef.Clear();
            }
            else
            {
                SvInPlaceObjectRef xIPObj = &( (SvFactory*) SvInPlaceObject::ClassFactory() )->CreateAndLoad( xStore );
                if ( xIPObj.Is() )
                {
                    PasteObject( aPos, xIPObj, &aObjDesc.maSize );
                    bRet = TRUE;
                }
                else
                    DBG_ERROR("Error in CreateAndLoad");
            }
        }
    }
    else if ( nFormatId == SOT_FORMATSTR_ID_LINK )		// LINK is also in ScImportExport
    {
        bRet = PasteDDE( rxTransferable );
    }
    else if ( ScImportExport::IsFormatSupported( nFormatId ) || nFormatId == SOT_FORMAT_RTF )
    {
        if ( nFormatId == SOT_FORMAT_RTF && aDataHelper.HasFormat( SOT_FORMATSTR_ID_EDITENGINE ) )
        {
            //!	use EditView's PasteSpecial / Drop
        }

        ScAddress aPos( nPosX, nPosY, GetViewData()->GetTabNo() );
        ScImportExport aObj( GetViewData()->GetDocument(), aPos );

        String aStr;
        SotStorageStreamRef xStream;
        if ( aDataHelper.GetSotStorageStream( nFormatId, xStream ) && xStream.Is() )
            bRet = aObj.ImportStream( *xStream, nFormatId );
        else if ( aDataHelper.GetString( nFormatId, aStr ) )
            bRet = aObj.ImportString( aStr, nFormatId );

        InvalidateAttribs();
        GetViewData()->UpdateInputHandler();
    }
    else if (nFormatId == SOT_FORMATSTR_ID_SBA_DATAEXCHANGE)
    {
        //	import of database data into table

        String sDataDesc;
        if ( aDataHelper.GetString( nFormatId, sDataDesc ) )
        {
            SfxStringItem aDataDesc(SID_SBA_IMPORT, sDataDesc);

            ScDocShell* pDocSh = GetViewData()->GetDocShell();
            ScDocument* pDoc = pDocSh->GetDocument();
            USHORT nTab = GetViewData()->GetTabNo();

            ClickCursor(nPosX, nPosY, FALSE);				// set cursor position

            //	Creation of database area "Import1" isn't here, but in the DocShell
            //	slot execute, so it can be added to the undo action

            ScDBData* pDBData = pDocSh->GetDBData( ScRange(nPosX,nPosY,nTab), SC_DB_OLD, FALSE );
            String sTarget;
            if (pDBData)
                sTarget = pDBData->GetName();
            else
            {
                ScAddress aPos( nPosX,nPosY,nTab );
                aPos.Format( sTarget, SCA_ABS_3D, pDoc );
            }
            SfxStringItem aTarget(FN_PARAM_1, sTarget);

            BOOL bAreaIsNew = !pDBData;
            SfxBoolItem aAreaNew(FN_PARAM_2, bAreaIsNew);

            //	asynchronous, to avoid doing the whole import in drop handler
            SfxDispatcher& rDisp = GetViewData()->GetDispatcher();
            rDisp.Execute(SID_SBA_IMPORT, SFX_CALLMODE_ASYNCHRON,
                                        &aDataDesc, &aTarget, &aAreaNew, 0L );

            bRet = TRUE;
        }
    }
    else if (nFormatId == SOT_FORMATSTR_ID_SBA_FIELDDATAEXCHANGE)
    {
        //	insert database field control

        String aString;
        if ( aDataHelper.GetString( nFormatId, aString ) )
        {
            MakeDrawLayer();
            ScDrawView* pDrawView = GetScDrawView();
            SdrObject* pObj = pDrawView->CreateFieldControl(aString);
            if (pObj)
            {
                Point aInsPos = aPos;
                Rectangle aRect(pObj->GetLogicRect());
                aInsPos.X() -= aRect.GetSize().Width()  / 2;
                aInsPos.Y() -= aRect.GetSize().Height() / 2;
                if ( aInsPos.X() < 0 ) aInsPos.X() = 0;
                if ( aInsPos.Y() < 0 ) aInsPos.Y() = 0;
                aRect.SetPos(aInsPos);
                pObj->SetLogicRect(aRect);

                if ( pObj->ISA(SdrUnoObj) )
                    pObj->NbcSetLayer(SC_LAYER_CONTROLS);
                else
                    pObj->NbcSetLayer(SC_LAYER_FRONT);
                if (pObj->ISA(SdrObjGroup))
                {
                    SdrObjListIter aIter( *pObj, IM_DEEPWITHGROUPS );
                    SdrObject* pSubObj = aIter.Next();
                    while (pSubObj)
                    {
                        if ( pSubObj->ISA(SdrUnoObj) )
                            pSubObj->NbcSetLayer(SC_LAYER_CONTROLS);
                        else
                            pSubObj->NbcSetLayer(SC_LAYER_FRONT);
                        pSubObj = aIter.Next();
                    }
                }

                pDrawView->InsertObjectSafe(pObj, *pDrawView->GetPageViewPvNum(0));

                GetViewData()->GetViewShell()->SetDrawShell( TRUE );
                bRet = TRUE;
            }
        }
    }
    else if (nFormatId == SOT_FORMAT_BITMAP)
    {
        Bitmap aBmp;
        if( aDataHelper.GetBitmap( FORMAT_BITMAP, aBmp ) )
            bRet = PasteBitmap( aPos, aBmp );
    }
    else if (nFormatId == SOT_FORMAT_GDIMETAFILE)
    {
        GDIMetaFile aMtf;
        if( aDataHelper.GetGDIMetaFile( FORMAT_GDIMETAFILE, aMtf ) )
            bRet = PasteMetaFile( aPos, aMtf );
    }
    else if (nFormatId == SOT_FORMATSTR_ID_SVXB)
    {
        SotStorageStreamRef xStm;
        if( aDataHelper.GetSotStorageStream( SOT_FORMATSTR_ID_SVXB, xStm ) )
        {
            Graphic aGraphic;
            *xStm >> aGraphic;
            bRet = PasteGraphic( aPos, aGraphic, EMPTY_STRING, EMPTY_STRING );
        }
    }
    else if ( nFormatId == SOT_FORMATSTR_ID_DRAWING )
    {
        SotStorageStreamRef xStm;
        if( aDataHelper.GetSotStorageStream( SOT_FORMATSTR_ID_DRAWING, xStm ) )
        {
            MakeDrawLayer();	// before loading model, so 3D factory has been created

            SvtPathOptions aPathOpt;
            String aPath = aPathOpt.GetPalettePath();
            FmFormModel* pModel = new FmFormModel(
                                    aPath, NULL, GetViewData()->GetDocShell() );
            pModel->GetItemPool().FreezeIdRanges();
            xStm->Seek(0);

            //	SdrModel stream operator doesn't support XML
            //!	call XML export here!
            xStm->SetVersion(SOFFICE_FILEFORMAT_50);

            pModel->SetStreamingSdrModel(TRUE);
            pModel->GetItemPool().Load(*xStm);
            *xStm >> *pModel;
            pModel->SetStreamingSdrModel(FALSE);

                                        // set everything to right layer:
            ULONG nObjCount = 0;
            USHORT nPages = pModel->GetPageCount();
            for (USHORT i=0; i<nPages; i++)
            {
                SdrPage* pPage = pModel->GetPage(i);
                SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS );
                SdrObject* pObject = aIter.Next();
                while (pObject)
                {
                    ++nObjCount;
                    if ( pObject->ISA(SdrUnoObj) )
                        pObject->NbcSetLayer(SC_LAYER_CONTROLS);
                    else
                        pObject->NbcSetLayer(SC_LAYER_FRONT);
                    pObject = aIter.Next();
                }
            }

            PasteDraw( aPos, pModel, (nObjCount > 1) );		// grouped if more than 1 object
            delete pModel;
            bRet = TRUE;
        }
    }
    else if ( nFormatId == SOT_FORMATSTR_ID_BIFF_5 )
    {
        //	do excel import into a clipboard document

        SotStorageStreamRef xStm;
        if( aDataHelper.GetSotStorageStream( SOT_FORMATSTR_ID_BIFF_5, xStm ) )
        {
            SvStorageRef pStor = new SvStorage( *xStm );
#if 0
            SvStorage aDest( "d:\\test.xls" );	// to see the file
            pStor->CopyTo( &aDest );
#endif
            ScDocument* pDoc = GetViewData()->GetDocument();
            ScDocument* pInsDoc = new ScDocument( SCDOCMODE_CLIP );
            USHORT nSrcTab = 0;		// Biff5 in clipboard: always sheet 0
            pInsDoc->ResetClip( pDoc, nSrcTab );

            SfxMedium aMed( pStor, TRUE );
            FltError eErr = ScImportExcel( aMed, pInsDoc, EIF_AUTO );
            if ( eErr == eERR_OK )
            {
                ScRange aSource;
                const ScExtDocOptions* pExtOpt = pInsDoc->GetExtDocOptions();
                const ScExtTabOptions* pTabOpt = pExtOpt ?
                                        pExtOpt->GetExtTabOptions(nSrcTab) : NULL;
                if ( pTabOpt && pTabOpt->bValidDim &&
                        pTabOpt->aDim.aEnd.Col() > pTabOpt->aDim.aStart.Col() &&
                        pTabOpt->aDim.aEnd.Row() > pTabOpt->aDim.aStart.Row() )
                {
                    //	"end" points behind the data area
                    aSource = ScRange(
                        pTabOpt->aDim.aStart.Col(), pTabOpt->aDim.aStart.Row(), nSrcTab,
                        pTabOpt->aDim.aEnd.Col()-1, pTabOpt->aDim.aEnd.Row()-1, nSrcTab );
                    //	selection can be bigger than the used area
                    if ( pTabOpt->bValidSel )
                    {
                        if ( pTabOpt->aLastSel.aStart.Col() < aSource.aStart.Col() )
                            aSource.aStart.SetCol( pTabOpt->aLastSel.aStart.Col() );
                        if ( pTabOpt->aLastSel.aStart.Row() < aSource.aStart.Row() )
                            aSource.aStart.SetRow( pTabOpt->aLastSel.aStart.Row() );
                        //	"end" in selection is really the end
                        if ( pTabOpt->aLastSel.aEnd.Col() > aSource.aEnd.Col() )
                            aSource.aEnd.SetCol( pTabOpt->aLastSel.aEnd.Col() );
                        if ( pTabOpt->aLastSel.aEnd.Row() > aSource.aEnd.Row() )
                            aSource.aEnd.SetRow( pTabOpt->aLastSel.aEnd.Row() );
                    }
                }
                else
                {
                    DBG_ERROR("no dimension");	//!	possible?
                    USHORT nFirstCol, nFirstRow, nLastCol, nLastRow;
                    if ( pInsDoc->GetDataStart( nSrcTab, nFirstCol, nFirstRow ) )
                        pInsDoc->GetCellArea( nSrcTab, nLastCol, nLastRow );
                    else
                        nFirstCol = nFirstRow = nLastCol = nLastRow = 0;
                    aSource = ScRange( nFirstCol, nFirstRow, nSrcTab,
                                        nLastCol, nLastRow, nSrcTab );
                }

                if ( pLogicPos )
                {
                    // position specified (Drag&Drop) - change selection
                    MoveCursorAbs( nPosX, nPosY, SC_FOLLOW_NONE, FALSE, FALSE );
                    Unmark();
                }

                pInsDoc->SetClipArea( aSource );
                PasteFromClip(IDF_ALL, pInsDoc);
                delete pInsDoc;

                bRet = TRUE;
            }
        }
    }
    else if ( nFormatId == SOT_FORMAT_FILE )
    {
        USHORT nCount = DragServer::GetItemCount();
        if (nCount == 0)	// normal handling (not D&D)
        {
            String aFile;
            if ( aDataHelper.GetString( nFormatId, aFile ) )
                bRet = PasteFile( aPos, aFile );
        }
        else		// use multiple items from drag server
        {
            for( USHORT i = 0; i < nCount ; i++ )
            {
                String aFile = DragServer::PasteFile( i );
                SfxStringItem aNameItem( FID_INSERT_FILE, aFile );
                SfxPointItem aPosItem( FN_PARAM_1, aPos );
                SfxDispatcher* pDisp =
                    GetViewData()->GetViewShell()->GetViewFrame()->GetDispatcher();
                if (pDisp)
                    pDisp->Execute( FID_INSERT_FILE, SFX_CALLMODE_ASYNCHRON,
                                        &aNameItem, &aPosItem, (void*)0 );

                aPos.X() += 400;
                aPos.Y() += 400;
            }
            bRet = TRUE;
        }
    }

    return bRet;
}

String lcl_GetSubString( sal_Char* pData, long nStart, long nDataSize, rtl_TextEncoding eEncoding )
{
    if ( nDataSize <= nStart /* || pData[nDataSize] != 0 */ )
    {
        DBG_ERROR("DDE Data: invalid data");
        return String();
    }
    return String( pData + nStart, eEncoding );
}

BOOL ScViewFunc::PasteDDE( const uno::Reference<datatransfer::XTransferable>& rxTransferable )
{
    TransferableDataHelper aDataHelper( rxTransferable );

    //	check size (only if string is available in transferable)

    USHORT nCols = 1;
    USHORT nRows = 1;
    if ( aDataHelper.HasFormat( SOT_FORMAT_STRING ) )
    {
        String aDataStr;
        if ( aDataHelper.GetString( SOT_FORMAT_STRING, aDataStr ) )
        {
            //	get size from string the same way as in ScDdeLink::DataChanged

            aDataStr.ConvertLineEnd(LINEEND_LF);
            xub_StrLen nLen = aDataStr.Len();
            if (nLen && aDataStr.GetChar(nLen-1) == '\n')
                aDataStr.Erase(nLen-1);

            if (aDataStr.Len())
            {
                nRows = aDataStr.GetTokenCount( '\n' );
                String aLine = aDataStr.GetToken( 0, '\n' );
                if (aLine.Len())
                    nCols = aLine.GetTokenCount( '\t' );
            }
        }
    }

    //	create formula

    uno::Sequence<sal_Int8> aSequence;
    if ( !aDataHelper.GetSequence( SOT_FORMATSTR_ID_LINK, aSequence ) )
    {
        DBG_ERROR("DDE Data not found.");
        return FALSE;
    }
    long nSeqLen = aSequence.getLength();
    sal_Char* pData = (sal_Char*)aSequence.getConstArray();
    
    rtl_TextEncoding eSysEnc = gsl_getSystemTextEncoding();

    String aApp   = lcl_GetSubString( pData, 0, nSeqLen, eSysEnc );
    String aTopic = lcl_GetSubString( pData, aApp.Len() + 1, nSeqLen, eSysEnc );
    String aItem  = lcl_GetSubString( pData, aApp.Len() + aTopic.Len() + 2, nSeqLen, eSysEnc );

    if (!ScCompiler::pSymbolTableNative)
    {
        DBG_ERROR("ScCompiler::pSymbolTableNative missing");
        return FALSE;
    }

    //!	use tokens
    String aFormula( '=' );
    aFormula += ScCompiler::pSymbolTableNative[SC_OPCODE_DDE];
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("(\""));
    aFormula += aApp;
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("\";\""));
    aFormula += aTopic;
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("\";\""));
    aFormula += aItem;
    aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM("\")"));

    //	mark range

    USHORT nTab = GetViewData()->GetTabNo();
    USHORT nCurX = GetViewData()->GetCurX();
    USHORT nCurY = GetViewData()->GetCurY();
    HideAllCursors();
    DoneBlockMode();
    InitBlockMode( nCurX, nCurY, nTab );
    MarkCursor( nCurX+nCols-1, nCurY+nRows-1, nTab );
    ShowAllCursors();

    //	enter formula

    EnterMatrix( aFormula );
    CursorPosChanged();

    return TRUE;
}