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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#!/usr/bin/env ruby
#
# STFL - The Structured Terminal Forms Language/Library
# Copyright (C) 2006 Andreas Krennmair <ak@synflood.at>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA
#
# example.rb: A little STFL Ruby example
require 'stfl'
layout = <<EOT
vbox
@style_normal:bg=blue
table
label
.colspan:2 .expand:0 .tie:c
text:"vCard Creator"
tablebr
label
.border:ltb .expand:0
text:"First Name: "
input[firstname]
.border:rtb .expand:h
style_normal:attr=underline
style_focus:fg=red,attr=underline
text[firstnametext]:
tablebr
label
.border:ltb .expand:0
text:"Last Name: "
input[lastname]
.border:rtb .expand:h
style_normal:attr=underline
style_focus:fg=red,attr=underline
text[lastnametext]:
tablebr
label
.border:ltb .expand:0
text:"Email Address: "
input[email]
.border:rtb .expand:h
style_normal:attr=underline
style_focus:fg=red,attr=underline
text[emailtext]:
tablebr
label
.border:ltb .expand:0
text:"Save to File: "
input[file]
.border:rtb .expand:h
style_normal:attr=underline
style_focus:fg=red,attr=underline
text[filetext]:
tablebr
label
.colspan:2 .expand:0 .tie:r
text[msg]:
EOT
$stfl = Stfl.create(layout)
def save_vcard
filename = $stfl.get("filetext")
if filename then
firstname = $stfl.get("firstnametext")
lastname = $stfl.get("lastnametext")
email = $stfl.get("emailtext")
vcard = <<EOVCARD
BEGIN:VCARD
VERSION:2.1
FN:#{firstname} #{lastname}
N:#{lastname};#{firstname}
EMAIL;INTERNET:#{email}
END:VCARD
EOVCARD
end
File.open(filename,"w") do |f|
f.write(vcard)
end
$stfl.set("msg","Stored vCard to #{filename} ")
end
loop do
event = $stfl.run(0)
focus = $stfl.get_focus
break if event == "ESC"
if event == "ENTER" and focus and focus == "file" then
save_vcard
end
end
|