blob: 31d5e8689a771bd5c5471d7cac3883f1d9a34e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/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
|