diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-03-02 20:05:33 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-03-02 20:05:33 +0100 |
commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /languages/ruby/app_templates/tdeapp/main.rb | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
Diffstat (limited to 'languages/ruby/app_templates/tdeapp/main.rb')
-rw-r--r-- | languages/ruby/app_templates/tdeapp/main.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/languages/ruby/app_templates/tdeapp/main.rb b/languages/ruby/app_templates/tdeapp/main.rb new file mode 100644 index 00000000..47235013 --- /dev/null +++ b/languages/ruby/app_templates/tdeapp/main.rb @@ -0,0 +1,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 TDE 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 + |