Class: MyRendererToggle
- Inherits:
-
Gtk::CheckButton
- Object
- Gtk::CheckButton
- MyRendererToggle
show all
- Includes:
- ManqodCommon
- Defined in:
- lib/FormHolder/Form/InputHolder/Toggle.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
ManqodCommon::CRITICAL, ManqodCommon::DEBUG, ManqodCommon::ERROR, ManqodCommon::INFO, ManqodCommon::NORMAL, ManqodCommon::WARNING
Constants included
from Eprint
Eprint::DOMAIN, Eprint::LEVEL
Instance Attribute Summary collapse
Instance Method Summary
collapse
#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
7
8
9
10
11
12
13
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 7
def initialize(pc)
@pc=pc
super(pc.item['description'],false)
signal_connect('toggled'){
run_events(pc.item['id'],'form_item-Action')
}
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args) ⇒ Object
34
35
36
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 34
def method_missing(sym,*args)
text
end
|
Instance Attribute Details
#pc ⇒ Object
Returns the value of attribute pc.
14
15
16
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 14
def pc
@pc
end
|
Instance Method Details
#inspect ⇒ Object
37
38
39
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 37
def inspect
"ToggleButton(#{item['description']})"
end
|
#item ⇒ Object
31
32
33
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 31
def item
@pc.item
end
|
#parentM ⇒ Object
28
29
30
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 28
def parentM
pc.parentM
end
|
#text ⇒ Object
25
26
27
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 25
def text
self.active?.to_s
end
|
#to_s ⇒ Object
40
41
42
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 40
def to_s
inspect
end
|
#update(new_value = pc.item['default']) ⇒ Object
16
17
18
19
20
21
22
23
24
|
# File 'lib/FormHolder/Form/InputHolder/Toggle.rb', line 16
def update(new_value=pc.item['default'])
run_events(pc.item['id'],'form_item-BeforeUpdate')
item['default']=new_value
pc.run_query
set_active(pc.item['default']=="true")
run_events(pc.item['id'],'form_item-AfterUpdate')
end
|