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.
42 lines
1.0 KiB
42 lines
1.0 KiB
#!/usr/bin/env ruby
|
|
|
|
require 'Korundum'
|
|
|
|
require '%{APPNAMELC}.rb'
|
|
require 'prefs-base.rb'
|
|
require 'prefs.rb'
|
|
require 'settings.rb'
|
|
require 'appview_base.rb'
|
|
require '%{APPNAMELC}view.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
|
|
end
|
|
end
|
|
end
|
|
|
|
app.exec
|
|
|