Class: Qt::TreeWidgetItem

Inherits:
Base show all
Includes:
Enumerable
Defined in:
lib/Qt/qtruby4.rb,
ext/ruby/qtruby/src/lib/Qt/qtruby4.rb

Instance Method Summary collapse

Methods inherited from Base

#%, #&, #*, #**, #+, #-, #-@, #/, #<, #<<, #<=, #==, #>, #>=, #>>, #QCOMPARE, #QEXPECT_FAIL, #QFAIL, #QSKIP, #QTEST, #QVERIFY, #QVERIFY2, #QWARN, #^, ancestors, #is_a?, #methods, private_slots, #protected_methods, #public_methods, q_classinfo, q_signal, q_slot, signals, #singleton_methods, slots, #|, #~

Constructor Details

#initialize(*args) ⇒ TreeWidgetItem

Returns a new instance of TreeWidgetItem.



2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/Qt/qtruby4.rb', line 2143

def initialize(*args)
	# There is not way to distinguish between the copy constructor
	# QTreeWidgetItem (const QTreeWidgetItem & other) 
	# and
	# QTreeWidgetItem (QTreeWidgetItem * parent, const QStringList & strings, int type = Type)
	# when the latter has a single argument. So force the second variant to be called
	if args.length == 1 && args[0].kind_of?(Qt::TreeWidgetItem)
		super(args[0], Qt::TreeWidgetItem::Type)
	else
		super(*args)
	end
end

Instance Method Details

#clone(*args) ⇒ Object



2177
2178
2179
# File 'lib/Qt/qtruby4.rb', line 2177

def clone(*args)
	Qt::TreeWidgetItem.new(self)
end

#eachObject



2185
2186
2187
2188
2189
2190
2191
# File 'lib/Qt/qtruby4.rb', line 2185

def each
	it = Qt::TreeWidgetItemIterator.new(self)
	while it.current
		yield it.current
		it += 1
	end
end

#inspectObject



2156
2157
2158
2159
2160
2161
2162
2163
2164
# File 'lib/Qt/qtruby4.rb', line 2156

def inspect
	str = super
	str.sub!(/>$/, "")
	str << " parent=%s," % parent unless parent.nil?
	for i in 0..(columnCount - 1)
		str << " text%d='%s'," % [i, self.text(i)]
	end
	str.sub!(/,?$/, ">")
end

#pretty_print(pp) ⇒ Object



2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
# File 'lib/Qt/qtruby4.rb', line 2166

def pretty_print(pp)
	str = to_s
	str.sub!(/>$/, "")
	str << " parent=%s," % parent unless parent.nil?
	for i in 0..(columnCount - 1)
		str << " text%d='%s'," % [i, self.text(i)]
	end
	str.sub!(/,?$/, ">")
	pp.text str
end

#type(*args) ⇒ Object



2181
2182
2183
# File 'lib/Qt/qtruby4.rb', line 2181

def type(*args)
	method_missing(:type, *args)
end