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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#****************************************************************************
# optiondefaults.py, provides defaults for program options
#
# ConvertAll, a units conversion program
# Copyright (C) 2020, Douglas W. Bell
#
# This is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License, either Version 2 or any later
# version. This program is distributed in the hope that it will be useful,
# but WITTHOUT ANY WARRANTY. See the included LICENSE file for details.
#*****************************************************************************
defaultList = [
"# Options for the ConvertAll unit conversion program",
"#",
"# All options are set from within the program,",
"# editing here is not recommended",
"#",
"ColorTheme system",
"WindowColor ",
"WindowTextColor ",
"BaseColor ",
"TextColor ",
"HighlightColor ",
"HighlightedTextColor ",
"ButtonColor ",
"ButtonTextColor ",
"Text-DisabledColor ",
"ButtonText-DisabledColor ",
"GuiFont ",
"#",
"DecimalPlaces 8",
"Notation general",
"ShowOpButtons yes",
"ShowUnitButtons yes",
"RecentUnits 8",
"LoadLastUnit no",
"ShowStartupTip yes",
"RemenberDlgPos yes",
"#",
"MainDlgXSize 0",
"MainDlgYSize 0",
"MainDlgXPos 0",
"MainDlgYPos 0",
"MainDlgTopMargin 0",
"MainDlgOtherMargin 0",
"#",
"RecentUnit1 ",
"RecentUnit2 ",
"RecentUnit3 ",
"RecentUnit4 ",
"RecentUnit5 ",
"RecentUnit6 ",
"RecentUnit7 ",
"RecentUnit8 "]
|