-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathattribtxt.py
37 lines (33 loc) · 1006 Bytes
/
attribtxt.py
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
# coding: utf-8
# experiments with attributed strings
from objc_util import *
import ctypes
NSMutableAttributedString=ObjCClass('NSMutableAttributedString')
NSFontAttributeName=ns('NSFont')
UIFont=ObjCClass('UIFont')
attrtext = NSMutableAttributedString.alloc()
strtext='This is a ui.Label with attributed strings!'
attrtext.initWithString_(ns(strtext))
sz=6.0
traits=0
for i in range(len(strtext)//2):
f=UIFont.systemFontOfSize_traits_(sz,traits)
nsr=NSRange(i,1)
attrtext.addAttribute_value_range_(NSFontAttributeName,f,nsr)
sz+=2.5
traits+=1
for i in range(len(strtext)//2,len(strtext)-1):
f=UIFont.systemFontOfSize_traits_(sz,traits)
nsr=NSRange(i,1)
attrtext.addAttribute_value_range_(NSFontAttributeName,f,nsr)
sz-=2.5
traits+=1
import ui
v=ui.View(frame=(0,0,576,576),bg_color=(0.7,)*3)
lbl=ui.Label(bg_color='white')
v.add_subview(lbl)
v.present('sheet')
lblobj=ObjCInstance(lbl._objc_ptr)
lblobj.setAttributedText_(attrtext)
lbl.size_to_fit()
s=v.draw_snapshot()