1fefe2166SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3fefe2166SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4fefe2166SAndrew Rist * or more contributor license agreements. See the NOTICE file 5fefe2166SAndrew Rist * distributed with this work for additional information 6fefe2166SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7fefe2166SAndrew Rist * to you under the Apache License, Version 2.0 (the 8fefe2166SAndrew Rist * "License"); you may not use this file except in compliance 9fefe2166SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11fefe2166SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13fefe2166SAndrew Rist * Unless required by applicable law or agreed to in writing, 14fefe2166SAndrew Rist * software distributed under the License is distributed on an 15fefe2166SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16fefe2166SAndrew Rist * KIND, either express or implied. See the License for the 17fefe2166SAndrew Rist * specific language governing permissions and limitations 18fefe2166SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20fefe2166SAndrew Rist *************************************************************/ 21fefe2166SAndrew Rist 22fefe2166SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#ifndef _LABFMT_HRC 25cdf0e10cSrcweir#define _LABFMT_HRC 26cdf0e10cSrcweir 27cdf0e10cSrcweir// #include ***************************************************************** 28cdf0e10cSrcweir 29cdf0e10cSrcweir#include "envelp.hrc" 30cdf0e10cSrcweir 31cdf0e10cSrcweir// Lokale Resourcen ********************************************************* 32cdf0e10cSrcweir 33cdf0e10cSrcweir#define WIN_PREVIEW 1 34cdf0e10cSrcweir#define TXT_HDIST 2 35cdf0e10cSrcweir#define FLD_HDIST 3 36cdf0e10cSrcweir#define TXT_VDIST 4 37cdf0e10cSrcweir#define FLD_VDIST 5 38cdf0e10cSrcweir#define TXT_WIDTH 6 39cdf0e10cSrcweir#define FLD_WIDTH 7 40cdf0e10cSrcweir#define TXT_HEIGHT 8 41cdf0e10cSrcweir#define FLD_HEIGHT 9 42cdf0e10cSrcweir#define TXT_LEFT 10 43cdf0e10cSrcweir#define FLD_LEFT 11 44cdf0e10cSrcweir#define TXT_UPPER 12 45cdf0e10cSrcweir#define FLD_UPPER 13 46cdf0e10cSrcweir#define TXT_COLUMNS 14 47cdf0e10cSrcweir#define FLD_COLUMNS 15 48cdf0e10cSrcweir#define TXT_ROWS 16 49cdf0e10cSrcweir#define FLD_ROWS 17 50cdf0e10cSrcweir#define FL_NONAME 18 51cdf0e10cSrcweir#define PB_SAVE 19 52cdf0e10cSrcweir#define FI_MAKE 20 53cdf0e10cSrcweir#define FI_TYPE 21 54*737f4475STsutomu Uchino#define TXT_PAPER_WIDTH 22 55*737f4475STsutomu Uchino#define FLD_PAPER_WIDTH 23 56*737f4475STsutomu Uchino#define TXT_PAPER_HEIGHT 24 57*737f4475STsutomu Uchino#define FLD_PAPER_HEIGHT 25 58cdf0e10cSrcweir 59cdf0e10cSrcweir#define FL_OPTIONS 1 60cdf0e10cSrcweir#define FT_MAKE 2 61cdf0e10cSrcweir#define CB_MAKE 3 62cdf0e10cSrcweir#define FT_TYPE 4 63cdf0e10cSrcweir#define ED_TYPE 5 64cdf0e10cSrcweir#define PB_OK 6 65cdf0e10cSrcweir#define PB_CANCEL 7 66cdf0e10cSrcweir#define PB_HELP 8 67cdf0e10cSrcweir#define MB_QUERY 9 68cdf0e10cSrcweir 69cdf0e10cSrcweir// Globale Resourcen ******************************************************** 70cdf0e10cSrcweir 71cdf0e10cSrcweir#define STR_HDIST (RC_LABFMT_BEGIN + 1) 72cdf0e10cSrcweir#define STR_VDIST (RC_LABFMT_BEGIN + 2) 73cdf0e10cSrcweir#define STR_WIDTH (RC_LABFMT_BEGIN + 3) 74cdf0e10cSrcweir#define STR_HEIGHT (RC_LABFMT_BEGIN + 4) 75cdf0e10cSrcweir#define STR_LEFT (RC_LABFMT_BEGIN + 5) 76cdf0e10cSrcweir#define STR_UPPER (RC_LABFMT_BEGIN + 6) 77cdf0e10cSrcweir#define STR_COLS (RC_LABFMT_BEGIN + 7) 78cdf0e10cSrcweir#define STR_ROWS (RC_LABFMT_BEGIN + 8) 79cdf0e10cSrcweir 80cdf0e10cSrcweir// Ueberlaufpruefung ******************************************************** 81cdf0e10cSrcweir 82cdf0e10cSrcweir#define LABFMT_ACT_END STR_ROWS 83cdf0e10cSrcweir 84cdf0e10cSrcweir#if LABFMT_ACT_END > RC_LABFMT_END 85cdf0e10cSrcweir#error Resource-Ueberlauf in #file, #line 86cdf0e10cSrcweir#endif 87cdf0e10cSrcweir 88cdf0e10cSrcweir#endif 89