Class: SumRendererText
- Inherits:
-
Gtk::Label
- Object
- Gtk::Label
- SumRendererText
- Includes:
- ManqodCommon
- Defined in:
- lib/ListHolder/ListPanel/ListSum/Text.rb
Overview
this file is part of manqod manqod is distributed under the CDDL licence the author of manqod is Dobai-Pataky Balint([email protected])
Constant Summary
Constants included from ManqodCommon
ManqodCommon::CRITICAL, ManqodCommon::DEBUG, ManqodCommon::ERROR, ManqodCommon::INFO, ManqodCommon::NORMAL, ManqodCommon::WARNING
Constants included from Eprint
Instance Attribute Summary collapse
-
#column ⇒ Object
Returns the value of attribute column.
Instance Method Summary collapse
-
#initialize(column) ⇒ SumRendererText
constructor
A new instance of SumRendererText.
- #inspect ⇒ Object
- #to_s ⇒ Object
- #update(new_value = 0) ⇒ Object
Methods included from ManqodCommon
#add_where, #admin, #admin_cache, #admin_qrow, #admin_rows, #backtrace_to_debug, #cache, #changed_ids_of_base, #client, #client_fields, #client_image_of_id, #client_qrow, #client_query, #client_rows, #eeval, #escape_string, #getBinding, #guess_base, #guess_table, #image_of_id, #lzero, #manqod_db, #measure, #myexec, #nick, #nick_id, #number_format, #qrow, #query, #reconnect_manqod_db, #rows, #run_events, #send_message, #sendmail, #set_manqod_db_uri, #set_nick
Methods included from Eprint
#ecode, #edebug, #eerror, #einfo, #enormal, #eprint, #ewarn, #gtk_set_edebug, #set_edebug, #tell_exception
Constructor Details
#initialize(column) ⇒ SumRendererText
Returns a new instance of SumRendererText.
7 8 9 10 11 12 13 14 15 |
# File 'lib/ListHolder/ListPanel/ListSum/Text.rb', line 7 def initialize(column) @column=column @decimals=case column.header["type"] when "gtk_float" then 2 else 0 end super() set_alignment(column.alignment,0.5) end |
Instance Attribute Details
#column ⇒ Object
Returns the value of attribute column.
16 17 18 |
# File 'lib/ListHolder/ListPanel/ListSum/Text.rb', line 16 def column @column end |
Instance Method Details
#inspect ⇒ Object
29 30 31 |
# File 'lib/ListHolder/ListPanel/ListSum/Text.rb', line 29 def inspect to_s end |
#to_s ⇒ Object
26 27 28 |
# File 'lib/ListHolder/ListPanel/ListSum/Text.rb', line 26 def to_s "SumRenderer of #{column}" end |
#update(new_value = 0) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/ListHolder/ListPanel/ListSum/Text.rb', line 18 def update(new_value=0) set_text(case column.header['type'] when "gtk_int" then number_format(new_value,@column.decimals_attribute) when "gtk_float" then number_format(new_value,@column.decimals_attribute) when "gtk_duration" then new_value.to_i.strftime(column.duration_format) end) end |