Class: Fox::FXId
- Defined in:
- rdoc-sources/FXId.rb,
lib/fox16/thread.rb
Overview
class FXApp
Direct Known Subclasses
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Application FXApp.
-
#userData ⇒ Object
User data [Object].
-
#xid ⇒ Object
readonly
XID handle for the server-side resource [Integer].
Instance Method Summary collapse
-
#create ⇒ Object
Create resource.
-
#created? ⇒ Boolean
Returns true if this resource has been created.
-
#destroy ⇒ Object
Destroy resource.
-
#detach ⇒ Object
Detach resource.
-
#runOnUiThread(&block) ⇒ Object
Runs the specified block on the UI thread.
Methods inherited from FXObject
#bind, #handle, #load, #save, subclasses
Instance Attribute Details
#app ⇒ Object (readonly)
Application Fox::FXApp
8 9 10 |
# File 'rdoc-sources/FXId.rb', line 8 def app @app end |
#userData ⇒ Object
User data [Object]
11 12 13 |
# File 'rdoc-sources/FXId.rb', line 11 def userData @userData end |
#xid ⇒ Object (readonly)
XID handle for the server-side resource [Integer]
14 15 16 |
# File 'rdoc-sources/FXId.rb', line 14 def xid @xid end |
Instance Method Details
#create ⇒ Object
Create resource.
19 |
# File 'rdoc-sources/FXId.rb', line 19 def create(); end |
#created? ⇒ Boolean
Returns true if this resource has been created.
22 |
# File 'rdoc-sources/FXId.rb', line 22 def created?; end |
#destroy ⇒ Object
Destroy resource.
32 |
# File 'rdoc-sources/FXId.rb', line 32 def destroy(); end |
#detach ⇒ Object
Detach resource.
27 |
# File 'rdoc-sources/FXId.rb', line 27 def detach(); end |
#runOnUiThread(&block) ⇒ Object
Runs the specified block on the UI thread.
The block is posted to the event queue of the UI thread.
37 |
# File 'rdoc-sources/FXId.rb', line 37 def runOnUiThread(&block); end |