File: optiondefaults.py

package info (click to toggle)
convertall 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,448 kB
  • ctags: 521
  • sloc: python: 2,338; makefile: 7
file content (52 lines) | stat: -rw-r--r-- 1,700 bytes parent folder | download
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
#****************************************************************************
# optiondefaults.py, provides defaults for program options
#
# ConvertAll, a units conversion program
# Copyright (C) 2014, 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",
    "#",
    "UseDefaultColors    yes",
    "BackgroundR         255",
    "BackgroundG         255",
    "BackgroundB         255",
    "ForegroundR         0",
    "ForegroundG         0",
    "ForegroundB         0",
    "#",
    "DecimalPlaces       8",
    "SciNotation         no",
    "FixedDecimals       no",
    "ShowOpButtons       yes",
    "RecentUnits         8",
    "LoadLastUnit        no",
    "ShowStartupTip      yes",
    "#",
    "MainDlgXSize        0",
    "MainDlgYSize        0",
    "MainDlgXPos         0",
    "MainDlgYPos         0",
    "FinderXSize         0",
    "FinderYSize         0",
    "FinderXPos          0",
    "FinderYPos          0",
    "#",
    "RecentUnit1          ",
    "RecentUnit2          ",
    "RecentUnit3          ",
    "RecentUnit4          ",
    "RecentUnit5          ",
    "RecentUnit6          ",
    "RecentUnit7          ",
    "RecentUnit8          "]