Searched +refs:ListBox +refs:index (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dlistbox.rb12 class ListBox < TkWindow class in class:Tk.BWidget
22 class Tk::BWidget::ListBox
26 TkCommandNames = ['ListBox'.freeze].freeze
27 WidgetClassName = 'ListBox'.freeze
44 if tag.kind_of?(Tk::BWidget::ListBox::Item)
148 def index(item) method in class:Tk
149 num_or_str(tk_send('index', tagid(item)))
205 Tk::BWidget::ListBox::Item.id2obj(self, item)
210 class Tk::BWidget::ListBox::Item
237 if lbox.kind_of?(Tk::BWidget::ListBox)
333 def index method in class:Tk
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/Clients/DNSServiceBrowser.NET/
H A DDNSServiceBrowser.cs35 private System.Windows.Forms.ListBox browseList;
55 private System.Windows.Forms.ListBox serviceTextField;
134 this.browseList = new System.Windows.Forms.ListBox();
146 this.serviceTextField = new System.Windows.Forms.ListBox();
640 int index = browseList.Items.IndexOf(serviceName);
648 if (index == -1)
663 BrowseData data = (BrowseData) browseList.Items[index];
678 int index = browseList.Items.IndexOf(serviceName);
683 if (index != -1)
685 BrowseData data = (BrowseData) browseList.Items[index];
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dlistbox.tcl7 # - ListBox::create
8 # - ListBox::configure
9 # - ListBox::cget
10 # - ListBox::insert
11 # - ListBox::itemconfigure
12 # - ListBox::itemcget
13 # - ListBox::bindText
14 # - ListBox::bindImage
15 # - ListBox::delete
16 # - ListBox
[all...]
H A Dcombobox.tcl26 Widget::define ComboBox combobox ArrowButton Entry ListBox
171 ## If we have images, we have to use a BWidget ListBox.
330 proc ComboBox::setvalue { path index } {
335 switch -- $index {
357 if { [string index $index 0] == "@" } {
358 set idx [string range $index 1 end]
360 return -code error "bad index \"$index\""
363 return -code error "bad index \"
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/bwidget/
H A Dtree.rb55 list = Tk::BWidget::ListBox.new(sw, :relief=>:flat, :borderwidth=>0,
162 :index=>'end', :text=>basename,
239 Tk::BWidget::ListBox::Item.new(list, 'end', :text=>f,
270 index = list.index(node) - tree.nodes(cursel).size
272 data[index] = res

Completed in 209 milliseconds