Ejemplo n.º 1
0
#
#   Python GUI - Color constants and functions - Cocoa
#

from AppKit import NSColor
from GUI import Color

rgb = Color

selection_forecolor = Color._from_ns_color(NSColor.selectedTextColor())
selection_backcolor = Color._from_ns_color(NSColor.selectedTextBackgroundColor())
 def get_color(self):
     return Color._from_ns_color(self._ns_inner_view.textColor())
Ejemplo n.º 3
0
#
#   Python GUI - Color constants and functions - Cocoa
#

from AppKit import NSColor
from GUI import Color

rgb = Color

selection_forecolor = Color._from_ns_color(NSColor.selectedTextColor())
selection_backcolor = Color._from_ns_color(
    NSColor.selectedTextBackgroundColor())
Ejemplo n.º 4
0
 def get_color(self):
     return Color._from_ns_color(self._ns_inner_view.textColor())