ChoiceDefs 2.89 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/* Copyright 1997 Acorn Computers Ltd
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/***************************************************/
/* File   : ChoiceDefs.h                           */
/*                                                 */
/* Purpose: Definitions for Choices items which    */
/*          take a small number of specific        */
/*          values which have a meaning other than */
/*          'yes' or 'no' in the context of the    */
/*          item's name.                           */
/*                                                 */
/* Author : A.D.Hodgkinson                         */
/*                                                 */
/* History: 21-Sep-97: Created.                    */
/***************************************************/

29 30 31 32 33 34 35 36 37 38 39 40
/* Table rendering */

#define Choices_TableOuter_Always2D      0
#define Choices_TableOuter_Auto          1
#define Choices_TableOuter_Always3D      2
#define Choices_TableOuter_Never         3

#define Choices_TableInner_Always2D      0
#define Choices_TableInner_Auto          1
#define Choices_TableInner_Always3D      2
#define Choices_TableInner_Never         3

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/* Hotlist */

#define Choices_SaveHotlist_Never        0
#define Choices_SaveHotlist_Once         1
#define Choices_SaveHotlist_Always       2

#define Choices_AddHotlist_Top           0
#define Choices_AddHotlist_Bottom        1

#define Choices_HotlistType_Descriptions 0
#define Choices_HotlistType_URLs         1

/* History */

#define Choices_SaveHistory_Never        0
#define Choices_SaveHistory_Once         1
#define Choices_SaveHistory_Always       2

59 60 61 62
#define Choices_SaveImageHistory_Never   0
#define Choices_SaveImageHistory_Once    1
#define Choices_SaveImageHistory_Always  2

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
/* Toolbars */

#define Choices_MoveGadgets_Never        0
#define Choices_MoveGadgets_AtEnd        1
#define Choices_MoveGadgets_During       2

/* Windows */

#define Choices_SolidResize_No           0
#define Choices_SolidResize_Yes          1
#define Choices_SolidResize_Always       2

#define Choices_VScroll_No               0
#define Choices_VScroll_Auto             1
#define Choices_VScroll_Yes              2

#define Choices_HScroll_No               0
#define Choices_HScroll_Auto             1
#define Choices_HScroll_Yes              2
82 83 84 85 86 87

/* Plug-ins */

#define Choices_PlugIns_Never            0
#define Choices_PlugIns_Viewed           1
#define Choices_PlugIns_ASAP             2