/usr/share/pyshared/traitsui/wx/constants.py is in python-traitsui 4.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | #------------------------------------------------------------------------------
#
# Copyright (c) 2005, Enthought, Inc.
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in enthought/LICENSE.txt and may be redistributed only
# under the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
#
# Author: David C. Morrill
# Date: 10/22/2004
#
#------------------------------------------------------------------------------
""" Defines constants used by the wxPython implementation of the various text
editors and text editor factories.
"""
#-------------------------------------------------------------------------------
# Imports:
#-------------------------------------------------------------------------------
import sys
import wx
#-------------------------------------------------------------------------------
# Constants:
#-------------------------------------------------------------------------------
# Define platform and wx version constants:
is_mac = (sys.platform == 'darwin')
is_wx26 = (float( '.'.join( wx.__version__.split( '.' )[0:2] ) ) < 2.8)
# Default dialog title
DefaultTitle = 'Edit properties'
# Color of valid input
OKColor = wx.WHITE
# Color to highlight input errors
ErrorColor = wx.Colour( 255, 192, 192 )
# Color for background of read-only fields
ReadonlyColor = wx.Colour( 244, 243, 238 )
# Color for background of fields where objects can be dropped
DropColor = wx.Colour( 215, 242, 255 )
# Color for an editable field
EditableColor = wx.WHITE
# Color for background of windows (like dialog background color)
if is_mac:
WindowColor = wx.Colour( 232, 232, 232 )
BorderedGroupColor = wx.Colour( 224, 224, 224 )
else:
WindowColor = wx.SystemSettings_GetColour( wx.SYS_COLOUR_MENUBAR )
# Standard width of an image bitmap
standard_bitmap_width = 120
# Width of a scrollbar
scrollbar_dx = wx.SystemSettings_GetMetric( wx.SYS_VSCROLL_X )
# Screen size values:
screen_dx = wx.SystemSettings_GetMetric( wx.SYS_SCREEN_X )
screen_dy = wx.SystemSettings_GetMetric( wx.SYS_SCREEN_Y )
|