diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-06 18:39:50 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-06 18:39:50 +0000 |
commit | 1a3f353a459a89faacc4d7a000dbc1652f98199a (patch) | |
tree | b4fae4ff0eb7657d5295439c295233ce46dea950 | |
parent | 94a93589d4cb6bf3b22477a049954e878d8ef6ec (diff) |
INTEGRATION: CWS odbmacros2 (1.14.70); FILE MERGED
2008/02/04 13:15:04 fs 1.14.70.4: RESYNC: (1.14-1.15); FILE MERGED
2008/01/23 13:55:56 fs 1.14.70.3: removed nSaveAsId/nOpenId (not needed), renamed nV/HscrollId to nV/HScrollId for consistency with the resource syntax
2008/01/16 15:26:59 fs 1.14.70.2: support for more win bits: WB_TOP, WB_VCENTER, WB_BOTTOM, WB_AUTOVSCROLL
2008/01/16 15:02:22 fs 1.14.70.1: support for more win buts: WB_TOP, WB_VCENTER, WB_BOTTOM, WB_AUTOVSCROLL
-rw-r--r-- | rsc/inc/rscdb.hxx | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index f7f11c3f787f..7d5effcbc5ee 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -4,9 +4,9 @@ * * $RCSfile: rscdb.hxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: obo $ $Date: 2008-01-04 15:58:44 $ + * last change: $Author: kz $ $Date: 2008-03-06 19:39:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -128,8 +128,11 @@ class RscTypCont Atom nLeftId; Atom nCenterId; Atom nRightId; - Atom nHscrollId; - Atom nVscrollId; + Atom nTopId; + Atom nVCenterId; + Atom nBottomId; + Atom nHScrollId; + Atom nVScrollId; Atom nSortId; Atom nDefaultId; Atom nSVLookId; @@ -142,12 +145,11 @@ class RscTypCont Atom nTabControlId; Atom nSimpleModeId; Atom nDragId; - Atom nSaveAsId; - Atom nOpenId; Atom nScrollId; Atom nZoomableId; Atom nHideWhenDeactivateId; Atom nAutoHScrollId; + Atom nAutoVScrollId; Atom nDDExtraWidthId; Atom nWordBreakId; Atom nLeftLabelId; @@ -206,6 +208,7 @@ class RscTypCont RscTop * InitClassModalDialog( RscTop * pSuper ); RscTop * InitClassModelessDialog( RscTop * pSuper ); RscTop * InitClassControl( RscTop * pSuper ); + RscTop * InitClassCheckBox( RscTop * pSuper ); RscTop * InitClassPushButton( RscTop * pSuper ); RscTop * InitClassTriStateBox( RscTop * pSuper, RscEnum * pTriState ); RscTop * InitClassMenuButton( RscTop * pSuper, RscTop * pClasMenu ); @@ -220,6 +223,7 @@ class RscTypCont RscTop * InitClassFixedText( RscTop * pSuper ); RscTop * InitClassFixedBitmap( RscTop * pSuper, RscTop * pClassBitmap ); RscTop * InitClassFixedImage( RscTop * pSuper, RscTop * pClassImage ); + RscTop * InitClassRadioButton( RscTop * pSuper ); RscTop * InitClassImageRadioButton( RscTop * pSuper, RscTop * pClassImage ); RscTop * InitClassKeyCode( RscTop * pSuper, RscEnum * pKey ); RscTop * InitClassAccelItem( RscTop * pSuper, RscTop * pKeyCode ); |