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.
41 lines
1.0 KiB
41 lines
1.0 KiB
15 years ago
|
#!/usr/bin/env ruby
|
||
|
|
||
|
require 'Korundum'
|
||
|
|
||
|
require '%{APPNAMELC}iface.rb'
|
||
|
require '%{APPNAMELC}.rb'
|
||
|
require '%{APPNAMELC}view.rb'
|
||
|
require 'pref.rb'
|
||
|
|
||
|
description = I18N_NOOP("A KDE Application")
|
||
|
version = "%{VERSION}"
|
||
|
options = [ [ "+[URL]", I18N_NOOP( "Document to open" ), "" ] ]
|
||
|
|
||
|
about = KDE::AboutData.new("%{APPNAMELC}", I18N_NOOP("%{APPNAME}"), version, description,
|
||
|
KDE::AboutData.License_%{LICENSE}, "(C) %{YEAR} %{AUTHOR}", nil, nil, "%{EMAIL}")
|
||
|
about.addAuthor( "%{AUTHOR}", nil, "%{EMAIL}" )
|
||
|
KDE::CmdLineArgs.init(ARGV, about)
|
||
|
KDE::CmdLineArgs.addCmdLineOptions(options)
|
||
|
app = KDE::Application.new
|
||
|
|
||
|
# see if we are starting with session management
|
||
|
if app.restored?
|
||
|
RESTORE(%{APPNAMESC})
|
||
|
else
|
||
|
# no session.. just start up normally
|
||
|
args = KDE::CmdLineArgs.parsedArgs
|
||
|
if args.count == 0
|
||
|
widget = %{APPNAMESC}.new
|
||
|
widget.show
|
||
|
else
|
||
|
for i in 0...args.count do
|
||
|
widget = %{APPNAMESC}.new
|
||
|
widget.show
|
||
|
widget.load(args.url(i))
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
app.exec
|
||
|
|