Class: Qt::TreeWidgetItem

Inherits:
Base show all
Includes:
Enumerable
Defined in:
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.



2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
# File 'lib/Qt/qtruby4.rb', line 2169

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



2203
2204
2205
# File 'lib/Qt/qtruby4.rb', line 2203

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

#eachObject



2211
2212
2213
2214
2215
2216
2217
# File 'lib/Qt/qtruby4.rb', line 2211

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

#inspectObject



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

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



2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
# File 'lib/Qt/qtruby4.rb', line 2192

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



2207
2208
2209
# File 'lib/Qt/qtruby4.rb', line 2207

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