1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir#ifndef _RPTUI_DLGRESID_HRC 29*cdf0e10cSrcweir#define _RPTUI_DLGRESID_HRC 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir// include ----------------------------------------------------------- 32*cdf0e10cSrcweir 33*cdf0e10cSrcweir#ifndef _SOLAR_HRC 34*cdf0e10cSrcweir#include <svl/solar.hrc> 35*cdf0e10cSrcweir#endif 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir#define RID_DIALOG_START RID_RPT_START 38*cdf0e10cSrcweir#define RID_PAGE_START RID_RPT_START 39*cdf0e10cSrcweir#define RID_ERRORBOX_START RID_RPT_START 40*cdf0e10cSrcweir#define RID_QUERYBOX_START RID_RPT_START 41*cdf0e10cSrcweir#define RID_TOOLBOX_START RID_RPT_START 42*cdf0e10cSrcweir#define RID_BITMAP_START RID_RPT_START 43*cdf0e10cSrcweir#define RID_IMAGE_START RID_RPT_START 44*cdf0e10cSrcweir#define RID_IMAGELIST_START RID_RPT_START 45*cdf0e10cSrcweir#define RID_MENU_START RID_RPT_START 46*cdf0e10cSrcweir#define RID_STRING_START RID_RPT_START 47*cdf0e10cSrcweir#define RID_UNTYPED_START RID_RPT_START 48*cdf0e10cSrcweir#define RID_WARN_START RID_RPT_START 49*cdf0e10cSrcweir#define RID_CONTROL_START RID_RPT_START 50*cdf0e10cSrcweir#define RID_MISC_START RID_RPT_START 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir// Dialog Control Id's ----------------------------------------------------------- 53*cdf0e10cSrcweir#define RID_GROUPS_SORTING ( RID_DIALOG_START + 0 ) 54*cdf0e10cSrcweir#define RID_PAGENUMBERS ( RID_DIALOG_START + 1 ) 55*cdf0e10cSrcweir#define RID_DATETIME_DLG ( RID_DIALOG_START + 2 ) 56*cdf0e10cSrcweir#define RID_CONDFORMAT ( RID_DIALOG_START + 3 ) 57*cdf0e10cSrcweir#define WIN_CONDITION ( RID_DIALOG_START + 4 ) 58*cdf0e10cSrcweir#define RID_NAVIGATOR ( RID_DIALOG_START + 5 ) 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir// strings 61*cdf0e10cSrcweir#define RID_STR_CLASS_FORMATTEDFIELD ( RID_STRING_START + 1 ) 62*cdf0e10cSrcweir#define RID_STR_CLASS_FIXEDTEXT ( RID_STRING_START + 2 ) 63*cdf0e10cSrcweir#define RID_STR_CLASS_IMAGECONTROL ( RID_STRING_START + 3 ) 64*cdf0e10cSrcweir#define RID_STR_PROPTITLE_FIXEDTEXT ( RID_STRING_START + 4 ) 65*cdf0e10cSrcweir#define RID_STR_PROPTITLE_FORMATTED ( RID_STRING_START + 5 ) 66*cdf0e10cSrcweir#define RID_STR_PROPTITLE_SHAPE ( RID_STRING_START + 6 ) 67*cdf0e10cSrcweir#define RID_STR_PROPTITLE_IMAGECONTROL ( RID_STRING_START + 7 ) 68*cdf0e10cSrcweir#define RID_STR_PROPTITLE_REPORT ( RID_STRING_START + 8 ) 69*cdf0e10cSrcweir#define RID_STR_PROPTITLE_SECTION ( RID_STRING_START + 9 ) 70*cdf0e10cSrcweir#define RID_STR_PROPTITLE_FUNCTION ( RID_STRING_START + 10 ) 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir// undo strings 73*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER ( RID_STRING_START + 11 ) 74*cdf0e10cSrcweir#define RID_STR_UNDO_ADD_REPORTHEADERFOOTER ( RID_STRING_START + 12 ) 75*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_PAGEHEADERFOOTER ( RID_STRING_START + 13 ) 76*cdf0e10cSrcweir#define RID_STR_UNDO_ADD_PAGEHEADERFOOTER ( RID_STRING_START + 14 ) 77*cdf0e10cSrcweir#define RID_STR_UNDO_PROPERTY ( RID_STRING_START + 15 ) 78*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_GROUP ( RID_STRING_START + 16 ) 79*cdf0e10cSrcweir#define RID_STR_UNDO_APPEND_GROUP ( RID_STRING_START + 17 ) 80*cdf0e10cSrcweir#define RID_STR_UNDO_MOVE_GROUP ( RID_STRING_START + 18 ) 81*cdf0e10cSrcweir#define RID_STR_UNDO_CONDITIONAL_FORMATTING ( RID_STRING_START + 19 ) 82*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_SELECTION ( RID_STRING_START + 20 ) 83*cdf0e10cSrcweir#define RID_STR_UNDO_PASTE ( RID_STRING_START + 21 ) 84*cdf0e10cSrcweir#define RID_STR_UNDO_CHANGE_SIZE ( RID_STRING_START + 22 ) 85*cdf0e10cSrcweir#define RID_STR_UNDO_INSERT_CONTROL ( RID_STRING_START + 23 ) 86*cdf0e10cSrcweir#define RID_STR_UNDO_DELETE_CONTROL ( RID_STRING_START + 24 ) 87*cdf0e10cSrcweir#define RID_STR_UNDO_GROUP ( RID_STRING_START + 25 ) 88*cdf0e10cSrcweir#define RID_STR_UNDO_UNGROUP ( RID_STRING_START + 26 ) 89*cdf0e10cSrcweir#define RID_STR_UNDO_CHANGEPOSITION ( RID_STRING_START + 27 ) 90*cdf0e10cSrcweir#define RID_STR_UNDO_ADDFUNCTION ( RID_STRING_START + 28 ) 91*cdf0e10cSrcweir#define RID_STR_UNDO_DELETEFUNCTION ( RID_STRING_START + 29 ) 92*cdf0e10cSrcweir 93*cdf0e10cSrcweir// title of tab pages 94*cdf0e10cSrcweir#define RID_STR_DESIGN_VIEW ( RID_STRING_START + 30 ) 95*cdf0e10cSrcweir#define RID_STR_PREVIEW_VIEW ( RID_STRING_START + 31 ) 96*cdf0e10cSrcweir// other 97*cdf0e10cSrcweir#define STR_RPT_TITLE ( RID_STRING_START + 32 ) 98*cdf0e10cSrcweir#define STR_RPT_LABEL ( RID_STRING_START + 33 ) 99*cdf0e10cSrcweir#define STR_RPT_EXPRESSION ( RID_STRING_START + 34 ) 100*cdf0e10cSrcweir#define STR_RPT_SORTING ( RID_STRING_START + 35 ) 101*cdf0e10cSrcweir#define STR_RPT_PN_PAGE ( RID_STRING_START + 36 ) 102*cdf0e10cSrcweir#define STR_RPT_PN_PAGE_OF ( RID_STRING_START + 37 ) 103*cdf0e10cSrcweir#define STR_RPT_PREFIXCHARS ( RID_STRING_START + 38 ) 104*cdf0e10cSrcweir#define STR_RPT_YEAR ( RID_STRING_START + 39 ) 105*cdf0e10cSrcweir#define STR_RPT_QUARTER ( RID_STRING_START + 40 ) 106*cdf0e10cSrcweir#define STR_RPT_MONTH ( RID_STRING_START + 41 ) 107*cdf0e10cSrcweir#define STR_RPT_WEEK ( RID_STRING_START + 42 ) 108*cdf0e10cSrcweir#define STR_RPT_DAY ( RID_STRING_START + 43 ) 109*cdf0e10cSrcweir#define STR_RPT_HOUR ( RID_STRING_START + 44 ) 110*cdf0e10cSrcweir#define STR_RPT_MINUTE ( RID_STRING_START + 45 ) 111*cdf0e10cSrcweir#define STR_RPT_INTERVAL ( RID_STRING_START + 46 ) 112*cdf0e10cSrcweir#define STR_RPT_HELP_FIELD ( RID_STRING_START + 47 ) 113*cdf0e10cSrcweir#define STR_RPT_HELP_HEADER ( RID_STRING_START + 48 ) 114*cdf0e10cSrcweir#define STR_RPT_HELP_FOOTER ( RID_STRING_START + 49 ) 115*cdf0e10cSrcweir#define STR_RPT_HELP_GROUPON ( RID_STRING_START + 50 ) 116*cdf0e10cSrcweir#define STR_RPT_HELP_INTERVAL ( RID_STRING_START + 51 ) 117*cdf0e10cSrcweir#define STR_RPT_HELP_KEEP ( RID_STRING_START + 52 ) 118*cdf0e10cSrcweir#define STR_RPT_HELP_SORT ( RID_STRING_START + 53 ) 119*cdf0e10cSrcweir#define RID_STR_GROUPHEADER ( RID_STRING_START + 54 ) 120*cdf0e10cSrcweir#define RID_STR_GROUPFOOTER ( RID_STRING_START + 55 ) 121*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_FUNCTION ( RID_STRING_START + 56 ) 122*cdf0e10cSrcweir#define STR_NUMBERED_CONDITION ( RID_STRING_START + 57 ) 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir// Property Browser Headline Id's ----------------------------------------------------------- 125*cdf0e10cSrcweir#define RID_STR_BRWTITLE_PROPERTIES ( RID_STRING_START + 60 ) 126*cdf0e10cSrcweir#define RID_STR_BRWTITLE_NO_PROPERTIES ( RID_STRING_START + 61 ) 127*cdf0e10cSrcweir#define RID_STR_BRWTITLE_MULTISELECT ( RID_STRING_START + 62 ) 128*cdf0e10cSrcweir#define STR_SHOW_RULER ( RID_STRING_START + 63 ) 129*cdf0e10cSrcweir#define STR_SHOW_GRID ( RID_STRING_START + 64 ) 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir#define STR_COLOR_WHITE ( RID_STRING_START + 65 ) 132*cdf0e10cSrcweir#define STR_CHARCOLOR ( RID_STRING_START + 66 ) 133*cdf0e10cSrcweir#define STR_CHARBACKGROUND ( RID_STRING_START + 67 ) 134*cdf0e10cSrcweir#define STR_TRANSPARENT ( RID_STRING_START + 68 ) 135*cdf0e10cSrcweir#define RID_STR_FIELDSELECTION ( RID_STRING_START + 69 ) 136*cdf0e10cSrcweir 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir#define RID_STR_UNDO_ADD_GROUP_HEADER ( RID_STRING_START + 70 ) 139*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_GROUP_HEADER ( RID_STRING_START + 71 ) 140*cdf0e10cSrcweir#define RID_STR_UNDO_ADD_GROUP_FOOTER ( RID_STRING_START + 72 ) 141*cdf0e10cSrcweir#define RID_STR_UNDO_REMOVE_GROUP_FOOTER ( RID_STRING_START + 73 ) 142*cdf0e10cSrcweir 143*cdf0e10cSrcweir#define RID_STR_PROPPAGE_DEFAULT ( RID_STRING_START + 74 ) 144*cdf0e10cSrcweir#define RID_STR_PROPPAGE_DATA ( RID_STRING_START + 75 ) 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir#define RID_STR_FILTER ( RID_STRING_START + 76 ) 147*cdf0e10cSrcweir// free 148*cdf0e10cSrcweir 149*cdf0e10cSrcweir#define RID_STR_FORCENEWPAGE (RID_STRING_START + 78) 150*cdf0e10cSrcweir#define RID_STR_NEWROWORCOL (RID_STRING_START + 79) 151*cdf0e10cSrcweir#define RID_STR_KEEPTOGETHER (RID_STRING_START + 80) 152*cdf0e10cSrcweir#define RID_STR_CANGROW (RID_STRING_START + 81) 153*cdf0e10cSrcweir#define RID_STR_CANSHRINK (RID_STRING_START + 82) 154*cdf0e10cSrcweir#define RID_STR_REPEATSECTION (RID_STRING_START + 83) 155*cdf0e10cSrcweir 156*cdf0e10cSrcweir#define RID_STR_PROPTITLE_GROUP (RID_STRING_START + 84) 157*cdf0e10cSrcweir#define RID_STR_PROPTITLE_FIXEDLINE (RID_STRING_START + 85) 158*cdf0e10cSrcweir#define RID_STR_CLASS_FIXEDLINE (RID_STRING_START + 86) 159*cdf0e10cSrcweir#define RID_STR_BACKTRANSPARENT (RID_STRING_START + 87) 160*cdf0e10cSrcweir#define RID_STR_CONTROLBACKGROUNDTRANSPARENT (RID_STRING_START + 88) 161*cdf0e10cSrcweir#define RID_STR_OVERLAP_OTHER_CONTROL (RID_STRING_START + 89) 162*cdf0e10cSrcweir#define RID_STR_ILLEGAL_POSITION (RID_STRING_START + 90) 163*cdf0e10cSrcweir#define RID_STR_PAGEHEADERFOOTER_INSERT (RID_STRING_START + 91) 164*cdf0e10cSrcweir#define RID_STR_PAGEHEADERFOOTER_DELETE (RID_STRING_START + 92) 165*cdf0e10cSrcweir#define RID_STR_BACKCOLOR (RID_STRING_START + 93) 166*cdf0e10cSrcweir#define RID_STR_PRINTREPEATEDVALUES (RID_STRING_START + 94) 167*cdf0e10cSrcweir#define RID_STR_CONDITIONALPRINTEXPRESSION (RID_STRING_START + 95) 168*cdf0e10cSrcweir#define RID_STR_COLUMNHEADERFOOTER_INSERT (RID_STRING_START + 96) 169*cdf0e10cSrcweir#define RID_STR_STARTNEWCOLUMN (RID_STRING_START + 97) 170*cdf0e10cSrcweir#define RID_STR_STARTNEWPAGE (RID_STRING_START + 98) 171*cdf0e10cSrcweir#define RID_STR_RESETPAGENUMBER (RID_STRING_START + 99) 172*cdf0e10cSrcweir#define RID_STR_COLUMNHEADERFOOTER_DELETE (RID_STRING_START + 100) 173*cdf0e10cSrcweir#define RID_STR_MINHEIGHTNEWPAGE (RID_STRING_START + 101) 174*cdf0e10cSrcweir#define RID_STR_PRINTWHENGROUPCHANGE (RID_STRING_START + 102) 175*cdf0e10cSrcweir#define RID_STR_REPORTHEADERFOOTER_INSERT (RID_STRING_START + 103) 176*cdf0e10cSrcweir#define RID_STR_REPORTHEADERFOOTER_DELETE (RID_STRING_START + 104) 177*cdf0e10cSrcweir#define RID_STR_VISIBLE (RID_STRING_START + 105) 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir#define RID_STR_DETAIL (RID_STRING_START + 106) 180*cdf0e10cSrcweir#define RID_STR_PAGE_HEADER (RID_STRING_START + 107) 181*cdf0e10cSrcweir#define RID_STR_GROUPKEEPTOGETHER (RID_STRING_START + 108) 182*cdf0e10cSrcweir#define RID_STR_PAGE_FOOTER (RID_STRING_START + 109) 183*cdf0e10cSrcweir#define RID_STR_PAGEHEADEROPTION (RID_STRING_START + 110) 184*cdf0e10cSrcweir#define RID_STR_PAGEFOOTEROPTION (RID_STRING_START + 111) 185*cdf0e10cSrcweir#define RID_STR_REPORT_HEADER (RID_STRING_START + 112) 186*cdf0e10cSrcweir#define RID_STR_REPORT_FOOTER (RID_STRING_START + 113) 187*cdf0e10cSrcweir#define RID_STR_SCOPE_GROUP (RID_STRING_START + 114) 188*cdf0e10cSrcweir#define RID_APP_TITLE (RID_STRING_START + 115) 189*cdf0e10cSrcweir#define RID_APP_NEW_DOC (RID_STRING_START + 116) 190*cdf0e10cSrcweir#define RID_STR_UNDO_ALIGNMENT (RID_STRING_START + 117) 191*cdf0e10cSrcweir#define RID_STR_HEADER (RID_STRING_START + 118) 192*cdf0e10cSrcweir#define RID_STR_FOOTER (RID_STRING_START + 119) 193*cdf0e10cSrcweir#define RID_STR_DATAFIELD (RID_STRING_START + 120) 194*cdf0e10cSrcweir#define RID_STR_FONT (RID_STRING_START + 121) 195*cdf0e10cSrcweir#define RID_STR_COULD_NOT_CREATE_REPORT (RID_STRING_START + 122) 196*cdf0e10cSrcweir#define RID_STR_PRESERVEIRI (RID_STRING_START + 123) 197*cdf0e10cSrcweir#define RID_STR_IMPORT_GRAPHIC (RID_STRING_START + 124) 198*cdf0e10cSrcweir#define RID_STR_POSITIONX (RID_STRING_START + 125) 199*cdf0e10cSrcweir#define RID_STR_POSITIONY (RID_STRING_START + 126) 200*cdf0e10cSrcweir#define RID_STR_WIDTH (RID_STRING_START + 127) 201*cdf0e10cSrcweir#define RID_STR_HEIGHT (RID_STRING_START + 128) 202*cdf0e10cSrcweir#define RID_STR_DELETE (RID_STRING_START + 129) 203*cdf0e10cSrcweir#define RID_STR_DEEPTRAVERSING (RID_STRING_START + 130) 204*cdf0e10cSrcweir#define RID_STR_PREEVALUATED (RID_STRING_START + 131) 205*cdf0e10cSrcweir#define RID_STR_FUNCTIONS (RID_STRING_START + 132) 206*cdf0e10cSrcweir#define RID_STR_GROUPS (RID_STRING_START + 133) 207*cdf0e10cSrcweir#define RID_STR_FUNCTION (RID_STRING_START + 134) 208*cdf0e10cSrcweir#define RID_STR_FORMULA (RID_STRING_START + 135) 209*cdf0e10cSrcweir#define RID_STR_INITIALFORMULA (RID_STRING_START + 136) 210*cdf0e10cSrcweir#define RID_STR_UNDO_CHANGEFONT (RID_STRING_START + 137) 211*cdf0e10cSrcweir#define RID_STR_UNDO_CHANGEPAGE (RID_STRING_START + 138) 212*cdf0e10cSrcweir#define RID_STR_CAUGHT_FOREIGN_EXCEPTION (RID_STRING_START + 139) 213*cdf0e10cSrcweir#define RID_STR_FORMULALIST (RID_STRING_START + 140) 214*cdf0e10cSrcweir#define RID_STR_SCOPE (RID_STRING_START + 141) 215*cdf0e10cSrcweir#define RID_STR_TYPE (RID_STRING_START + 142) 216*cdf0e10cSrcweir#define RID_STR_MIMETYPE (RID_STRING_START + 143) 217*cdf0e10cSrcweir#define RID_STR_CHARTTYPE (RID_STRING_START + 144) 218*cdf0e10cSrcweir#define RID_STR_MASTERFIELDS (RID_STRING_START + 145) 219*cdf0e10cSrcweir#define RID_STR_DETAILFIELDS (RID_STRING_START + 146) 220*cdf0e10cSrcweir#define RID_STR_EXPLANATION (RID_STRING_START + 147) 221*cdf0e10cSrcweir#define RID_STR_DETAILLABEL (RID_STRING_START + 148) 222*cdf0e10cSrcweir#define RID_STR_MASTERLABEL (RID_STRING_START + 149) 223*cdf0e10cSrcweir#define RID_STR_PREVIEW_COUNT (RID_STRING_START + 150) 224*cdf0e10cSrcweir#define RID_ERR_NO_COMMAND (RID_STRING_START + 151) 225*cdf0e10cSrcweir#define RID_ERR_NO_OBJECTS (RID_STRING_START + 152) 226*cdf0e10cSrcweir#define RID_STR_AREA (RID_STRING_START + 153) 227*cdf0e10cSrcweir#define RID_STR_INSERT (RID_STRING_START + 154) 228*cdf0e10cSrcweir#define RID_STR_UNDO_SHRINK (RID_STRING_START + 155) 229*cdf0e10cSrcweir#define RID_STR_F_COUNTER (RID_STRING_START + 156) 230*cdf0e10cSrcweir#define RID_STR_F_ACCUMULATION (RID_STRING_START + 157) 231*cdf0e10cSrcweir#define RID_STR_F_MINIMUM (RID_STRING_START + 158) 232*cdf0e10cSrcweir#define RID_STR_F_MAXIMUM (RID_STRING_START + 159) 233*cdf0e10cSrcweir#define RID_STR_VERTICALALIGN (RID_STRING_START + 160) 234*cdf0e10cSrcweir#define RID_STR_PARAADJUST (RID_STRING_START + 161) 235*cdf0e10cSrcweir 236*cdf0e10cSrcweir 237*cdf0e10cSrcweir// #define RID_STR_ (RID_STRING_START + 130) 238*cdf0e10cSrcweir// ----------------------------------------------------------------------- 239*cdf0e10cSrcweir#define RID_PAGEDIALOG_PAGE ( RID_PAGE_START + 1 ) 240*cdf0e10cSrcweir#define RID_PAGEDIALOG_BACKGROUND ( RID_PAGE_START + 2 ) 241*cdf0e10cSrcweir#define RID_PAGEDIALOG_CHAR ( RID_PAGE_START + 3 ) 242*cdf0e10cSrcweir#define RID_PAGE_CHAR ( RID_PAGE_START + 4 ) 243*cdf0e10cSrcweir#define RID_PAGE_EFFECTS ( RID_PAGE_START + 5 ) 244*cdf0e10cSrcweir#define RID_PAGE_POSITION ( RID_PAGE_START + 6 ) 245*cdf0e10cSrcweir#define RID_PAGE_BACKGROUND ( RID_PAGE_START + 7 ) 246*cdf0e10cSrcweir#define RID_PAGE_TWOLN ( RID_PAGE_START + 8 ) 247*cdf0e10cSrcweir#define RID_PAGEDIALOG_LINE ( RID_PAGE_START + 9 ) 248*cdf0e10cSrcweir#define RID_PAGE_LINE ( RID_PAGE_START + 10 ) 249*cdf0e10cSrcweir#define RID_PAGE_ALIGNMENT ( RID_PAGE_START + 11 ) 250*cdf0e10cSrcweir 251*cdf0e10cSrcweir// ----------------------------------------------------------------------- 252*cdf0e10cSrcweir#define RID_IMG_TREENODE_COLLAPSED ( RID_IMAGE_START + 1 ) 253*cdf0e10cSrcweir#define RID_IMG_TREENODE_EXPANDED ( RID_IMAGE_START + 2 ) 254*cdf0e10cSrcweir#define RID_IMG_TREENODE_COLLAPSED_HC ( RID_IMAGE_START + 3 ) 255*cdf0e10cSrcweir#define RID_IMG_TREENODE_EXPANDED_HC ( RID_IMAGE_START + 4 ) 256*cdf0e10cSrcweir#define REPORT_TREE_ICON ( RID_IMAGE_START + 5 ) 257*cdf0e10cSrcweir// menu ----------------------------------------------------------------------- 258*cdf0e10cSrcweir#define RID_MENU_REPORT ( RID_MENU_START + 0 ) 259*cdf0e10cSrcweir#define RID_GROUPSROWPOPUPMENU ( RID_MENU_START + 1 ) 260*cdf0e10cSrcweir#define RID_MENU_NAVIGATOR ( RID_MENU_START + 2 ) 261*cdf0e10cSrcweir#define RID_TB_SORTING ( RID_MENU_START + 3 ) 262*cdf0e10cSrcweir 263*cdf0e10cSrcweir// image lists ----------------------------------------------------------------------- 264*cdf0e10cSrcweir#define IMG_CONDFORMAT_DLG_SC (RID_IMAGELIST_START + 0) 265*cdf0e10cSrcweir#define IMG_CONDFORMAT_DLG_SCH (RID_IMAGELIST_START + 1) 266*cdf0e10cSrcweir#define IMG_CONDFORMAT_DLG_LC (RID_IMAGELIST_START + 2) 267*cdf0e10cSrcweir#define IMG_CONDFORMAT_DLG_LCH (RID_IMAGELIST_START + 3) 268*cdf0e10cSrcweir#define RID_SVXIMGLIST_RPTEXPL (RID_IMAGELIST_START + 4) 269*cdf0e10cSrcweir#define RID_SVXIMGLIST_RPTEXPL_HC (RID_IMAGELIST_START + 5) 270*cdf0e10cSrcweir#define IMGLST_GROUPSORT_DLG_SC (RID_IMAGELIST_START + 6) 271*cdf0e10cSrcweir#define IMGLST_GROUPSORT_DLG_SCH (RID_IMAGELIST_START + 7) 272*cdf0e10cSrcweir#define IMG_ADDFIELD_DLG_SC (RID_IMAGELIST_START + 8) 273*cdf0e10cSrcweir#define IMG_ADDFIELD_DLG_SCH (RID_IMAGELIST_START + 9) 274*cdf0e10cSrcweir#define IMG_ADDFIELD_DLG_LC (RID_IMAGELIST_START + 10) 275*cdf0e10cSrcweir#define IMG_ADDFIELD_DLG_LCH (RID_IMAGELIST_START + 11) 276*cdf0e10cSrcweir 277*cdf0e10cSrcweir#define ADDFIELD_FL_HELP_SEPARATOR (RID_IMAGELIST_START + 12) 278*cdf0e10cSrcweir#define ADDFIELD_HELP_FIELD (RID_IMAGELIST_START + 13) 279*cdf0e10cSrcweir 280*cdf0e10cSrcweir// untyped --------------------------------------------------------------------- 281*cdf0e10cSrcweir#define RID_STR_BOOL (RID_UNTYPED_START + 0 ) 282*cdf0e10cSrcweir#define RID_STR_FORCENEWPAGE_CONST (RID_UNTYPED_START + 1 ) 283*cdf0e10cSrcweir#define RID_STR_KEEPTOGETHER_CONST (RID_UNTYPED_START + 2) 284*cdf0e10cSrcweir#define RID_STR_GROUPKEEPTOGETHER_CONST (RID_UNTYPED_START + 3) 285*cdf0e10cSrcweir#define RID_STR_REPORTPRINTOPTION_CONST (RID_UNTYPED_START + 4) 286*cdf0e10cSrcweir#define RID_STR_SECTIONPAGEBREAK_CONST (RID_UNTYPED_START + 5) 287*cdf0e10cSrcweir#define RID_STR_TYPE_CONST (RID_UNTYPED_START + 6) 288*cdf0e10cSrcweir#define RID_STR_VERTICAL_ALIGN_CONST (RID_UNTYPED_START + 7) 289*cdf0e10cSrcweir#define RID_STR_PARAADJUST_CONST (RID_UNTYPED_START + 8) 290*cdf0e10cSrcweir 291*cdf0e10cSrcweir// toolbox lists --------------------------------------------------------------------- 292*cdf0e10cSrcweir 293*cdf0e10cSrcweir#define SID_RPT_GROUPSORT_MOVE_UP ( RID_TOOLBOX_START + 0 ) 294*cdf0e10cSrcweir#define SID_RPT_GROUPSORT_MOVE_DOWN ( RID_TOOLBOX_START + 1 ) 295*cdf0e10cSrcweir#define SID_RPT_GROUPSORT_DELETE ( RID_TOOLBOX_START + 2 ) 296*cdf0e10cSrcweir 297*cdf0e10cSrcweir#endif // _RPTUI_DLGRESID_HRC 298*cdf0e10cSrcweir 299