summaryrefslogtreecommitdiffstats
path: root/languages/ruby/app_templates/kxt/main.rb
blob: 930bff4f7390feece937031be2287b93e5e45cd3 (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
41
#!/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