Class: Qt::SizeF

Inherits:
Base show all
Defined in:
lib/qt/qtruby4.rb

Instance Method Summary collapse

Methods inherited from Base

#%, #&, #*, #**, #+, #-, #-@, #/, #<, #<<, #<=, #==, #>, #>=, #>>, #^, #methods, #protected_methods, #public_methods, q_classinfo, q_signal, q_slot, signals, #singleton_methods, slots, #|, #~

Instance Method Details

#inspectObject



1343
1344
1345
1346
# File 'lib/qt/qtruby4.rb', line 1343

def inspect
	str = super
	str.sub(/>$/, " width=%f, height=%f>" % [width, height])
end

#pretty_print(pp) ⇒ Object



1348
1349
1350
1351
# File 'lib/qt/qtruby4.rb', line 1348

def pretty_print(pp)
	str = to_s
	pp.text str.sub(/>$/, "\n width=%f,\n height=%f>" % [width, height])
end