You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/korundum/rubylib/tutorials/p6/p6.rb

26 lines
596 B

require 'Korundum'
class BookMarkList < KDE::ListView
k_dcop 'void add( TQString )'
def initialize()
super(nil, "Bookmarks")
addColumn( i18n("My Bookmarks") );
end
def add( s )
insertItem( KDE::ListViewItem.new( self , s ) )
end
end
about = KDE::AboutData.new("p6", "Tutorial - p6", "0.1")
KDE::CmdLineArgs.init(ARGV, about)
a = KDE::UniqueApplication.new()
mylist = BookMarkList.new
mylist.resize( 300, 200 )
a.mainWidget = mylist
mylist.show
a.exec