1*fefe2166SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*fefe2166SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*fefe2166SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*fefe2166SAndrew Rist * distributed with this work for additional information 6*fefe2166SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*fefe2166SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*fefe2166SAndrew Rist * "License"); you may not use this file except in compliance 9*fefe2166SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*fefe2166SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*fefe2166SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*fefe2166SAndrew Rist * software distributed under the License is distributed on an 15*fefe2166SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*fefe2166SAndrew Rist * KIND, either express or implied. See the License for the 17*fefe2166SAndrew Rist * specific language governing permissions and limitations 18*fefe2166SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*fefe2166SAndrew Rist *************************************************************/ 21*fefe2166SAndrew Rist 22*fefe2166SAndrew Rist 23cdf0e10cSrcweir#define RB_NO_WRAP 2 24cdf0e10cSrcweir#define RB_WRAP_LEFT 3 25cdf0e10cSrcweir#define RB_WRAP_RIGHT 4 26cdf0e10cSrcweir#define RB_WRAP_PARALLEL 5 27cdf0e10cSrcweir#define RB_WRAP_THROUGH 6 28cdf0e10cSrcweir#define RB_WRAP_IDEAL 7 29cdf0e10cSrcweir#define CB_ANCHOR_ONLY 8 30cdf0e10cSrcweir#define FT_LEFT_MARGIN 13 31cdf0e10cSrcweir#define ED_LEFT_MARGIN 14 32cdf0e10cSrcweir#define FT_RIGHT_MARGIN 15 33cdf0e10cSrcweir#define ED_RIGHT_MARGIN 16 34cdf0e10cSrcweir#define FT_TOP_MARGIN 17 35cdf0e10cSrcweir#define ED_TOP_MARGIN 18 36cdf0e10cSrcweir#define ED_BOTTOM_MARGIN 19 37cdf0e10cSrcweir#define FT_BOTTOM_MARGIN 20 38cdf0e10cSrcweir#define FL_MARGIN 21 39cdf0e10cSrcweir#define CB_TRANSPARENT 22 40cdf0e10cSrcweir#define CB_OUTLINE 23 41cdf0e10cSrcweir#define FL_OPTION 24 42cdf0e10cSrcweir#define CB_ONLYOUTSIDE 25 43cdf0e10cSrcweir#define FL_OPTION_SEP 26 44cdf0e10cSrcweir#define C_WRAP_FL 31 45cdf0e10cSrcweir 46cdf0e10cSrcweir#define IL_WRAP 32 47cdf0e10cSrcweir#define ILH_WRAP 33 48cdf0e10cSrcweir// nur fuer die ImageList 49cdf0e10cSrcweir#define IMG_BEGIN 1 50cdf0e10cSrcweir#define IMG_NONE (IMG_BEGIN) 51cdf0e10cSrcweir#define IMG_LEFT (IMG_BEGIN + 1) 52cdf0e10cSrcweir#define IMG_RIGHT (IMG_BEGIN + 2) 53cdf0e10cSrcweir#define IMG_PARALLEL (IMG_BEGIN + 3) 54cdf0e10cSrcweir#define IMG_THROUGH (IMG_BEGIN + 4) 55cdf0e10cSrcweir#define IMG_IDEAL (IMG_BEGIN + 5) 56cdf0e10cSrcweir#define IMG_KON_NONE (IMG_BEGIN + 6) 57cdf0e10cSrcweir#define IMG_KON_LEFT (IMG_BEGIN + 7) 58cdf0e10cSrcweir#define IMG_KON_RIGHT (IMG_BEGIN + 8) 59cdf0e10cSrcweir#define IMG_KON_PARALLEL (IMG_BEGIN + 9) 60cdf0e10cSrcweir#define IMG_KON_IDEAL (IMG_BEGIN + 10) 61cdf0e10cSrcweir 62cdf0e10cSrcweir 63