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.
|
|
|
retquire '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
|