Skip to content

Commit

Permalink
Methods {Get,Set}ControlData that know about data types passed for th…
Browse files Browse the repository at this point in the history
…e various

4-char codes. The table which maps codes to datatypes is still pretty empty,
I'll fill it as I need entries (or maybe someone wants to spend a nice day filling it?).
  • Loading branch information
jackjansen committed Dec 13, 1999
1 parent 871a889 commit 30f2080
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Mac/Lib/lib-toolbox/ControlAccessor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Accessor functions for control properties

from Controls import *
import struct

_codingdict = {
kControlPushButtonDefaultTag : ("b", None, None),
kControlEditTextTextTag: (None, None, None),
kControlEditTextPasswordTag: (None, None, None),
}

def SetControlData(control, part, selector, data):
if not _codingdict.has_key(selector):
raise KeyError, ('Unknown control selector', selector)
structfmt, coder, decoder = _codingdict[selector]
if coder:
data = coder(data)
if structfmt:
data = struct.pack(structfmt, data)
control.SetControlData(part, selector, data)

def GetControlData(control, part, selector):
if not _codingdict.has_key(selector):
raise KeyError, ('Unknown control selector', selector)
structfmt, coder, decoder = _codingdict[selector]
data = control.GetControlData(part, selector)
if structfmt:
data = struct.unpack(structfmt, data)
if decoder:
data = decoder(data)
return data

0 comments on commit 30f2080

Please sign in to comment.