summaryrefslogtreecommitdiff
path: root/sw/source/ui/config/cfgitems.cxx
blob: 1d5f27d5daefe495bfde41a4a81dde103a8cc726 (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
/*************************************************************************
 *
 *  $RCSfile: cfgitems.cxx,v $
 *
 *  $Revision: 1.3 $
 *
 *  last change: $Author: os $ $Date: 2001-05-10 08:47:33 $
 *
 *  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 PRECOMPILED
#include "ui_pch.hxx"
#endif

#pragma hdrstop

#ifndef __SBX_SBXVARIABLE_HXX //autogen
#include <svtools/sbxvar.hxx>
#endif

#ifndef _SVX_SVXIDS_HRC //autogen
#include <svx/svxids.hrc>
#endif

#ifndef _SVX_SVXENUM_HXX //autogen
#include <svx/svxenum.hxx>
#endif


#include "viewopt.hxx"
#include "swtypes.hxx"
#include "cmdid.h"
#include "prtopt.hxx"
#include "cfgitems.hxx"
#include "crstate.hxx"



TYPEINIT1_AUTOFACTORY(SwDocDisplayItem, SfxPoolItem)
TYPEINIT1_AUTOFACTORY(SwElemItem, SfxPoolItem)
TYPEINIT1_AUTOFACTORY(SwAddPrinterItem, SfxPoolItem)
TYPEINIT1_AUTOFACTORY(SwShadowCursorItem, SfxPoolItem)


SwDocDisplayItem::SwDocDisplayItem( USHORT nWhich ) :
        SfxPoolItem(nWhich),
        aIndexBackgrndCol(COL_GRAY)
{
    bParagraphEnd       =
    bTab                =
    bSpace              =
    bNonbreakingSpace   =
    bSoftHyphen         =
    bHiddenText         =
    bManualBreak        =
    bShowHiddenPara     = FALSE;

};

/*------------OS 12.01.95 -------------------------------------------
    Item fuer Einstellungsdialog, Seite Dokumentansicht
--------------------------------------------------------------------*/

SwDocDisplayItem::SwDocDisplayItem( const SwDocDisplayItem& rDocDisplayItem ):
            SfxPoolItem(rDocDisplayItem)
{
    *this = rDocDisplayItem;
};

/*----------------------- -------------------------------------------

--------------------------------------------------------------------*/

SwDocDisplayItem::SwDocDisplayItem(const SwViewOption& rVOpt, USHORT nWhich ) :
            SfxPoolItem( nWhich )
{
    bParagraphEnd       = rVOpt.IsParagraph(TRUE);
    bTab                = rVOpt.IsTab(TRUE);
    bSpace              = rVOpt.IsBlank(TRUE);
    bNonbreakingSpace   = rVOpt.IsHardBlank();
    bSoftHyphen         = rVOpt.IsSoftHyph();
    bHiddenText         = rVOpt.IsHidden();
    bManualBreak        = rVOpt.IsLineBreak(TRUE);
    bShowHiddenPara     = rVOpt.IsShowHiddenPara();

}
/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SfxPoolItem* SwDocDisplayItem::Clone( SfxItemPool*  ) const
{
    return new SwDocDisplayItem( *this );
}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

int SwDocDisplayItem::operator==( const SfxPoolItem& rAttr ) const
{
    DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unterschiedliche Typen" );

    const SwDocDisplayItem& rItem = (SwDocDisplayItem&)rAttr;

    return (  bParagraphEnd         == rItem.bParagraphEnd       &&
              bTab                  == rItem.bTab                &&
              bSpace                == rItem.bSpace              &&
              bNonbreakingSpace     == rItem.bNonbreakingSpace   &&
              bSoftHyphen           == rItem.bSoftHyphen         &&
              bHiddenText           == rItem.bHiddenText         &&
              bManualBreak          == rItem.bManualBreak        &&
              bShowHiddenPara       == rItem.bShowHiddenPara );
}


/*-----------------31.08.96 14.14-------------------

--------------------------------------------------*/


void  SwDocDisplayItem::operator=( const SwDocDisplayItem& rDocDisplayItem)
{
    bParagraphEnd       = rDocDisplayItem.bParagraphEnd         ;
    bTab                = rDocDisplayItem.bTab                  ;
    bSpace              = rDocDisplayItem.bSpace                ;
    bNonbreakingSpace   = rDocDisplayItem.bNonbreakingSpace     ;
    bSoftHyphen         = rDocDisplayItem.bSoftHyphen           ;
    bHiddenText         = rDocDisplayItem.bHiddenText           ;
    bManualBreak        = rDocDisplayItem.bManualBreak          ;
    bShowHiddenPara     = rDocDisplayItem.bShowHiddenPara       ;
}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/
void SwDocDisplayItem::FillViewOptions( SwViewOption& rVOpt) const
{
    rVOpt.SetParagraph  (bParagraphEnd      );
    rVOpt.SetTab        (bTab               );
    rVOpt.SetBlank      (bSpace             );
    rVOpt.SetHardBlank  (bNonbreakingSpace  );
    rVOpt.SetSoftHyph   (bSoftHyphen        );
    rVOpt.SetHidden     (bHiddenText        );
    rVOpt.SetLineBreak  (bManualBreak       );
    rVOpt.SetShowHiddenPara(bShowHiddenPara );
}


/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/
SwElemItem::SwElemItem( USHORT nWhich ) :
    SfxPoolItem(nWhich)
{
    bHorzScrollbar =
    bVertScrollbar =
    bHorzRuler     =
    bVertRuler     =
    bTableBounds   =
    bSectionBounds =
    bCrosshair     =
    bBounds        =
    bHandles       =
    bBigHandles     =
    bSmoothScroll  =
    bIndexEntry         =
    bIndexBackground    =
    bFootnoteBackground =
    bField              =
    bTable              =
    bGraphic            =
    bDrawing            =
    bFieldName          =
    bNotes              = FALSE;
}
/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SwElemItem::SwElemItem( const SwElemItem& rElemItem ):
            SfxPoolItem(rElemItem)
{
    *this = rElemItem;
}
/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SwElemItem::SwElemItem(const SwViewOption& rVOpt, USHORT nWhich) :
            SfxPoolItem( nWhich )
{
    bHorzScrollbar  = rVOpt.IsViewHScrollBar();
    bVertScrollbar  = rVOpt.IsViewVScrollBar();
    bHorzRuler      = rVOpt.IsViewTabwin();
    bVertRuler      = rVOpt.IsViewVLin();
    bTableBounds    = rVOpt.IsSubsTable();
    bSectionBounds  = rVOpt.IsSectionBounds();
    bCrosshair      = rVOpt.IsCrossHair();
    bBounds         = rVOpt.IsSubsLines();
    bHandles        = rVOpt.IsSolidMarkHdl();
    bBigHandles     = rVOpt.IsBigMarkHdl();
    bSmoothScroll   = rVOpt.IsSmoothScroll();
    bIndexEntry         = rVOpt.IsTox();
    bIndexBackground    = rVOpt.IsIndexBackground();
    bFootnoteBackground = rVOpt.IsFootNote();
    bField              = rVOpt.IsField();
    bTable              = rVOpt.IsTable();
    bGraphic            = rVOpt.IsGraphic();
    bDrawing            = rVOpt.IsDraw() && rVOpt.IsControl();
    bFieldName          = rVOpt.IsFldName();
    bNotes              = rVOpt.IsPostIts();

}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SfxPoolItem* SwElemItem::Clone( SfxItemPool* ) const
{
    return new SwElemItem( *this );
}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

int SwElemItem::operator==( const SfxPoolItem& rAttr ) const
{
    DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unterschiedliche Typen" );

    const SwElemItem& rItem = (SwElemItem&)rAttr;

    return (    bHorzScrollbar  == rItem.bHorzScrollbar &&
                bVertScrollbar  == rItem.bVertScrollbar &&
                bHorzRuler      == rItem.bHorzRuler     &&
                bVertRuler      == rItem.bVertRuler     &&
                bTableBounds    == rItem.bTableBounds   &&
                bSectionBounds  == rItem.bSectionBounds &&
                bCrosshair      == rItem.bCrosshair     &&
                bBounds         == rItem.bBounds        &&
                bHandles        == rItem.bHandles       &&
                bBigHandles     == rItem.bBigHandles    &&
                bSmoothScroll   == rItem.bSmoothScroll  &&
                bIndexEntry           == rItem.bIndexEntry         &&
                bIndexBackground      == rItem.bIndexBackground    &&
                bFootnoteBackground   == rItem.bFootnoteBackground &&
                bField                == rItem.bField              &&
                bTable                == rItem.bTable              &&
                bGraphic              == rItem.bGraphic            &&
                bDrawing              == rItem.bDrawing            &&
                bFieldName            == rItem.bFieldName          &&
                bNotes                == rItem.bNotes             );
}

/*-----------------31.08.96 14.13-------------------

--------------------------------------------------*/


void  SwElemItem::operator=( const SwElemItem& rElemItem)
{
    bHorzScrollbar  = rElemItem.  bHorzScrollbar    ;
    bVertScrollbar  = rElemItem.  bVertScrollbar    ;
    bHorzRuler      = rElemItem.  bHorzRuler        ;
    bVertRuler      = rElemItem.  bVertRuler        ;
    bTableBounds    = rElemItem.  bTableBounds      ;
    bSectionBounds  = rElemItem.  bSectionBounds    ;
    bCrosshair      = rElemItem.  bCrosshair        ;
    bBounds         = rElemItem.  bBounds           ;
    bHandles        = rElemItem.  bHandles          ;
    bBigHandles     = rElemItem.  bBigHandles       ;
    bSmoothScroll   = rElemItem.  bSmoothScroll     ;
    bIndexEntry         = rElemItem.bIndexEntry           ;
    bIndexBackground    = rElemItem.bIndexBackground      ;
    bFootnoteBackground = rElemItem.bFootnoteBackground   ;
    bField              = rElemItem.bField                ;
    bTable              = rElemItem.bTable                ;
    bGraphic            = rElemItem.bGraphic              ;
    bDrawing            = rElemItem.bDrawing              ;
    bFieldName          = rElemItem.bFieldName            ;
    bNotes              = rElemItem.bNotes                ;
}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

void SwElemItem::FillViewOptions( SwViewOption& rVOpt) const
{
    rVOpt.SetViewHScrollBar(bHorzScrollbar );
    rVOpt.SetViewVScrollBar(bVertScrollbar );
    rVOpt.SetViewTabwin(bHorzRuler    );
    rVOpt.SetViewVLin(bVertRuler      );
    rVOpt.SetSubsTable(bTableBounds   );
    rVOpt.SetSectionBounds(bSectionBounds);
    rVOpt.SetCrossHair(bCrosshair     );
    rVOpt.SetSubsLines(bBounds        );
    rVOpt.SetSolidMarkHdl(bHandles    );
    rVOpt.SetBigMarkHdl(bBigHandles );
    rVOpt.SetSmoothScroll(bSmoothScroll);
    rVOpt.SetTox        (bIndexEntry        );
    rVOpt.SetFootNote   (bFootnoteBackground);
    rVOpt.SetIndexBackground(bIndexBackground);
    rVOpt.SetField      (bField             );
    rVOpt.SetTable      (bTable             );
    rVOpt.SetGraphic    (bGraphic           );
    rVOpt.SetDraw       (bDrawing           );
    rVOpt.SetControl    (bDrawing           );
    rVOpt.SetFldName    (bFieldName         );
    rVOpt.SetPostIts    (bNotes             );
}


/*--------------------------------------------------------------------
    Beschreibung: CopyCTOR
 --------------------------------------------------------------------*/

SwAddPrinterItem::SwAddPrinterItem( const SwAddPrinterItem& rAddPrinterItem ):
            SfxPoolItem(rAddPrinterItem)
{
    *((SwPrintData*)this) = rAddPrinterItem;
};

/*--------------------------------------------------------------------
    Beschreibung: CTOR fuer leeres Item
 --------------------------------------------------------------------*/

SwAddPrinterItem::SwAddPrinterItem( USHORT nWhich):
                SfxPoolItem(nWhich)
{
}
/*--------------------------------------------------------------------
    Beschreibung: CTOR aus SwPrintOptions
 --------------------------------------------------------------------*/

SwAddPrinterItem::SwAddPrinterItem( USHORT nWhich, const SwPrintData& rPrtData ) :
    SfxPoolItem(nWhich)
{
    SwPrintData::operator=(rPrtData);
}
/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SfxPoolItem* SwAddPrinterItem::Clone( SfxItemPool* ) const
{
    return new SwAddPrinterItem( *this );
}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

int SwAddPrinterItem::operator==( const SfxPoolItem& rAttr ) const
{
    DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unterschiedliche Typen" );

    const SwAddPrinterItem& rItem = (SwAddPrinterItem&)rAttr;

    return  SwPrintData::operator==(rItem);
}
/*-----------------03.11.97 10:00-------------------
 Item fuer Einstellungsdialog, ShadowCursorSeite
--------------------------------------------------*/

SwShadowCursorItem::SwShadowCursorItem( USHORT nWhich )
    : SfxPoolItem( nWhich ),
    bOn( FALSE ), eMode( FILL_TAB ), aColor( COL_BLUE )
{
}

SwShadowCursorItem::SwShadowCursorItem( const SwShadowCursorItem& rCpy )
    : SfxPoolItem( rCpy.Which() ),
    bOn( rCpy.IsOn() ), eMode( rCpy.GetMode() ), aColor( rCpy.GetColor() )
{
}

SwShadowCursorItem::SwShadowCursorItem( const SwViewOption& rVOpt, USHORT nWhich )
    : SfxPoolItem( nWhich ),
    bOn( rVOpt.IsShadowCursor() ),
    eMode( rVOpt.GetShdwCrsrFillMode() ),
    aColor( rVOpt.GetShdwCrsrColor() )
{
}

SfxPoolItem* SwShadowCursorItem::Clone( SfxItemPool* ) const
{
    return new SwShadowCursorItem( *this );
}

int SwShadowCursorItem::operator==( const SfxPoolItem& rCmp ) const
{
    return  IsOn() == ((SwShadowCursorItem&)rCmp).IsOn() &&
            GetMode() == ((SwShadowCursorItem&)rCmp).GetMode() &&
            GetColor() == ((SwShadowCursorItem&)rCmp).GetColor();
}

void SwShadowCursorItem::operator=( const SwShadowCursorItem& rCpy )
{
    SetOn( rCpy.IsOn() );
    SetMode( rCpy.GetMode() );
    SetColor( rCpy.GetColor() );
}


void SwShadowCursorItem::FillViewOptions( SwViewOption& rVOpt ) const
{
    rVOpt.SetShadowCursor( bOn );
    rVOpt.SetShdwCrsrFillMode( eMode );
    rVOpt.SetShdwCrsrColor( aColor );
}

#ifndef PRODUCT
/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SwTestItem::SwTestItem( const SwTestItem& rTestItem ):
            SfxPoolItem(rTestItem)
{
    bTest1=rTestItem.bTest1;
    bTest2=rTestItem.bTest2;
    bTest3=rTestItem.bTest3;
    bTest4=rTestItem.bTest4;
    bTest5=rTestItem.bTest5;
    bTest6=rTestItem.bTest6;
    bTest7=rTestItem.bTest7;
    bTest8=rTestItem.bTest8;
    bTest9=rTestItem.bTest9;
    bTest10=rTestItem.bTest10;
};

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

SfxPoolItem* SwTestItem::Clone( SfxItemPool* ) const
{
    return new SwTestItem( *this );
}

/*--------------------------------------------------------------------
    Beschreibung:
 --------------------------------------------------------------------*/

int SwTestItem::operator==( const SfxPoolItem& rAttr ) const
{
    DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unterschiedliche Typen" );

    const SwTestItem& rItem = (const SwTestItem&) rAttr;

    return ( bTest1==rItem.bTest1&&
             bTest2==rItem.bTest2&&
             bTest3==rItem.bTest3&&
             bTest4==rItem.bTest4&&
             bTest5==rItem.bTest5&&
             bTest6==rItem.bTest6&&
             bTest7==rItem.bTest7&&
             bTest8==rItem.bTest8&&
             bTest9==rItem.bTest9&&
             bTest10==rItem.bTest10);
}

#endif



/*------------------------------------------------------------------------
    $Log: not supported by cvs2svn $
    Revision 1.2  2001/03/22 09:28:06  os
    options dialog changes

    Revision 1.1.1.1  2000/09/18 17:14:32  hr
    initial import

    Revision 1.80  2000/09/18 16:05:15  willem.vandorp
    OpenOffice header added.

    Revision 1.79  2000/09/07 08:26:13  os
    FaxName now in SwPrintOptions

    Revision 1.78  2000/05/26 07:21:28  os
    old SW Basic API Slots removed

    Revision 1.77  1999/12/14 14:29:10  jp
    Bug #69595#: print can create single Jobs

    Revision 1.76  1999/09/22 12:37:43  os
    big handles

    Revision 1.75  1999/09/01 08:42:36  OS
    useless GetPresentation() removed


      Rev 1.74   01 Sep 1999 10:42:36   OS
   useless GetPresentation() removed

      Rev 1.73   16 Aug 1999 14:09:42   OS
   #68153# show drawings and controls: call SetControl()

      Rev 1.72   09 Jun 1999 13:20:54   OS
   index background

      Rev 1.71   27 Jan 1999 10:03:12   OS
   #58677# Cursor in Readonly-Bereichen

      Rev 1.70   05 Mar 1998 14:34:08   OM
   Redline-Attribute in Module-Cfg speichern

      Rev 1.69   20 Feb 1998 17:10:50   OM
   ConfigItem fuer Redlining-Darstellungsoptionen

      Rev 1.68   24 Nov 1997 17:58:50   MA
   include

      Rev 1.67   11 Nov 1997 14:04:30   MA
   precomp entfernt

      Rev 1.66   03 Nov 1997 16:12:16   JP
   neu: Optionen/-Page/Basic-Schnittst. fuer ShadowCursor

      Rev 1.65   19 Aug 1997 10:36:08   OS
   PrintPreview aus den ViewSettings raus #42797#

      Rev 1.64   16 Aug 1997 09:33:06   OS
   Col/RowPreView aus den PrintSettings entfernt #42797#

      Rev 1.63   09 Jun 1997 14:28:40   MA
   chg: Browse-Flag nur noch am Doc

      Rev 1.62   06 Jun 1997 12:44:30   MA
   chg: versteckte Absaetze ausblenden

      Rev 1.61   25 Feb 1997 10:21:16   OS
   farbige Handles

      Rev 1.60   27 Jan 1997 16:29:42   OS
   HtmlMode entfernt

      Rev 1.59   11 Dec 1996 18:16:28   NF
   Cut-Copy-Paste Fehler behoben !?

      Rev 1.58   11 Dec 1996 14:12:02   OS
   Warnings auch fuers Basic ausbauen

      Rev 1.57   10 Dec 1996 17:00:06   OS
   Warnungen von der OFA

      Rev 1.56   28 Nov 1996 15:20:24   OS
   neu: Schwarz drucken

      Rev 1.55   06 Sep 1996 14:31:54   OS
   Postits beruecksichtigen

      Rev 1.54   31 Aug 1996 17:14:02   OS
   neue Optionendialoge

      Rev 1.53   25 Jul 1996 15:34:56   OS
   neu: HtmlMode

      Rev 1.52   17 Jul 1996 13:41:44   OS
   PrintBackground auch fuer Basic

      Rev 1.51   16 Jul 1996 20:19:52   MA
   includes

      Rev 1.50   16 Jul 1996 15:52:20   MA
   new: PrintPageBackground

      Rev 1.49   25 Jun 1996 17:58:08   HJS
   include prtopt.hxx

      Rev 1.48   25 Apr 1996 16:23:14   OS
   ViewOptions-Umbau: ElemItem wird nur noch aus ViewOptions erzeugt

      Rev 1.47   15 Mar 1996 15:28:18   JP
   TestFlags erweitert

      Rev 1.46   07 Mar 1996 16:54:38   JP
   AddPrintItem um weiters Flag erweitert

      Rev 1.45   01 Feb 1996 16:42:42   OS
   Reihenfolge der Printoptionen berichtigt

      Rev 1.44   04 Dec 1995 16:09:14   OS
   Set/FillVariable impl.

      Rev 1.43   28 Nov 1995 23:37:36   JP
   uisys.hxx gibt es nicht mehr

      Rev 1.42   27 Nov 1995 19:50:50   JP
   TYPEINIT_AUTOFACTORY segmentiert

      Rev 1.41   27 Nov 1995 18:55:22   OS
   Umstellung 303a

      Rev 1.40   24 Nov 1995 16:58:50   OM
   PCH->PRECOMPILED

      Rev 1.39   23 Nov 1995 19:49:30   OS
   Typeinfo und Default CTOR

      Rev 1.38   16 Nov 1995 18:23:22   OS
   neu: Get/SetVariable, teilweise impl.

      Rev 1.37   06 Nov 1995 17:15:00   OS
   SwElemItem bearbeitet nur noch die ViewOptions, keine UsrPrefs

      Rev 1.36   17 Oct 1995 19:20:20   OS
   AddPrinterItem Ctor(SwPrintOptions) PageView-Member initalisieren

      Rev 1.35   10 Oct 1995 18:55:44   OS
   GridItem geloescht

      Rev 1.34   15 Sep 1995 12:39:10   OS
   GetName() implementiert und ColorSetItem entfernt

      Rev 1.33   04 Sep 1995 17:14:32   OS
   +include sbx.hxx

      Rev 1.32   04 Sep 1995 13:40:24   HJS
   add: #include <sbx.hxx>

      Rev 1.31   30 Aug 1995 16:31:48   OS
   Einbau Warnungen fuer Papiergroesse und -orientierung

      Rev 1.30   09 Aug 1995 19:00:28   AMA
   kein GetPresentation

      Rev 1.29   07 Aug 1995 18:19:24   AMA
   Umbau: GetValueText -> GetPresentation

      Rev 1.28   27 Jul 1995 10:39:54   OS
   bDraw auch in Viewopt setzen

      Rev 1.27   05 Jul 1995 19:10:50   OS
   +bCtrlFld fuer Kontrollfelder

      Rev 1.26   03 Jul 1995 19:28:36   OS
   CTOR TestItem korrigiert

      Rev 1.25   27 Jun 1995 19:11:20   OS
   bTest9 fuer MD

      Rev 1.24   27 Jun 1995 17:50:06   ER
   __EXPORT

      Rev 1.23   27 Jun 1995 14:47:48   ER
   segprag

      Rev 1.22   25 Jun 1995 19:31:24   OS
   cfgitems werden jetzt direkt mit swusrpref bzw. swviewoption bearbeitet

      Rev 1.21   24 Jun 1995 10:37:40   SWG
   syntax

      Rev 1.20   23 Jun 1995 17:49:52   OS
   AddPrinterItem setzt PrintOptions selbst, +bPrintDrawing

      Rev 1.19   20 Jun 1995 19:20:42   OS
   CrossHair vom Grid zum DocDisp

      Rev 1.18   24 May 1995 18:09:26   ER
   Segmentierung

      Rev 1.17   12 May 1995 18:15:58   OS
   -SVLook

      Rev 1.16   10 May 1995 19:03:14   OS
   AddPrinterItem umgestellt

      Rev 1.15   10 May 1995 10:59:48   OS
   == > =

      Rev 1.14   28 Apr 1995 17:07:48   OS
   AddPrinterItem veraendert und um Fax und Preview-Optionen erweitert

      Rev 1.13   27 Feb 1995 12:56:18   OS
   segdefs aktualisiert

      Rev 1.12   24 Feb 1995 17:27:34   OS
   Raster-Page vollstaendig

      Rev 1.11   24 Feb 1995 13:00:00   OS
   Grid Page

      Rev 1.10   24 Feb 1995 00:54:08   ER
   sexport

      Rev 1.9   24 Feb 1995 00:32:12   OS
   (ER) add: GridItems

      Rev 1.8   05 Feb 1995 16:08:56   OS
   NT und product

      Rev 1.7   05 Feb 1995 11:33:12   OS
   keine structs mehr

      Rev 1.6   03 Feb 1995 21:20:30   ER
   wegen unresolved externals bei product einige Funktionen
   vor das ifndef product gezogen
   an OS: checken, ob die bei product als inline in das .hxx sollen!

      Rev 1.5   03 Feb 1995 09:33:22   OS
   addprintoptions - item

      Rev 1.4   01 Feb 1995 20:01:16   OS
   SwxxxStruct statisch

      Rev 1.3   24 Jan 1995 19:33:38   OS
   pch Anpassung

      Rev 1.2   23 Jan 1995 07:36:44   OS
   struct in items erzeugt

      Rev 1.1   17 Jan 1995 19:22:18   OS
   Header eingefuegt

------------------------------------------------------------------------*/