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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_OOX_OLE_AXCONTROL_HXX
#define INCLUDED_OOX_OLE_AXCONTROL_HXX
#include <memory>
#include <vector>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <oox/dllapi.h>
#include <oox/helper/binarystreambase.hxx>
#include <oox/helper/propertyset.hxx>
#include <oox/ole/axbinaryreader.hxx>
#include <oox/ole/axfontdata.hxx>
#include <oox/ole/olehelper.hxx>
#include <rtl/ustring.hxx>
#include <sal/types.h>
namespace com::sun::star {
namespace awt { class XControlModel; }
namespace container { class XIndexContainer; }
namespace drawing { class XDrawPage; }
namespace frame { class XModel; }
namespace form { class XFormsSupplier; }
namespace lang { class XMultiServiceFactory; }
}
namespace oox {
class BinaryInputStream;
class BinaryOutputStream;
class GraphicHelper;
class PropertyMap;
}
namespace oox {
namespace ole {
#define COMCTL_GUID_SCROLLBAR_60 "{FE38753A-44A3-11D1-B5B7-0000C09000C4}"
#define COMCTL_GUID_PROGRESSBAR_50 "{0713E8D2-850A-101B-AFC0-4210102A8DA7}"
#define COMCTL_GUID_PROGRESSBAR_60 "{35053A22-8589-11D1-B16A-00C0F0283628}"
const sal_uInt16 COMCTL_VERSION_50 = 5;
const sal_uInt16 COMCTL_VERSION_60 = 6;
#define AX_GUID_COMMANDBUTTON "{D7053240-CE69-11CD-a777-00dd01143c57}"
#define AX_GUID_LABEL "{978C9E23-D4B0-11CE-bf2d-00aa003f40d0}"
#define AX_GUID_IMAGE "{4C599241-6926-101B-9992-00000b65c6f9}"
#define AX_GUID_TOGGLEBUTTON "{8BD21D60-EC42-11CE-9e0d-00aa006002f3}"
#define AX_GUID_CHECKBOX "{8BD21D40-EC42-11CE-9e0d-00aa006002f3}"
#define AX_GUID_OPTIONBUTTON "{8BD21D50-EC42-11CE-9e0d-00aa006002f3}"
#define AX_GUID_TEXTBOX "{8BD21D10-EC42-11CE-9e0d-00aa006002f3}"
#define AX_GUID_LISTBOX "{8BD21D20-EC42-11CE-9e0d-00aa006002f3}"
#define AX_GUID_COMBOBOX "{8BD21D30-EC42-11CE-9e0d-00aa006002f3}"
#define AX_GUID_SPINBUTTON "{79176FB0-B7F2-11CE-97ef-00aa006d2776}"
#define AX_GUID_SCROLLBAR "{DFD181E0-5E2F-11CE-a449-00aa004a803d}"
#define AX_GUID_FRAME "{6E182020-F460-11CE-9bcd-00aa00608e01}"
// Html control GUID(s)
#define HTML_GUID_SELECT "{5512D122-5CC6-11CF-8d67-00aa00bdce1d}"
#define HTML_GUID_TEXTBOX "{5512D124-5CC6-11CF-8d67-00aa00bdce1d}"
const sal_uInt32 AX_SYSCOLOR_WINDOWBACK = 0x80000005;
const sal_uInt32 AX_SYSCOLOR_WINDOWFRAME = 0x80000006;
const sal_uInt32 AX_SYSCOLOR_WINDOWTEXT = 0x80000008;
const sal_uInt32 AX_SYSCOLOR_BUTTONFACE = 0x8000000F;
const sal_uInt32 AX_SYSCOLOR_BUTTONTEXT = 0x80000012;
const sal_uInt32 AX_FLAGS_ENABLED = 0x00000002;
const sal_uInt32 AX_FLAGS_LOCKED = 0x00000004;
const sal_uInt32 AX_FLAGS_OPAQUE = 0x00000008;
const sal_uInt32 AX_FLAGS_COLUMNHEADS = 0x00000400;
const sal_uInt32 AX_FLAGS_ENTIREROWS = 0x00000800;
const sal_uInt32 AX_FLAGS_EXISTINGENTRIES = 0x00001000;
const sal_uInt32 AX_FLAGS_CAPTIONLEFT = 0x00002000;
const sal_uInt32 AX_FLAGS_EDITABLE = 0x00004000;
const sal_uInt32 AX_FLAGS_IMEMODE_MASK = 0x00078000;
const sal_uInt32 AX_FLAGS_DRAGENABLED = 0x00080000;
const sal_uInt32 AX_FLAGS_ENTERASNEWLINE = 0x00100000;
const sal_uInt32 AX_FLAGS_KEEPSELECTION = 0x00200000;
const sal_uInt32 AX_FLAGS_TABASCHARACTER = 0x00400000;
const sal_uInt32 AX_FLAGS_WORDWRAP = 0x00800000;
const sal_uInt32 AX_FLAGS_BORDERSSUPPRESSED = 0x02000000;
const sal_uInt32 AX_FLAGS_SELECTLINE = 0x04000000;
const sal_uInt32 AX_FLAGS_SINGLECHARSELECT = 0x08000000;
const sal_uInt32 AX_FLAGS_AUTOSIZE = 0x10000000;
const sal_uInt32 AX_FLAGS_HIDESELECTION = 0x20000000;
const sal_uInt32 AX_FLAGS_MAXLENAUTOTAB = 0x40000000;
const sal_uInt32 AX_FLAGS_MULTILINE = 0x80000000;
const sal_Int32 AX_BORDERSTYLE_NONE = 0;
const sal_Int32 AX_BORDERSTYLE_SINGLE = 1;
const sal_Int32 AX_SPECIALEFFECT_FLAT = 0;
const sal_Int32 AX_SPECIALEFFECT_RAISED = 1;
const sal_Int32 AX_SPECIALEFFECT_SUNKEN = 2;
const sal_Int32 AX_SPECIALEFFECT_ETCHED = 3;
const sal_Int32 AX_SPECIALEFFECT_BUMPED = 6;
const sal_Int32 AX_PICSIZE_CLIP = 0;
const sal_Int32 AX_PICSIZE_STRETCH = 1;
const sal_Int32 AX_PICSIZE_ZOOM = 3;
const sal_Int32 AX_PICALIGN_TOPLEFT = 0;
const sal_Int32 AX_PICALIGN_TOPRIGHT = 1;
const sal_Int32 AX_PICALIGN_CENTER = 2;
const sal_Int32 AX_PICALIGN_BOTTOMLEFT = 3;
const sal_Int32 AX_PICALIGN_BOTTOMRIGHT = 4;
const sal_Int32 AX_DISPLAYSTYLE_TEXT = 1;
const sal_Int32 AX_DISPLAYSTYLE_LISTBOX = 2;
const sal_Int32 AX_DISPLAYSTYLE_COMBOBOX = 3;
const sal_Int32 AX_DISPLAYSTYLE_CHECKBOX = 4;
const sal_Int32 AX_DISPLAYSTYLE_OPTBUTTON = 5;
const sal_Int32 AX_DISPLAYSTYLE_TOGGLE = 6;
const sal_Int32 AX_DISPLAYSTYLE_DROPDOWN = 7;
const sal_Int32 AX_SELECTION_SINGLE = 0;
const sal_Int32 AX_SELECTION_MULTI = 1;
const sal_Int32 AX_SELECTION_EXTENDED = 2;
const sal_Int32 AX_SHOWDROPBUTTON_NEVER = 0;
const sal_Int32 AX_SHOWDROPBUTTON_FOCUS = 1;
const sal_Int32 AX_SHOWDROPBUTTON_ALWAYS = 2;
const sal_Int32 AX_SCROLLBAR_NONE = 0x00;
const sal_Int32 AX_SCROLLBAR_HORIZONTAL = 0x01;
const sal_Int32 AX_SCROLLBAR_VERTICAL = 0x02;
/** Enumerates all UNO API control types supported by these filters. */
enum ApiControlType
{
API_CONTROL_BUTTON,
API_CONTROL_FIXEDTEXT,
API_CONTROL_IMAGE,
API_CONTROL_CHECKBOX,
API_CONTROL_RADIOBUTTON,
API_CONTROL_EDIT,
API_CONTROL_NUMERIC,
API_CONTROL_LISTBOX,
API_CONTROL_COMBOBOX,
API_CONTROL_SPINBUTTON,
API_CONTROL_SCROLLBAR,
API_CONTROL_TABSTRIP, //11
API_CONTROL_PROGRESSBAR,
API_CONTROL_GROUPBOX,
API_CONTROL_FRAME, // 14
API_CONTROL_PAGE, // 15
API_CONTROL_MULTIPAGE, // 16
API_CONTROL_DIALOG // 17
};
/** Specifies how a form control supports transparent background. */
enum class ApiTransparencyMode
{
NotSupported, ///< Control does not support transparency.
Void, ///< Transparency is enabled by missing fill color.
};
/** Specifies how a form control supports the DefaultState property. */
enum ApiDefaultStateMode
{
API_DEFAULTSTATE_BOOLEAN, ///< Control does not support tri-state, state is given as boolean.
API_DEFAULTSTATE_SHORT, ///< Control does not support tri-state, state is given as short.
API_DEFAULTSTATE_TRISTATE ///< Control supports tri-state, state is given as short.
};
/** A base class with useful helper functions for something that is able to
convert ActiveX and ComCtl form controls.
*/
class OOX_DLLPUBLIC ControlConverter final
{
public:
explicit ControlConverter(
const css::uno::Reference< css::frame::XModel >& rxDocModel,
const GraphicHelper& rGraphicHelper,
bool bDefaultColorBgr = true );
~ControlConverter();
// Generic conversion -----------------------------------------------------
/** Converts the passed position in 1/100 mm to UNO properties. */
void convertPosition(
PropertyMap& rPropMap,
const AxPairData& rPos ) const;
/** Converts the passed size in 1/100 mm to UNO properties. */
void convertSize(
PropertyMap& rPropMap,
const AxPairData& rSize ) const;
/** Converts the passed encoded OLE color to UNO properties. */
void convertColor(
PropertyMap& rPropMap,
sal_Int32 nPropId,
sal_uInt32 nOleColor ) const;
static void convertToMSColor(
PropertySet const & rPropSet,
sal_Int32 nPropId,
sal_uInt32& nOleColor,
sal_uInt32 nDefault = 0 );
/** Converts the passed StdPic picture stream to UNO properties. */
void convertPicture(
PropertyMap& rPropMap,
const StreamDataSequence& rPicData ) const;
/** Converts the control orientation to UNO properties. */
static void convertOrientation(
PropertyMap& rPropMap,
bool bHorizontal );
static void convertToMSOrientation(
PropertySet const & rPropMap,
bool& bHorizontal );
/** Converts the vertical alignment to UNO properties. */
static void convertVerticalAlign(
PropertyMap& rPropMap,
sal_Int32 nVerticalAlign );
/** Converts common scrollbar settings to UNO properties. */
static void convertScrollBar(
PropertyMap& rPropMap,
sal_Int32 nMin, sal_Int32 nMax, sal_Int32 nPosition,
sal_Int32 nSmallChange, sal_Int32 nLargeChange, bool bAwtModel );
/** Converts scrollability settings to UNO properties. */
void convertScrollabilitySettings(
PropertyMap& rPropMap,
const AxPairData& rScrollPos, const AxPairData& rScrollArea,
sal_Int32 nScrollBars ) const;
/** Binds the passed control model to the passed data sources. The
implementation will check which source types are supported. */
void bindToSources(
const css::uno::Reference< css::awt::XControlModel >& rxCtrlModel,
const OUString& rCtrlSource,
const OUString& rRowSource,
sal_Int32 nRefSheet = 0 ) const;
// ActiveX (Forms 2.0) specific conversion --------------------------------
/** Converts the Forms 2.0 background formatting to UNO properties. */
void convertAxBackground(
PropertyMap& rPropMap,
sal_uInt32 nBackColor,
sal_uInt32 nFlags,
ApiTransparencyMode eTranspMode ) const;
/** Converts the Forms 2.0 border formatting to UNO properties. */
void convertAxBorder(
PropertyMap& rPropMap,
sal_uInt32 nBorderColor,
sal_Int32 nBorderStyle,
sal_Int32 nSpecialEffect ) const;
static void convertToAxBorder(
PropertySet const & rPropSet,
sal_uInt32& nBorderColor,
sal_Int32& nBorderStyle,
sal_Int32& nSpecialEffect );
/** Converts the Forms 2.0 special effect to UNO properties. */
static void convertAxVisualEffect(
PropertyMap& rPropMap,
sal_Int32 nSpecialEffect );
static void convertToAxVisualEffect(
PropertySet const & rPropSet,
sal_Int32& nSpecialEffect );
/** Converts the passed picture stream and Forms 2.0 position to UNO
properties. */
void convertAxPicture(
PropertyMap& rPropMap,
const StreamDataSequence& rPicData,
sal_uInt32 nPicPos ) const;
/** Converts the passed picture stream and Forms 2.0 position to UNO
properties. */
void convertAxPicture(
PropertyMap& rPropMap,
const StreamDataSequence& rPicData,
sal_Int32 nPicSizeMode ) const;
/** Converts the Forms 2.0 value for checked/unchecked/dontknow to UNO
properties. */
static void convertAxState(
PropertyMap& rPropMap,
const OUString& rValue,
sal_Int32 nMultiSelect,
ApiDefaultStateMode eDefStateMode,
bool bAwtModel );
static void convertToAxState(
PropertySet const & rPropSet,
OUString& rValue,
sal_Int32& nMultiSelect,
ApiDefaultStateMode eDefStateMode );
/** Converts the Forms 2.0 control orientation to UNO properties. */
static void convertAxOrientation(
PropertyMap& rPropMap,
const AxPairData& rSize,
sal_Int32 nOrientation );
static void convertToAxOrientation(
PropertySet const & rPropSet,
sal_Int32& nOrientation );
private:
css::uno::Reference< css::frame::XModel > mxDocModel;
const GraphicHelper& mrGraphicHelper;
mutable PropertySet maAddressConverter;
mutable PropertySet maRangeConverter;
bool mbDefaultColorBgr;
};
/** Base class for all models of form controls. */
class OOX_DLLPUBLIC ControlModelBase
{
public:
explicit ControlModelBase();
virtual ~ControlModelBase();
/** Sets this control model to AWT model mode. */
void setAwtModelMode() { mbAwtModel = true; }
/** Sets this control model to form component mode. */
void setFormComponentMode() { mbAwtModel = false; }
/** Returns the UNO service name used to construct the AWT control model,
or the control form component. */
OUString getServiceName() const;
/** Derived classes set specific OOXML properties at the model structure. */
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue );
/** Derived classes set binary data (picture, mouse icon) at the model structure. */
virtual void importPictureData( sal_Int32 nPropId, BinaryInputStream& rInStrm );
/** Derived classes import a form control model from the passed input stream. */
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) = 0;
/** Derived classes export a form control model to the passed output stream. */
virtual void exportBinaryModel( BinaryOutputStream& /*rOutStrm*/ ) {}
/** Derived classes export CompObjStream contents. */
virtual void exportCompObj( BinaryOutputStream& /*rOutStrm*/ ) {}
/** Derived classes return the UNO control type enum value. */
virtual ApiControlType getControlType() const = 0;
/** Derived classes convert all control properties. */
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const;
/** Derived classes convert from uno control properties to equiv. MS values. */
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv );
/** Converts the control size to UNO properties. */
void convertSize( PropertyMap& rPropMap, const ControlConverter& rConv ) const;
public: // direct access needed for legacy VML drawing controls
AxPairData maSize; ///< Size of the control in 1/100 mm.
protected:
bool mbAwtModel; ///< True = AWT control model, false = form component.
};
typedef std::shared_ptr< ControlModelBase > ControlModelRef;
/** Base class for all models of ComCtl form controls. */
class ComCtlModelBase : public ControlModelBase
{
public:
explicit ComCtlModelBase(
sal_uInt32 nDataPartId5, sal_uInt32 nDataPartId6, sal_uInt16 nVersion );
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
protected:
virtual void importControlData( BinaryInputStream& rInStrm ) = 0;
private:
/** Returns the data part identifier according to the model version. */
sal_uInt32 getDataPartId() const;
static bool readPartHeader( BinaryInputStream& rInStrm,
sal_uInt32 nExpPartId,
sal_uInt16 nExpMajor = SAL_MAX_UINT16,
sal_uInt16 nExpMinor = SAL_MAX_UINT16 );
bool importSizePart( BinaryInputStream& rInStrm );
bool importCommonPart( BinaryInputStream& rInStrm, sal_uInt32 nPartSize );
bool importComplexPart( BinaryInputStream& rInStrm );
protected:
StdFontInfo maFontData; ///< Font formatting.
StreamDataSequence maMouseIcon; ///< Binary picture stream for mouse icon.
sal_uInt32 mnFlags; ///< Common flags for ComCtl controls.
const sal_uInt16 mnVersion; ///< Current version of the ComCtl control model.
private:
sal_uInt32 mnDataPartId5; ///< Identifier for version 5.0 control data.
sal_uInt32 mnDataPartId6; ///< Identifier for version 6.0 control data.
bool mbCommonPart; ///< True = the COMCTL_COMMONDATA part exists.
bool mbComplexPart; ///< True = the COMCTL_COMPLEXDATA part exists.
};
/** Model for a ComCtl scroll bar. */
class ComCtlScrollBarModel final : public ComCtlModelBase
{
public:
explicit ComCtlScrollBarModel( sal_uInt16 nVersion );
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
private:
virtual void importControlData( BinaryInputStream& rInStrm ) override;
sal_uInt32 mnScrollBarFlags; ///< Special flags for scroll bar model.
sal_Int32 mnLargeChange; ///< Increment step size (thumb).
sal_Int32 mnSmallChange; ///< Increment step size (buttons).
sal_Int32 mnMin; ///< Minimum of the value range.
sal_Int32 mnMax; ///< Maximum of the value range.
sal_Int32 mnPosition; ///< Value of the spin button.
};
/** Model for a ComCtl progress bar. */
class ComCtlProgressBarModel final : public ComCtlModelBase
{
public:
explicit ComCtlProgressBarModel( sal_uInt16 nVersion );
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
private:
virtual void importControlData( BinaryInputStream& rInStrm ) override;
float mfMin; ///< Minimum of the value range.
float mfMax; ///< Maximum of the value range.
sal_uInt16 mnVertical; ///< 0 = horizontal, 1 = vertical.
sal_uInt16 mnSmooth; ///< 0 = progress blocks, 1 = pixel resolution.
};
/** Base class for all models of Form 2.0 form controls. */
class OOX_DLLPUBLIC AxControlModelBase : public ControlModelBase
{
public:
explicit AxControlModelBase();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
};
/** Base class for Forms 2.0 controls supporting text formatting. */
class OOX_DLLPUBLIC AxFontDataModel : public AxControlModelBase
{
public:
explicit AxFontDataModel( bool bSupportsAlign = true );
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
/** Returns the font height in points. */
sal_Int16 getFontHeight() const { return maFontData.getHeightPoints(); }
public: // direct access needed for legacy VML drawing controls
AxFontData maFontData; ///< The font settings.
private:
bool mbSupportsAlign; ///< True = UNO model supports Align property.
};
/** Model for a Forms 2.0 command button. */
class OOX_DLLPUBLIC AxCommandButtonModel final : public AxFontDataModel
{
public:
explicit AxCommandButtonModel();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual void importPictureData( sal_Int32 nPropId, BinaryInputStream& rInStrm ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
public: // direct access needed for legacy VML drawing controls
StreamDataSequence maPictureData; ///< Binary picture stream.
OUString maCaption; ///< Visible caption of the button.
sal_uInt32 mnTextColor; ///< Text color.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnFlags; ///< Various flags.
sal_uInt32 mnPicturePos; ///< Position of the picture relative to text.
sal_Int32 mnVerticalAlign; ///< Vertical alignment (legacy VML drawing controls only).
bool mbFocusOnClick; ///< True = take focus on click.
};
/** Model for a Forms 2.0 label. */
class OOX_DLLPUBLIC AxLabelModel final : public AxFontDataModel
{
public:
explicit AxLabelModel();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
public: // direct access needed for legacy VML drawing controls
OUString maCaption; ///< Visible caption of the button.
sal_uInt32 mnTextColor; ///< Text color.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnFlags; ///< Various flags.
sal_uInt32 mnBorderColor; ///< Flat border color.
sal_Int32 mnBorderStyle; ///< Flat border style.
sal_Int32 mnSpecialEffect; ///< 3D border effect.
sal_Int32 mnVerticalAlign; ///< Vertical alignment (legacy VML drawing controls only).
};
/** Model for a Forms 2.0 image. */
class OOX_DLLPUBLIC AxImageModel final : public AxControlModelBase
{
public:
explicit AxImageModel();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual void importPictureData( sal_Int32 nPropId, BinaryInputStream& rInStrm ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
private:
StreamDataSequence maPictureData; ///< Binary picture stream.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnFlags; ///< Various flags.
sal_uInt32 mnBorderColor; ///< Flat border color.
sal_Int32 mnBorderStyle; ///< Flat border style.
sal_Int32 mnSpecialEffect; ///< 3D border effect.
sal_Int32 mnPicSizeMode; ///< Clip, stretch, zoom.
sal_Int32 mnPicAlign; ///< Anchor position of the picture.
bool mbPicTiling; ///< True = picture is repeated.
};
class OOX_DLLPUBLIC AxTabStripModel final : public AxFontDataModel
{
public:
explicit AxTabStripModel();
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual ApiControlType getControlType() const override;
public:
sal_uInt32 mnListIndex;
sal_uInt32 mnTabStyle;
sal_uInt32 mnTabData;
sal_uInt32 mnVariousPropertyBits;
std::vector< OUString > maItems; // captions for each tab
std::vector< OUString > maTabNames; // names for each tab
};
/** Base class for a Forms 2.0 morph data control. */
class OOX_DLLPUBLIC AxMorphDataModelBase : public AxFontDataModel
{
public:
explicit AxMorphDataModelBase();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual void importPictureData( sal_Int32 nPropId, BinaryInputStream& rInStrm ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
public: // direct access needed for legacy VML drawing controls
StreamDataSequence maPictureData; ///< Binary picture stream.
OUString maCaption; ///< Visible caption of the button.
OUString maValue; ///< Current value of the control.
OUString maGroupName; ///< Group name for option buttons.
sal_uInt32 mnTextColor; ///< Text color.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnFlags; ///< Various flags.
sal_uInt32 mnPicturePos; ///< Position of the picture relative to text.
sal_uInt32 mnBorderColor; ///< Flat border color.
sal_Int32 mnBorderStyle; ///< Flat border style.
sal_Int32 mnSpecialEffect; ///< 3D border effect.
sal_Int32 mnDisplayStyle; ///< Type of the morph control.
sal_Int32 mnMultiSelect; ///< Selection mode.
sal_Int32 mnScrollBars; ///< Horizontal/vertical scroll bar.
sal_Int32 mnMatchEntry; ///< Auto completion mode.
sal_Int32 mnShowDropButton; ///< When to show the dropdown button.
sal_Int32 mnMaxLength; ///< Maximum character count.
sal_Int32 mnPasswordChar; ///< Password character in edit fields.
sal_Int32 mnListRows; ///< Number of rows in dropdown box.
sal_Int32 mnVerticalAlign; ///< Vertical alignment (legacy VML drawing controls only).
};
/** Model for a Forms 2.0 toggle button. */
class OOX_DLLPUBLIC AxToggleButtonModel final : public AxMorphDataModelBase
{
public:
explicit AxToggleButtonModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a Forms 2.0 check box. */
class OOX_DLLPUBLIC AxCheckBoxModel final : public AxMorphDataModelBase
{
public:
explicit AxCheckBoxModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a Forms 2.0 option button. */
class OOX_DLLPUBLIC AxOptionButtonModel final : public AxMorphDataModelBase
{
public:
explicit AxOptionButtonModel();
/** Returns the group name used to goup several option buttons together. */
const OUString& getGroupName() const { return maGroupName; }
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a Forms 2.0 text box. */
class OOX_DLLPUBLIC AxTextBoxModel : public AxMorphDataModelBase
{
public:
explicit AxTextBoxModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a numeric field (legacy drawing controls only). */
class OOX_DLLPUBLIC AxNumericFieldModel final : public AxMorphDataModelBase
{
public:
explicit AxNumericFieldModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a Forms 2.0 list box. */
class OOX_DLLPUBLIC AxListBoxModel : public AxMorphDataModelBase
{
public:
explicit AxListBoxModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a Forms 2.0 combo box. */
class OOX_DLLPUBLIC AxComboBoxModel final : public AxMorphDataModelBase
{
public:
explicit AxComboBoxModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
};
/** Model for a Forms 2.0 spin button. */
class OOX_DLLPUBLIC AxSpinButtonModel final : public AxControlModelBase
{
public:
explicit AxSpinButtonModel();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
public: // direct access needed for legacy VML drawing controls
sal_uInt32 mnArrowColor; ///< Button arrow color.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnFlags; ///< Various flags.
sal_Int32 mnOrientation; ///< Orientation of the buttons.
sal_Int32 mnMin; ///< Minimum of the value range.
sal_Int32 mnMax; ///< Maximum of the value range.
sal_Int32 mnPosition; ///< Value of the spin button.
sal_Int32 mnSmallChange; ///< Increment step size.
sal_Int32 mnDelay; ///< Repeat delay in milliseconds.
};
/** Model for a Forms 2.0 scroll bar. */
class OOX_DLLPUBLIC AxScrollBarModel final : public AxControlModelBase
{
public:
explicit AxScrollBarModel();
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void exportBinaryModel( BinaryOutputStream& rOutStrm ) override;
virtual void exportCompObj( BinaryOutputStream& rOutStrm ) override;
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
virtual void convertFromProperties( PropertySet& rPropSet, const ControlConverter& rConv ) override;
public: // direct access needed for legacy VML drawing controls
sal_uInt32 mnArrowColor; ///< Button arrow color.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnFlags; ///< Various flags.
sal_Int32 mnOrientation; ///< Orientation of the buttons.
sal_Int32 mnPropThumb; ///< Proportional thumb size.
sal_Int32 mnMin; ///< Minimum of the value range.
sal_Int32 mnMax; ///< Maximum of the value range.
sal_Int32 mnPosition; ///< Value of the spin button.
sal_Int32 mnSmallChange; ///< Increment step size (buttons).
sal_Int32 mnLargeChange; ///< Increment step size (thumb).
sal_Int32 mnDelay; ///< Repeat delay in milliseconds.
};
typedef ::std::vector< OUString > AxClassTable;
/** Base class for ActiveX container controls. */
class OOX_DLLPUBLIC AxContainerModelBase : public AxFontDataModel
{
public:
explicit AxContainerModelBase( bool bFontSupport = false );
/** Allows to set single properties specified by XML token identifier. */
virtual void importProperty( sal_Int32 nPropId, const OUString& rValue ) override;
/** Reads the leading structure in the 'f' stream containing the model for
this control. */
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
/** Converts font settings if supported. */
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
/** Reads the class table structure for embedded controls following the own
model from the 'f' stream. */
bool importClassTable( BinaryInputStream& rInStrm, AxClassTable& orClassTable );
public: // direct access needed for legacy VML drawing controls
StreamDataSequence maPictureData; ///< Binary picture stream.
OUString maCaption; ///< Visible caption of the form.
AxPairData maLogicalSize; ///< Logical form size (scroll area).
AxPairData maScrollPos; ///< Scroll position.
sal_uInt32 mnBackColor; ///< Fill color.
sal_uInt32 mnTextColor; ///< Text color.
sal_uInt32 mnFlags; ///< Various flags.
sal_uInt32 mnBorderColor; ///< Flat border color.
sal_Int32 mnBorderStyle; ///< Flat border style.
sal_Int32 mnScrollBars; ///< Horizontal/vertical scroll bar.
sal_Int32 mnCycleType; ///< Cycle in all forms or in this form.
sal_Int32 mnSpecialEffect; ///< 3D border effect.
sal_Int32 mnPicAlign; ///< Anchor position of the picture.
sal_Int32 mnPicSizeMode; ///< Clip, stretch, zoom.
bool mbPicTiling; ///< True = picture is repeated.
bool mbFontSupport; ///< True = control supports the font property.
};
/** Model for a Forms 2.0 frame control. */
class OOX_DLLPUBLIC AxFrameModel final : public AxContainerModelBase
{
public:
explicit AxFrameModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
};
class OOX_DLLPUBLIC AxPageModel final : public AxContainerModelBase
{
public:
explicit AxPageModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
};
class OOX_DLLPUBLIC AxMultiPageModel final : public AxContainerModelBase
{
public:
explicit AxMultiPageModel();
virtual ApiControlType getControlType() const override;
void importPageAndMultiPageProperties( BinaryInputStream& rInStrm, sal_Int32 nPages );
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
std::vector<sal_uInt32> mnIDs;
sal_uInt32 mnActiveTab;
sal_uInt32 mnTabStyle;
};
/** Model for a Forms 2.0 user form. */
class OOX_DLLPUBLIC AxUserFormModel final : public AxContainerModelBase
{
public:
explicit AxUserFormModel();
virtual ApiControlType getControlType() const override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
};
class HtmlSelectModel final : public AxListBoxModel
{
css::uno::Sequence< OUString > msListData;
css::uno::Sequence< sal_Int16 > msIndices;
public:
HtmlSelectModel();
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
virtual void convertProperties( PropertyMap& rPropMap, const ControlConverter& rConv ) const override;
};
class HtmlTextBoxModel final : public AxTextBoxModel
{
public:
explicit HtmlTextBoxModel();
virtual bool importBinaryModel( BinaryInputStream& rInStrm ) override;
};
/** A form control embedded in a document draw page. Contains a specific model
structure according to the type of the control. */
class OOX_DLLPUBLIC EmbeddedControl
{
public:
explicit EmbeddedControl( const OUString& rName );
/** Creates and returns the internal control model of the specified type. */
template< typename ModelType >
inline ModelType& createModel();
/** Creates and returns the internal control model of the specified type. */
template< typename ModelType, typename ParamType >
inline ModelType& createModel( const ParamType& rParam );
/** Creates and returns the internal control model according to the passed
MS class identifier. */
ControlModelBase* createModelFromGuid( const OUString& rClassId );
/** Returns true, if the internal control model exists. */
bool hasModel() const { return mxModel.get() != nullptr; }
/** Returns read-only access to the internal control model. */
const ControlModelBase* getModel() const { return mxModel.get(); }
/** Returns read/write access to the internal control model. */
ControlModelBase* getModel() { return mxModel.get(); }
/** Returns the UNO service name needed to construct the control model. */
OUString getServiceName() const;
/** Converts all control properties and inserts them into the passed model. */
bool convertProperties(
const css::uno::Reference< css::awt::XControlModel >& rxCtrlModel,
const ControlConverter& rConv ) const;
void convertFromProperties(
const css::uno::Reference< css::awt::XControlModel >& rxCtrlModel,
const ControlConverter& rConv );
private:
ControlModelRef mxModel; ///< Control model containing the properties.
OUString maName; ///< Name of the control.
};
template< typename ModelType >
inline ModelType& EmbeddedControl::createModel()
{
auto xModel = std::make_shared<ModelType>();
mxModel = xModel;
xModel->setFormComponentMode();
return *xModel;
}
template< typename ModelType, typename ParamType >
inline ModelType& EmbeddedControl::createModel( const ParamType& rParam )
{
auto xModel = std::make_shared<ModelType>( rParam );
mxModel = xModel;
xModel->setFormComponentMode();
return *xModel;
}
/** A wrapper for a control form embedded directly in a draw page. */
class EmbeddedForm
{
public:
explicit EmbeddedForm(
const css::uno::Reference< css::frame::XModel >& rxDocModel,
const css::uno::Reference< css::drawing::XDrawPage >& rxDrawPage,
const GraphicHelper& rGraphicHelper );
/** Converts the passed control and inserts the control model into the form.
@return The API control model, if conversion was successful. */
css::uno::Reference< css::awt::XControlModel >
convertAndInsert( const EmbeddedControl& rControl, sal_Int32& rnCtrlIndex );
/** Returns the XIndexContainer interface of the UNO control form, if existing. */
const css::uno::Reference< css::container::XIndexContainer >&
getXForm() const { return mxFormIC; }
private:
/** Creates the form that will hold the form controls. */
css::uno::Reference< css::container::XIndexContainer > const &
createXForm();
private:
ControlConverter maControlConv;
css::uno::Reference< css::lang::XMultiServiceFactory > mxModelFactory;
css::uno::Reference< css::form::XFormsSupplier > mxFormsSupp;
css::uno::Reference< css::container::XIndexContainer > mxFormIC;
};
} // namespace ole
} // namespace oox
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|