1"""
2
3.. moduleauthor:: easygui developers and Stephen Raymond Ferg
4.. default-domain:: py
5.. highlight:: python
6
7Version |release|
8"""
9
10# Starting and global variables
11
12window_position = "+300+200"
13
14PROPORTIONAL_FONT_FAMILY = ("MS", "Sans", "Serif")
15MONOSPACE_FONT_FAMILY = "Courier"
16
17PROPORTIONAL_FONT_SIZE = 10
18# a little smaller, because it is more legible at a smaller size
19MONOSPACE_FONT_SIZE = 9
20TEXT_ENTRY_FONT_SIZE = 12  # a little larger makes it easier to see
21
22
23STANDARD_SELECTION_EVENTS = ["Return", "Button-1", "space"]
24
25prop_font_line_length = 62
26fixw_font_line_length = 80
27num_lines_displayed = 50
28default_hpad_in_chars = 2
29