Class: Tk::EncodedString
- Inherits:
-
String
- Object
- String
- Tk::EncodedString
show all
- Defined in:
- ext/lib/tk/encodedstr.rb
Constant Summary
collapse
- Encoding =
nil
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(str, enc = nil) ⇒ EncodedString
Returns a new instance of EncodedString.
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# File 'ext/lib/tk/encodedstr.rb', line 68
def initialize(str, enc = nil)
super(str)
enc ||= (self.class::Encoding)?
self.class::Encoding :
((Tk.encoding)? Tk.encoding : Tk.encoding_system)
if TkCore::WITH_ENCODING
unless encobj = Tk::Encoding::ENCODING_TABLE.get_obj(enc)
fail ArgumentError, "unsupported Tk encoding '#{enc}'"
end
self.force_encoding(encobj)
else
@encoding = enc
end
end
|
Class Method Details
.new_with_utf_backslash(str, enc = nil) ⇒ Object
60
61
62
|
# File 'ext/lib/tk/encodedstr.rb', line 60
def self.new_with_utf_backslash(str, enc = nil)
self.new('', enc).replace(self.subst_utf_backslash(str))
end
|
.new_without_utf_backslash(str, enc = nil) ⇒ Object
64
65
66
|
# File 'ext/lib/tk/encodedstr.rb', line 64
def self.new_without_utf_backslash(str, enc = nil)
self.new('', enc).replace(str)
end
|
.subst_tk_backslash(str) ⇒ Object
21
22
23
|
# File 'ext/lib/tk/encodedstr.rb', line 21
def self.subst_tk_backslash(str)
TclTkLib._subst_Tcl_backslash(str)
end
|
.subst_utf_backslash(str) ⇒ Object
13
14
15
16
|
# File 'ext/lib/tk/encodedstr.rb', line 13
def self.subst_utf_backslash(str)
TclTkLib._subst_UTF_backslash(str)
end
|
.to_backslash_sequence(str) ⇒ Object
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# File 'ext/lib/tk/encodedstr.rb', line 38
def self.to_backslash_sequence(str)
str.unpack('U*').collect{|c|
if c <= 0x1F case c
when 0x07; '\a'
when 0x08; '\b'
when 0x09; '\t'
when 0x0a; '\n'
when 0x0b; '\v'
when 0x0c; '\f'
when 0x0d; '\r'
else
format('\x%02X', c)
end
elsif c <= 0xFF c.chr
else
format('\u%X', c)
end
}.join('')
end
|
.utf_backslash(str) ⇒ Object
17
18
19
|
# File 'ext/lib/tk/encodedstr.rb', line 17
def self.utf_backslash(str)
self.subst_utf_backslash(str)
end
|
.utf_to_backslash(str) ⇒ Object
34
35
36
|
# File 'ext/lib/tk/encodedstr.rb', line 34
def self.utf_to_backslash(str)
self.utf_to_backslash_sequence(str)
end
|
.utf_to_backslash_sequence(str) ⇒ Object
25
26
27
28
29
30
31
32
33
|
# File 'ext/lib/tk/encodedstr.rb', line 25
def self.utf_to_backslash_sequence(str)
str.unpack('U*').collect{|c|
if c <= 0xFF c.chr
else
format('\u%X', c)
end
}.join('')
end
|
Instance Method Details
#__encoding ⇒ Object
88
|
# File 'ext/lib/tk/encodedstr.rb', line 88
alias __encoding encoding
|
#__instance_eval ⇒ Object
103
|
# File 'ext/lib/tk/encodedstr.rb', line 103
alias __instance_eval instance_eval
|
#__instance_variable_get ⇒ Object
wrapper methods for compatibility
101
|
# File 'ext/lib/tk/encodedstr.rb', line 101
alias __instance_variable_get instance_variable_get
|
#__instance_variable_set ⇒ Object
102
|
# File 'ext/lib/tk/encodedstr.rb', line 102
alias __instance_variable_set instance_variable_set
|
#__instance_variables ⇒ Object
104
|
# File 'ext/lib/tk/encodedstr.rb', line 104
alias __instance_variables instance_variables
|
#encoding ⇒ Object
Also known as:
encoding_obj
#instance_eval(*args, &b) ⇒ Object
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
# File 'ext/lib/tk/encodedstr.rb', line 127
def instance_eval(*args, &b)
old_enc = @encoding = self.encoding
ret = super(*args, &b)
if @encoding
if @encoding != old_enc
self.force_encoding(@encoding)
end
remove_instance_variable(:@encoding)
else
begin
remove_instance_variable(:@encoding)
self.force_encoding(Tk.encoding)
rescue NameError
end
end
ret
end
|
#instance_variable_get(key) ⇒ Object
106
107
108
109
110
111
112
|
# File 'ext/lib/tk/encodedstr.rb', line 106
def instance_variable_get(key)
if (key.to_s == '@encoding')
self.encoding
else
super(key)
end
end
|
#instance_variable_set(key, value) ⇒ Object
114
115
116
117
118
119
120
121
122
123
124
125
|
# File 'ext/lib/tk/encodedstr.rb', line 114
def instance_variable_set(key, value)
if (key.to_s == '@encoding')
if value
self.force_encoding(value)
else
self.force_encoding(Tk::Encoding::UNKNOWN)
end
value
else
super(key, value)
end
end
|
#instance_variables ⇒ Object
151
152
153
154
155
|
# File 'ext/lib/tk/encodedstr.rb', line 151
def instance_variables
ret = super()
ret << :@encoding ret
end
|