summaryrefslogtreecommitdiff
path: root/testautomation/graphics/required/includes/global/gallery.inc
blob: 5019884973ac21f8f991473f5cbb263e66502ce7 (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
'encoding UTF-8  Do not remove or change this line!
'**************************************************************************
' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
'
' Copyright 2000, 2010 Oracle and/or its affiliates.
'
' OpenOffice.org - a multi-platform office productivity suite
'
' This file is part of OpenOffice.org.
'
' OpenOffice.org is free software: you can redistribute it and/or modify
' it under the terms of the GNU Lesser General Public License version 3
' only, as published by the Free Software Foundation.
'
' OpenOffice.org 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 version 3 for more details
' (a copy is included in the LICENSE file that accompanied this code).
'
' You should have received a copy of the GNU Lesser General Public License
' version 3 along with OpenOffice.org.  If not, see
' <http://www.openoffice.org/license.html>
' for a copy of the LGPLv3 License.
'
'/************************************************************************
'*
'* owner : wolfram.garten@sun.com
'*
'* short description : Global Required/resource test: Checking the gallery
'*
'*******************************************************************
'*
' #1   tGallery_DialogTest                           ' Open gallery, pin - unpin, dock - undock, close gallery
' #1   tGallery_ActivateAndUpdateAllThemes           ' Activate all gallery-themes and update this theme
' #1   tGallery_CheckNames                           ' Check the names for all themes depends on language
' #1   tGallery_CheckContextMenuForGalleryThemes     ' Test the context menu on themes window
' #1   tGallery_CreateAndWorkWithANewGalleryThemes   ' Create a new theme, add graphics and work with it
' #1   tGallery_GalleryView_Preview                  ' Preview-feature in Gallery Beamer-window
' #1   tGallery_GalleryView_Insert                   ' Insert gallery objects in all applications
' #1   tGallery_GalleryView_Delete                   ' Delete gallery objects out of Beamer window
' #0   hOpenGallery                                  ' Open the gallery
' #1   tGallery_Quick_check
'*
'\******************************************************************
testcase tGallery_DialogTest
    '///Open a new Writer document
    '///Tools / Gallery
    printlog "- Working with Gallery-Beamer!"
    gApplication = "WRITER"
    call hNewDocument
    call hOpenGallery
    Kontext "DocumentWriter"
        '///+Undock the <i>Gallery Beamer</i>
        printlog "- undock the Gallery Beamer"
        Kontext "Gallery"
            Gallery.Undock ( AlignTop )
            sleep(2)
            '///+<ul><li>Move the gallery-window</li></ul>
            printlog "  - move the gallery window"
            Gallery.move ( 20, 20 )
            sleep(2)
            '///+Dock the <i>Gallery Beamer</i>
            printlog "- dock the Gallery Beamer"
            Gallery.Dock ( AlignTop )
            sleep(2)
            '///+Close the <i>Gallery Beamer</i> (Tools / Gallery)
            printlog "- close the Gallery Beamer"
        ToolsGallery
    call hCloseDocument
endcase

'-------------------------------------------------------------------------

testcase tGallery_ActivateAndUpdateAllThemes
    Dim iThemeCount as Integer
    Dim i as Integer 
    Dim j as Integer
    Dim Gallerytext as string
    '///Activate and update all gallery themes (NET installation: Activate only!)
    '///Open a new Writer document
    '///+Tools / Gallery
    '///+Click on each theme and update it (via context menu)
    printlog "activate and update all gallery-themes"
    gApplication = "WRITER"
    call hNewDocument
    Kontext
    call hOpenGallery
    Kontext "Gallery"
        iThemeCount = Gallerys.GetItemCount
        for i=1 to iThemeCount
            if gNetzInst = FALSE then
                Kontext "Gallery"
                    Gallerytext = Gallerys.GetItemText(i)
                    printlog "- " + i + ". entry (" & Gallerytext & ")"
                    Gallerys.Select i
                    Gallerys.MouseMove ( 10, 10 )
                    Gallerys.OpenContextMenu
                    sleep (3)
                    printlog "  - update"
                    hMenuSelectNr (1)
                    sleep (3)
                    Kontext "Messagebox"
                    if Messagebox.Exists(3) then
                        if Messagebox.getRT=304 then
                            printlog "- 'MyTheme' is the " & i & "'s entry."
                            Messagebox.No
                        end if
                    else
                        for j = 1 to 800
                            Kontext "AktualisierenGallery"
                                if AktualisierenGallery.Exists then
                                    printlog "DEBUG (j): " & j
                                    sleep (1)
                                else
                                    printlog "DEBUG: 800 reached!"
                                    j=801
                                end if
                        next j
                    end if
            end if
        next i
    call hCloseDocument
endcase

'-------------------------------------------------------------------------

testcase tGallery_CheckNames
    Dim iThemeCount as Integer
    Dim i as Integer
    Dim j as Integer
    Dim ssList (100) as String
    Dim siList (100) as String
    Dim sFileName as String
    Dim iGalleryThemes as integer

    if gOOO = true then 
        sFileName = ConvertPath ( gTesttoolPath + "graphics\required\input\gallery\gal_oo_" + iSprache + ".txt" )
    else
        sFileName = ConvertPath ( gTesttoolPath + "graphics\required\input\gallery\gal_" + iSprache + ".txt" )
    end if

    '///Check the names for the gallery themes
    '///Open a new Writer document
    '///+Tools / Gallery
    gApplication = "WRITER"
    call hNewDocument
    Kontext
    call hOpenGallery
    '///+Check the number of gallery themes. For StarOffice: should be 32. For OpenOffice.Org: should be 6.
    printlog "- check the number of gallery-themes"
    Kontext "Gallery"
        if NOT gOOO then 
            if bAsianLan then
                iGalleryThemes = 29 ' Flags are not allowed!
            else
                iGalleryThemes = 30
            end if
        else
            if bAsianLan then
                iGalleryThemes = 6  ' Flags are not allowed!
            else
                iGalleryThemes = 6
            end if
        end if
        iThemeCount = Gallerys.GetItemCount
        if (iThemeCount <> iGalleryThemes) then
            warnlog "Difference in count of gallery themes; found: '" + iThemeCount + "'; expected: '"+ iGalleryThemes +"'"
        end if
        for i=1 to iThemeCount
        Gallerys.Select i
        ListAppend ( siList(), Gallerys.GetSelText )
    next i
    '///+Check all names with a list which depends on language (<i>gTestToolPath</i>/graphics/udpate/input/gallery)
    printlog "- check the names of gallery-themes"
    if Dir ( sFilename ) = "" then
        warnlog "The file for comparison does not exists. The file will be written!"
        warnlog "Please control : " + sFilename
        ListWrite ( siList(), sFilename, "utf8" )
    else
        printlog "  file for comparison is : " + sFilename
        ListRead ( ssList (), sFilename, "uft8" )
        gCompare2Lists ( siList(), ssList () )
    end if
    ToolsGallery
    call hCloseDocument
endcase

'-------------------------------------------------------------------------

testcase tGallery_CheckContextMenuForGalleryThemes
    Dim iForBidden as Integer
    Dim iMenuEntries as Integer
    Dim i as Integer
    Dim iThemeCount as Integer
    '/// Check the contextmenu for the gallery themes
    '/// Open a new Writer document
    '/// +Tools / Gallery
    printlog "check the contextmenu for the gallery-themes"
    gApplication = "WRITER"
    call hNewDocument
    call hOpenGallery
    '/// +Testing <i>rename</i> and <i>properties</i> for each gallery theme (via context-menu)
    '/// +<ul><li>Only the private gallery theme must be deleteable (different 3 entries in the context-menu than the rest)</li></ul>
    Kontext "Gallery"
        iThemeCount = Gallerys.GetItemCount
        Gallerys.MouseMove ( 10, 10 )
        for i=1 to iThemeCount
            Kontext "Gallery"
                printlog "- " + i + ". entry"
                sleep 1
                Gallerys.Select 1
                sleep (1)
                Gallerys.Select i
                sleep (1)
                Gallerys.OpenContextMenu
                sleep (2)
                iMenuEntries = hMenuItemGetCount
                if iMenuEntries <> 3 then
                    if gNetzInst = FALSE then
                        warnlog "There are not 3 entries! => no test on the contextmenu!"
                    else
                        if iMenuEntries <> 1 then
                            warnlog "Net-Inst : There are not 1 entries! => no test on the contextmenu!"
                        else
                            sleep (3)
                            hMenuSelectNr(1)
                            Kontext
                            if Active.GetPageCount <> 1 then
                                warnlog "There are more than 1 Tabpage in Net-Installation ( perhaps no root-installation )!"
                            end if
                            Active.SetPage TabAllgemeinGallery
                            Kontext "TabAllgemeinGallery"
                                TabAllgemeinGallery.Cancel
                                sleep (1)
                        end if
                    end if
                else
                    sleep (1)
                    hMenuSelectNr(2)
                    Kontext "GalleryNewTitle"
                        GalleryNewTitle.Cancel
                        sleep(1)
                        Kontext "Gallery"
                            Gallerys.OpenContextMenu
                            sleep (3)
                            hMenuSelectNr (3)
                            Kontext
                            Active.SetPage TabAllgemeinGallery
                            Active.SetPage TabDateien
                            Kontext "TabDateien"
                                TabDateien.Cancel
                                sleep(1)
                end if
        next i
        ToolsGallery
    call hCloseDocument
endcase

'-------------------------------------------------------------------------

testcase tGallery_CreateAndWorkWithANewGalleryThemes
    Dim iMenuEntries as Integer
    Dim j as Integer
    '/// Open a new Writer document
    '/// Tools / Gallery
    printlog "create a new gallery-theme ( TT-theme )"
    gApplication = "WRITER"
    call hNewDocument
    call hOpenGallery
    iMenuEntries = Gallerys.GetItemCount
    printlog "- Clicking on 'New Theme' and creating a new theme"
    '/// Create a new gallery-theme
    '/// + by clicking on <i>New Theme</i>
    NewTheme.Click
    '/// +Activate <i>General</i> tabpage and insert <b><i>TT-theme</b></i> as name
    Kontext
    Active.SetPage TabAllgemeinGallery
    Kontext "TabAllgemeinGallery"
        NeuesThema.SetText "TT-theme"
        sleep (1)
        printlog "  - named the new theme 'TT-theme' on the general-page"
        printlog "  - insert all files out of '[gTestToolpath]\global\input\graf_inp' in the files-page"
        '/// +Activate <i>Files</i> tabpage
        Kontext
        Active.SetPage TabDateien
        Kontext "TabDateien"
            printlog "     - click 'add' without a selected file => insert-graphic-dialog has to be be visible"
            '/// +Click on <i>Add</i> (If no file is selected the <i>Graphic-Insert</i> dialog has to be be opened -> close it)
            Hinzufuegen.Click
            sleep (1)
            Kontext "GrafikEinfuegenDlg"
                GrafikEinfuegenDlg.Cancel
                sleep (1)
                printlog "     - click 'find files' to insert the path for graphics"
                '///+Click on <i>Find Files</i> => <i>select-path</i> dialog will be visible
        Kontext "TabDateien"
            Suche.Click
            sleep (1)
            '/// +Insert [gTesttoolPath]/input/global/graf_inp as path-name as click on <i>Select</i>
        Kontext "OeffnenDlg"
            Pfad.SetText ( convertPath ( gTesttoolPath + "global\input\graf_inp" ) )
            sleep (1)
            Auswaehlen.Click
            sleep (10)
            '/// +Click on <i>Add</i> for some graphics
            printlog "     - 'add' one by one"
        Kontext "TabDateien"
        DateiListe.Select 1
        WaitSlot(1000)
        Hinzufuegen.Click
        sleep (1)
        DateiListe.Select 1
        Hinzufuegen.Click
        sleep (1)
        '/// +Click on <i>Add all</i> for rest of the graphics
        '/// +<ul><li>apply-dialog -> cancel</li></ul>
        '/// +click on <i>Add all</i> for rest of the graphics
        printlog "     - 'add all' for the rest of the files"
        DateiListe.Select 1
        HinzufuegenAlle.Click
        printlog "     - apply-dialog -> cancel"
        Kontext "ApplyGallery"
            for j=1 to 100
                if ApplyGallery.Exists then
                    try
                        ApplyGallery.Cancel
                    catch
                    endcatch
                else
                    if j>5 then j=101
                        sleep (1)
                    end if
                next j
        Kontext "TabDateien"
        if DateiListe.GetItemCount > 1 then
            printlog "     - 'add all' for the rest of the files"
            DateiListe.Select 1
            HinzufuegenAlle.Click
            sleep (2)
            Kontext "ApplyGallery"
                for j=1 to 100
                    If ApplyGallery.Exists then
                        sleep (1)
                    else
                        j=101
                    end if
                next j
        end if
        Kontext "TabDateien"
            printlog "  - click 'OK' for the tabpages"
            TabDateien.OK
            '/// +Check if the new entry is inserted and select it
            printlog "  - check if the new entrie is inserted and select it"
        Kontext "Gallery"
            if Gallerys.GetItemCount <> ( iMenuEntries + 1 ) then
                warnlog "No new theme was created => the test ends here"
                ToolsGallery
                call hCloseDocument
            else
                gMouseClick 50,50            '/// make mouseclick to set focus ///'
                Kontext "Gallery"
                Gallerys.Select "TT-theme"
                Gallerys.MouseMove ( 10, 10 )
                sleep (1)
                Gallerys.OpenContextMenu
                '/// +Update the entry (1. entry in context menu ) => cancel it
                printlog "  - update the entry => cancel the update"
                sleep (3)
                hMenuSelectNr (1)
                sleep (1)
                Kontext "AktualisierenGallery"
                    if AktualisierenGallery.Exists <> TRUE then
                        AktualisierenGallery.Cancel
                    end if
                    do
                        sleep 1
                    loop while AktualisierenGallery.Exists
                    Kontext "Gallery"
                        Gallerys.Select "TT-theme"
                        Gallerys.OpenContextMenu
                        '/// +Update it (1. entry in context menu )
                        printlog "  - update"
                        sleep (3)
                        hMenuSelectNr (1)
                        for j=1 to 100
                            Kontext "AktualisierenGallery"
                            if AktualisierenGallery.Exists <> TRUE then
                                j=101
                            else
                                sleep (1)
                            end if
                        next j
                    '/// +Rename it (3. entry in context menu)
                    printlog "  - rename ( 3. entry in context-menu )"
                    Kontext "Gallery"
                        Gallerys.OpenContextMenu
                        sleep (3)
                        hMenuSelectNr (3)
                        Kontext "GalleryNewTitle"
                            Title.SetText "New TT-theme"
                            GalleryNewTitle.OK
                    Kontext "Gallery"
                        Gallerys.Select "New TT-theme"
                        '///+Add new files in properties (4. entry in context menu)
                        printlog "  - add new graphics in properties ( 4. entry in context-menu )"
                    Kontext "Gallery"
                        Gallerys.OpenContextMenu
                        sleep (3)
                        hMenuSelectNr (4)
                        Kontext
                        Active.SetPage TabDateien
                        Kontext "TabDateien"
                            Suche.Click
                            Kontext "OeffnenDlg"
                                Pfad.SetText ( convertPath ( gTesttoolPath + "global\input\graf_inp" ) )
                                Auswaehlen.Click
                                sleep (10)
                        Kontext "TabDateien"
                            DateiListe.Select 1
                            Hinzufuegen.Click
                            TabDateien.OK
                            '/// +Delete the entry (2. entry in context menu)
                            printlog "  - delete the entry ( 2. entry in context-menu )"
                            printlog "     - messagebox -> no"
                    Kontext "Gallery"
                        Gallerys.Select "New TT-theme"
                        sleep (3)
                        Gallerys.OpenContextMenu
                        sleep (3)
                        hMenuSelectNr (2)
                        Kontext "Active"
                            sleep (1)
                            Active.No
                            printlog "     - messagebox -> yes"
                    Kontext "Gallery"
                        sleep (1)
                        Gallerys.Select "New TT-theme"
                        sleep (1)
                        Gallerys.OpenContextMenu
                        sleep (3)
                        hMenuSelectNr (2)
                        Kontext "Active"
                            Active.Yes
                    try
                        Kontext "Gallery"
                        Gallerys.Select "New TT-theme"
                        warnlog "The entry isn't deleted!"
                    catch
                    endcatch
                end if
            sleep 10
        ToolsGallery
    call hCloseDocument
endcase

'-------------------------------------------------------------------------

testcase tGallery_GalleryView_Preview
    Dim jpeg_bkg as Integer
    Dim iAnimation as Integer
    Dim iSound as Integer
    Dim i as Integer
    Dim iPreview as Integer
    Dim iTitle as Integer
    if NOT gOOO then
        select case iSprache
        case 01     :   jpeg_bkg =  3    : iAnimation =  1   :   iSound = 28
        case 07     :   jpeg_bkg = 29   : iAnimation =  1   :   iSound =  6
        case 31     :   jpeg_bkg =  3    : iAnimation =  3   :   iSound = 11
        case 33     :   jpeg_bkg = 13   : iAnimation =  1   :   iSound = 29
        case 34     :   jpeg_bkg = 11   : iAnimation =  1   :   iSound = 28
        case 36     :   jpeg_bkg = 12   : iAnimation =  1   :   iSound = 10
        case 39     :   jpeg_bkg = 10   : iAnimation =  1   :   iSound = 27
        case 46     :   jpeg_bkg =  2    : iAnimation =  1   :   iSound = 17
        case 48     :   jpeg_bkg =  2    : iAnimation =  1   :   iSound = 17
        case 49     :   jpeg_bkg = 12   : iAnimation =  1   :   iSound = 16
        case 55     :   jpeg_bkg = 21   : iAnimation =  1   :   iSound = 28
        case 81     :   jpeg_bkg = 21   : iAnimation =  1   :   iSound = 10  'FHA TODO: Find out the right numbers for Asian languages.
        case 82     :   jpeg_bkg =  1    : iAnimation = 17  :   iSound = 12
        case 86     :   jpeg_bkg =  1    : iAnimation =  9   :   iSound = 13
        case 88     :   jpeg_bkg =  1    : iAnimation =  7   :   iSound = 20
        case else :   jpeg_bkg = 10   : iAnimation =  1    :   iSound = 17
                  warnlog "Please insert the entrienumbers for 'Backgrounds', 'Sounds' and one with normal files ( Animations )"
        end select
    else  ' Testing OOO
        select case iSprache
            case 01     :   jpeg_bkg =  1   :   iAnimation =  5     :   iSound =  2
            case 07     :   jpeg_bkg =  1   :   iAnimation =  5     :   iSound =  2
            case 31     :   jpeg_bkg =  3   :   iAnimation =  1     :   iSound =  1
            case 33     :   jpeg_bkg =  3   :   iAnimation =  1     :   iSound =  2
            case 34     :   jpeg_bkg =  1   :   iAnimation =  1     :   iSound =  2
            case 36     :   jpeg_bkg =  2   :   iAnimation =  1     :   iSound =  2
            case 39     :   jpeg_bkg =  2   :   iAnimation =  1     :   iSound =  2
            case 46     :   jpeg_bkg =  2   :   iAnimation =  5     :   iSound =  2
            case 48     :   jpeg_bkg =  2   :   iAnimation =  5     :   iSound =  2
            case 49     :   jpeg_bkg =  2   :   iAnimation =  5     :   iSound =  2
            case 55     :   jpeg_bkg =  2   :   iAnimation =  5     :   iSound =  2
            case 81     :   jpeg_bkg =  2   :   iAnimation =  5     :   iSound =  2  'FHA TODO: Find out the right numbers for Asian languages.
            case 82     :   jpeg_bkg =  1   :   iAnimation =  5     :   iSound =  2
            case 86     :   jpeg_bkg =  1   :   iAnimation =  5     :   iSound =  3
            case 88     :   jpeg_bkg =  1   :   iAnimation =  5     :   iSound =  2
            case else  :  jpeg_bkg =  1    :   iAnimation =  5     :   iSound =  2
                warnlog "Please insert the entrienumbers for 'Backgrounds', 'Sounds' and one with normal files ( Animations )"
        end select
    end if
    '/// Open a new Writer document
    '/// Tools / Gallery
    printlog "open a writer and the gallery"
    gApplication = "WRITER"
    call hNewDocument
    Kontext
    call hOpenGallery
    '/// Check the view for Background-pictures (JPEGs), for standard graphic files (Animation) and for <i>Sound</i> objects
    for i=1 to 3
        if i=1 then
            Gallerys.Select jpeg_bkg
            printlog "selected gallery-theme : Backgrounds (Jpeg-files)"
        end if
        if i=2 then
            Gallerys.Select iAnimation
            printlog "selected gallery-theme : Animation"
        end if
        if i=3 then
            Gallerys.Select iSound
            printlog "selected gallery-theme : Sound"
        end if
        if gNetzInst = FALSE then
            iPreview = 2 : iTitle = 3
        else
            iPreview = 2 : iTitle = 0
        end if
        '/// Test the list-view
        '/// +Click on List-View-Button in toolbar
        printlog "- list-view"
        printlog "  - open the list-view"
        ListView.Click
        sleep (1)
        printlog "  - Press Home + Enter to focus and enter Preview-mode."
        '/// +Double-click on an object (preview has to be visible)
        View.TypeKeys "<HOME>"
        View.TypeKeys "<RETURN>"
        sleep (2)
        '/// +Back to normal view with Enter
        View.TypeKeys "<RETURN>"
        sleep (2)
        '/// +Preview out of context menu on/off
        printlog "  - preview out of context menu on/off"
        View.TypeKeys "<HOME>"
        Sleep (2)
        View.OpenContextMenu true
        sleep (3)
        hMenuSelectNr ( iPreview )
        sleep (3)
        kontext "Gallery"
            Sleep (2)
            View.OpenContextMenu true
            sleep (2)
            hMenuSelectNr ( iPreview )
            sleep (3)
            '/// +Title (FAT installation only)
            if gNetzInst = FALSE then
                printlog "  - title"
                Kontext "Gallery"
                    sleep (2)
                    View.OpenContextMenu true
                    sleep (3)
                    hMenuSelectNr ( iTitle )
                    Kontext "GalleryNewTitle"
                        sleep (1)
                        GalleryNewTitle.Cancel
                        sleep (1)
                    Kontext "Gallery"
            end if
            View.OpenContextMenu true
            sleep (3)
            hMenuSelectNr ( iPreview )
            sleep (3)
            '/// Should now be in Preview-mode. Check if we are. ///'
            View.OpenContextMenu true
            sleep (3)
            printlog MenuIsItemChecked (MenuGetItemID(iPreview+1))
            if MenuIsItemChecked (MenuGetItemID(iPreview+1)) then
                Printlog "   Entered Preview-mode correctly"
                sleep (1)
            else
                Warnlog "   Didnt seem to enter preview-mode correctly."
            end if
            MenuSelect (0)
            sleep (1)
            '/// From here, try switching to icon-view ///'
            '///+Click on Icon-View-Button in toolbar
            printlog "- icon-view"
            if IconView.isEnabled then
                IconView.Click
                qaErrorLog "The bug 64543 has been fixed! Please report to FHA."
            end if
            sleep (1)
            View.TypeKeys "<HOME>"
            printlog "  - Enter to get out of Preview-mode"
            '/// +Press Return on an object (preview has to be visible)
            View.TypeKeys "<RETURN>"
            sleep (2)
            '/// +Back to normal view with Return
            View.TypeKeys "<RETURN>"
            sleep (2)
            '/// +Preview out of context menu on/off
            printlog "  - preview out of context menu on/off"
            View.TypeKeys "<HOME>"
            sleep (3)
            View.OpenContextMenu true
            sleep (3)
            hMenuSelectNr ( iPreview )
            sleep (3)
            View.OpenContextMenu true
            sleep (3)
            hMenuSelectNr ( iPreview )
            sleep (3)
            '/// +Title (FAT installation only)
            if gNetzInst = FALSE then
                printlog "  - title"
                try
                    View.OpenContextMenu true
                    sleep (3)
                catch
                    warnlog "Could not open Contextmenu for Title nr:" +iTitle
                endcatch
                hMenuSelectNr ( iTitle )
                Kontext "GalleryNewTitle"
                    GalleryNewTitle.Cancel
                Kontext "Gallery"
            end if
        next i
        sleep 1 ' else crash
   ToolsGallery

    '/// If the MediaPlayer exists - close it ///'
    kontext "Mplayer"
        if Mplayer.Exists then
            if (gApplication = "IMPRESS") then
                kontext "DocumentImpress"
            else
                kontext "DocumentDraw"
            end if
            ToolsMediaPlayer
        else
            if (gApplication = "IMPRESS") then
                kontext "DocumentImpress"
            else
                kontext "DocumentDraw"
            end if
        end if

    call hCloseDocument
endcase

'-------------------------------------------------------------------------

testcase tGallery_GalleryView_Insert
    Dim jpeg_bkg as Integer
    Dim iAnimation as Integer
    Dim i as Integer
    Dim j as Integer
    Dim k as Integer
    '/// Test gallery-view -> insert gallery-object with context-menu (3D-Object (<i>internal object</i>), Animation (<i>as file</i>))
    if NOT gOOO then
        select case iSprache
            case 01     :   jpeg_bkg = 3     :   iAnimation =  1
            case 07     :   jpeg_bkg = 29   :   iAnimation =  1
            case 31     :   jpeg_bkg = 3     :   iAnimation =  3
            case 33     :   jpeg_bkg = 13   :   iAnimation =  1
            case 34     :   jpeg_bkg = 7     :   iAnimation =  1
            case 36     :   jpeg_bkg = 12   :   iAnimation =  1
            case 39     :   jpeg_bkg = 10   :   iAnimation =  1
            case 46     :   jpeg_bkg = 1     :   iAnimation =  2
            case 48     :   jpeg_bkg = 3     :   iAnimation =  1
            case 49     :   jpeg_bkg = 1     :   iAnimation =  2
            case 55     :   jpeg_bkg = 8     :   iAnimation =  1
            case 81     :   jpeg_bkg = 1     :   iAnimation =  3
            case 82     :   jpeg_bkg = 1     :   iAnimation = 17
            case 86     :   jpeg_bkg = 17   :   iAnimation = 15 
            case 88     :   jpeg_bkg = 17   :   iAnimation = 15
            case else  :  jpeg_bkg = 1     :   iAnimation =  2
                                warnlog "Please insert the entrienumbers for 'Backgrounds' and one with normal files ( Animations )"
        end select
    else  ' Testing OOO
        select case iSprache
            case 01   : jpeg_bkg =  3 : iAnimation =  1
            case 07   : jpeg_bkg =  5 : iAnimation =  1
            case 31   : jpeg_bkg =  3 : iAnimation =  3
            case 33   : jpeg_bkg =  5 : iAnimation =  1
            case 34   : jpeg_bkg =  6 : iAnimation =  1
            case 36   : jpeg_bkg =  5 : iAnimation =  1
            case 39   : jpeg_bkg =  5 : iAnimation =  1
            case 46   : jpeg_bkg =  1 : iAnimation =  2
            case 48   : jpeg_bkg =  3 : iAnimation =  1
            case 49   : jpeg_bkg =  1 : iAnimation =  2
            case 55   : jpeg_bkg =  6 : iAnimation =  1
            case 81   : jpeg_bkg =  1 : iAnimation =  3
            case 82   : jpeg_bkg =  1 : iAnimation =  1
            case 86   : jpeg_bkg =  5 : iAnimation =  5 
            case 88   : jpeg_bkg =  5 : iAnimation =  1
            case else : jpeg_bkg =  1 : iAnimation =  2
                                warnlog "Please insert the entrienumbers for 'Backgrounds' and one with normal files ( Animations )"
        end select
    end if
    '/// Test following for all applications (Writer, Calc, Impress, Draw)
    for i=1 to 4           ' each application
        if i=1 then gApplication = "WRITER"
        if i=2 then gApplication = "CALC"
        if i=3 then gApplication = "IMPRESS"
        if i=4 then gApplication = "DRAW"

        '/// +Open a new document
        '/// +Open the Gallery
        printlog gApplication  'Chr(13)
        call hNewDocument
        call hOpenGallery
        '/// +Select 3D-theme (these are internal objects and not realy files)
        '/// +<ul><li>on context menu there are only 2 entries for insert (copy, link)
        '/// +<li>insert the object per <i>copy</i></li>
        '/// +<li>insert the object per <i>link</i></li></ul>
        '/// +Select Animation theme (these are realy files)
        '/// +<ul><li>On context menu there are only 2 entries for insert (copy, link ) for Calc, Draw Impress</li>
        '/// +<li>On context menu there are only 3 entries for insert (copy, link, background / page, paragraph ) for Writer</li>
        '/// +<li>insert the object per <i>copy</i></li>
        '/// +<li>insert the object per <i>link</i></li>
        '/// +<li>Only for the Writer:<ul>
        '/// +<li>Insert the object per background / page</li>
        '/// +<li>insert the object per background / paragraph</li></ul></li></ul>
        '/// +Close the Gallery
        '/// +Close the document
        '/// Since the GraphicObjectbar could disturb our testing, we close it if it is open ///'
        '      kontext "GraphicObjectbar"
        '      if GraphicObjectbar.Exists then GraphicObjectbar.Close
        for j=1 to 2        ' the two gallery-theme
            if j=1 then
                Gallerys.Select jpeg_bkg
                printlog " selected gallery-theme : Backgrounds"
            end if

            if j=2 then
                Gallerys.Select iAnimation
                printlog " selected gallery-theme : Animation"
            end if

            if i=1 then       ' test for writer
                for k=1 to 2
                    if k=1 then
                        ListView.Click
                        printlog "  - insert on list view"
                    else
                        IconView.Click
                        printlog "  - insert on icon view"
                    end if

                    sleep (2)
                    View.Mousedown ( 5, 18 )
                    View.Mouseup ( 5, 18 )
                    View.typekeys "<DOWN>,<UP>"

                    sleep (3)
                    View.TypeKeys "<SHIFT F10>" ' OpenContextMenu
                    sleep (3)
                    hMenuSelectNr ( 1 )

                    if j=1 then
                        printlog "   - copy"
                        sleep (1)
                        hMenuSelectNr ( 1 )
                        sleep (2)
                    else
                        printlog "   - copy"
                        sleep (1)
                        hMenuSelectNr ( 1 )
                        sleep (3)

                        printlog "   - link"
                        View.TypeKeys "<SHIFT F10>" 'OpenContextMenu
                        sleep (1)
                        hMenuSelectNr ( 1 )
                        hMenuSelectNr ( 2 )
                        sleep (3)

                        printlog "   - background -> page"
                        View.TypeKeys "<SHIFT F10>" 'OpenContextMenu
                        sleep (2)
                        hMenuSelectNr ( 1 )
                        hMenuSelectNr ( 3 )
                        hMenuSelectNr ( 1 )
                        sleep (3)

                        printlog "   - background -> paragraph"
                        View.TypeKeys "<SHIFT F10>" 'OpenContextMenu
                        sleep (2)
                        hMenuSelectNr ( 1 )
                        hMenuSelectNr ( 3 )
                        hMenuSelectNr ( 2 )
                        sleep (3)
                    end if

                    kontext "GraphicObjectbar"
                    if GraphicObjectbar.Exists then
                        if GraphicObjectbar.isDocked = False then
                            GraphicObjectbar.Move 900,900
                        end if
                    end if
                    kontext "Gallery"

                next k
            else              ' test for other applications ( calc, impress, draw )
                kontext "GraphicObjectbar"
                    if GraphicObjectbar.Exists then
                        if GraphicObjectbar.isDocked = False then
                            GraphicObjectbar.Move 900,900
                        end if
                    end if
                kontext "Gallery"

                kontext "Gluepointsobjectbar"
                    if Gluepointsobjectbar.Exists then
                        if Gluepointsobjectbar.isDocked = false then
                            Gluepointsobjectbar.Move 900,900
                        end if
                    end if
                kontext "Gallery"

                kontext "Optionsbar"
                    if Optionsbar.Exists then
                        if Optionsbar.isDocked = false then
                            Optionsbar.Move 900,900
                        end if
                    end if
                kontext "Gallery"

                    for k=1 to 2
                        if k=1 then
                            ListView.Click
                            printlog "  - insert on list view"
                        else
                            IconView.Click
                            printlog "  - insert on icon view"
                        end if

                    sleep (1)
                    View.Mousedown ( 5, 18 )
                    View.Mouseup ( 5, 18 )
                    View.typekeys "<DOWN>,<UP>"

                    sleep (1)
                    View.TypeKeys "<SHIFT F10>" 'OpenContextMenu
                    printlog "    - copy"
                    sleep (3)
                    hMenuSelectNr ( 1 )
                    hMenuSelectNr ( 1 )
                    sleep (3)

                    if j=2 then
                        View.TypeKeys "<SHIFT F10>" 'OpenContextMenu
                        printlog "    - link"
                        sleep (3)
                        hMenuSelectNr ( 1 )
                        hMenuSelectNr ( 2 )
                        sleep (2)
                    end if

                next k
            end if
        next j
        ToolsGallery
        WaitSlot (2000)
        call hCloseDocument
        WaitSlot (2000)
    next i
endcase

'-------------------------------------------------------------------------

testcase tGallery_GalleryView_Delete
    Dim jpeg_bkg as Integer
    Dim iAnimation as Integer
    Dim iSound as Integer
    Dim i as Integer
    Dim j as Integer
    Dim k as Integer

    if gNetzInst = TRUE then
        ' TODO: since we now only know net- installations, make it work!
        printlog "No test for 'net' installations, because there are no rights to delete objects out of Gallery!"
        'NOTE: Jump to NotForNetInst...
        Goto NotForNetInst
    end if

    '/// Test gallery view -> delete objects with context-menu ( Backgrounds (<i>internal object</i>), Animation (<i>file</i>), Sound (<i>file</i>))
    select case iSprache
        case 01   : jpeg_bkg = 1    :   iAnimation = 2   :  iSound = 28
        case 07   : jpeg_bkg = 29  :   iAnimation = 1   :  iSound =  6
        case 31   : jpeg_bkg = 1    :   iAnimation = 2   :  iSound = 28
        case 33   : jpeg_bkg = 13  :   iAnimation = 1   :  iSound = 29
        case 34   : jpeg_bkg = 7    :   iAnimation = 1   :  iSound = 28
        case 36   : jpeg_bkg = 12  :   iAnimation = 1   :  iSound = 10
        case 39   : jpeg_bkg = 10  :   iAnimation = 1   :  iSound = 27
        case 46   : jpeg_bkg = 1    :   iAnimation = 2   :  iSound = 18
        case 49   : jpeg_bkg = 1    :   iAnimation = 2   :  iSound = 17
        case 55   : jpeg_bkg = 8    :   iAnimation = 1   :  iSound = 30
        case 81   : jpeg_bkg = 1    :   iAnimation = 3   :  iSound = 10
        case 82   : jpeg_bkg = 1    :   iAnimation = 17 :  iSound = 12
        case 86   : jpeg_bkg = 1    :   iAnimation = 9   :  iSound = 13
        case 88   : jpeg_bkg = 1    :   iAnimation = 7   :  iSound = 20
        case else : jpeg_bkg = 1   :  iAnimation = 2   :  iSound = 17
                  warnlog "Please insert the entrienumbers for '3D-graphics', 'Sounds' and one with normal files ( Animations )"
    end select

    '/// Open a new writer-doc
    '/// Tools / Gallery
    gApplication = "WRITER"
    call hNewDocument
    call hOpenGallery
    '/// Delete one object in list-view and icon-view for 3D, Animation and Sound
    for i=1 to 3
        Kontext "Gallery"
            if i=1 then
                Gallerys.Select jpeg_bkg
                printlog " selected gallery-theme : Backgrounds"
            end if

            if i=2 then
                Gallerys.Select iAnimation
                printlog " selected gallery-theme : Animation"
            end if

            if i=3 then
                Gallerys.Select iSound
                printlog " selected gallery-theme : Sound"
            end if

            for j=1 to 2
                Kontext "Gallery"
                    if j=1 then
                        IconView.Click
                        printlog "   Icon view"
                        sleep 1
                    end if
                    if j=2 then
                        ListView.Click
                        printlog "   List view"
                    end if

                    for k=1 to 2
                        Kontext "Gallery"
                            sleep (1)
                            View.MouseMove ( 5, 15 )
                            View.TypeKeys "<SHIFT F10>" 'OpenContextMenu true
                            hMenuSelectNr ( 4 )
                            kontext "Active"
                                if k=1 then
                                    Active.No
                                    printlog "      delete one object => no"
                                else
                                    Active.Yes
                                    printlog "      delete one object => yes"
                                end if
                    next k
            next j
    next i
    ToolsGallery
    call hCloseDocument
    'NOTE: Jump End NotForNetInst
    NotForNetInst:
endcase

'-------------------------------------------------------------------------
testcase tGallery_Quick_check

    '/// Short check, if at least 2 files exist in the gallery, and if they are > 0 in size ///'
    '/// One in the gallery folder itself and the other one in a subfolder. ///'
    dim sFile(1) as string
    dim i as integer

    sFile(0) = ConvertPath ( gOfficeBasisPath + "share/gallery/apples.gif" ) '
    sFile(1) = ConvertPath ( gOfficeBasisPath + "share/gallery/bullets/coffee_1.gif" ) '
    '/// Open a new document
    call hNewDocument
    for i = 0 to 1
    '/// Click to deselect any selected objects ///'
        gMouseclick 1, 50
        if FileExists(sFile(i)) then
            if (FileLen(sFile(i)) > 0 ) then
                call hGrafikEinfuegen ( sFile(i) )
            else
                warnlog "File lenght is 0: '" + sFile(i) + "'"
            end if
        else
            warnlog "File doesn't exist: '" + sFile(i) + "'"
        end if
    next i
    '///close the document
    call hCloseDocument
endcase