]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wx/lib/analogclock/styles.py
DocView and ActiveGrid IDE updates from Morgan Hua:
[wxWidgets.git] / wxPython / wx / lib / analogclock / styles.py
CommitLineData
caeac82e
RD
1# AnalogClock constants
2# E. A. Tacao <e.a.tacao |at| estadao.com.br>
3# http://j.domaindlx.com/elements28/wxpython/
4# 15 Fev 2006, 22:00 GMT-03:00
5# Distributed under the wxWidgets license.
6
7# Style options that control the general clock appearance,
8# chosen via SetClockStyle.
9SHOW_QUARTERS_TICKS = 1
10SHOW_HOURS_TICKS = 2
11SHOW_MINUTES_TICKS = 4
12ROTATE_TICKS = 8
13SHOW_HOURS_HAND = 16
14SHOW_MINUTES_HAND = 32
15SHOW_SECONDS_HAND = 64
16SHOW_SHADOWS = 128
17OVERLAP_TICKS = 256
18
19DEFAULT_CLOCK_STYLE = SHOW_HOURS_TICKS|SHOW_MINUTES_TICKS| \
20 SHOW_HOURS_HAND|SHOW_MINUTES_HAND|SHOW_SECONDS_HAND| \
21 SHOW_SHADOWS|ROTATE_TICKS
22
23
24# Style options that control the appearance of tick marks,
25# chosen via SetTickStyle.
26TICKS_NONE = 1
27TICKS_SQUARE = 2
28TICKS_CIRCLE = 4
29TICKS_POLY = 8
30TICKS_DECIMAL = 16
31TICKS_ROMAN = 32
32TICKS_BINARY = 64
33TICKS_HEX = 128
34
35
36# Constants that may be used as 'target' keyword value in
37# the various Get/Set methods.
38HOUR = 1
39MINUTE = 2
40SECOND = 4
41
42ALL = HOUR|MINUTE|SECOND
43
44
45#
46##
47### eof