1*8414840eSAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*8414840eSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*8414840eSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*8414840eSAndrew Rist * distributed with this work for additional information 6*8414840eSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*8414840eSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*8414840eSAndrew Rist * "License"); you may not use this file except in compliance 9*8414840eSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*8414840eSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*8414840eSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*8414840eSAndrew Rist * software distributed under the License is distributed on an 15*8414840eSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*8414840eSAndrew Rist * KIND, either express or implied. See the License for the 17*8414840eSAndrew Rist * specific language governing permissions and limitations 18*8414840eSAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*8414840eSAndrew Rist *************************************************************/ 21*8414840eSAndrew Rist 22*8414840eSAndrew Rist 23cdf0e10cSrcweir#define FL_HORIZONTAL 1 24cdf0e10cSrcweir#define BTN_HOR_NONE 2 25cdf0e10cSrcweir#define BTN_HOR_LEFT 3 26cdf0e10cSrcweir#define BTN_HOR_CENTER 4 27cdf0e10cSrcweir#define BTN_HOR_DISTANCE 5 28cdf0e10cSrcweir#define BTN_HOR_RIGHT 6 29cdf0e10cSrcweir#define FL_VERTICAL 7 30cdf0e10cSrcweir#define BTN_VER_NONE 8 31cdf0e10cSrcweir#define BTN_VER_TOP 9 32cdf0e10cSrcweir#define BTN_VER_CENTER 10 33cdf0e10cSrcweir#define BTN_VER_DISTANCE 11 34cdf0e10cSrcweir#define BTN_VER_BOTTOM 12 35cdf0e10cSrcweir#define IMG_HOR_LOW 14 36cdf0e10cSrcweir#define IMG_HOR_CENTER 15 37cdf0e10cSrcweir#define IMG_HOR_DISTANCE 16 38cdf0e10cSrcweir#define IMG_HOR_HIGH 17 39cdf0e10cSrcweir#define IMG_VER_LOW 18 40cdf0e10cSrcweir#define IMG_VER_CENTER 19 41cdf0e10cSrcweir#define IMG_VER_DISTANCE 20 42cdf0e10cSrcweir#define IMG_VER_HIGH 21 43cdf0e10cSrcweir 44cdf0e10cSrcweir#define IMG_HOR_LOW_H 22 45cdf0e10cSrcweir#define IMG_HOR_CENTER_H 23 46cdf0e10cSrcweir#define IMG_HOR_DISTANCE_H 24 47cdf0e10cSrcweir#define IMG_HOR_HIGH_H 25 48cdf0e10cSrcweir#define IMG_VER_LOW_H 26 49cdf0e10cSrcweir#define IMG_VER_CENTER_H 27 50cdf0e10cSrcweir#define IMG_VER_DISTANCE_H 28 51cdf0e10cSrcweir#define IMG_VER_HIGH_H 29 52