dropsite.tcl
This file is part of Unifix BWidget Toolkit
$Id: dropsite.tcl,v 1.5 2000/06/15 00:45:16 kuchler Exp $
Index of commands:
- DropSite::include
- DropSite::setdrop
- DropSite::register
- DropSite::setcursor
- DropSite::setoperation
- DropSite::_update_operation
- DropSite::_compute_operation
- DropSite::_draw_operation
- DropSite::_init_drag
- DropSite::_motion
- DropSite::_release
| DropSite | |
| Comments | |
| Arguments | |
| Used by | |
| Uses | |
namespace eval DropSite { |
|
| DropSite::_compute_operation | |
| Comments | Command DropSite::_compute_operation |
| Arguments | target state type |
| Used by | |
| Uses | |
proc DropSite::_compute_operation { target state type } { |
|
| DropSite::_draw_operation | |
| Comments | Command DropSite::_draw_operation |
| Arguments | target type |
| Used by | |
| Uses | |
proc DropSite::_draw_operation { target type } { |
|
| DropSite::_init_drag | |
| Comments | Command DropSite::_init_drag |
| Arguments | top evt source state X Y type ops data |
| Used by | DragSite::_init_drag |
| Uses | DropSite::_release DropSite::_motion |
proc DropSite::_init_drag { top evt source state X Y type ops data } { |
|
| DropSite::_motion | |
| Comments | Command DropSite::_motion |
| Arguments | X Y |
| Used by | DropSite::_motion DropSite::_init_drag |
| Uses | DropSite::_release DropSite::_motion |
proc DropSite::_motion { X Y } { |
|
| DropSite::_release | |
| Comments | Command DropSite::_release |
| Arguments | X Y |
| Used by | DropSite::_motion DropSite::_init_drag |
| Uses | DragSite::_end_drag |
proc DropSite::_release { X Y } { |
|
| DropSite::_update_operation | |
| Comments | Command DropSite::_update_operation |
| Arguments | state |
| Used by | |
| Uses | |
proc DropSite::_update_operation { state } { |
|
| DropSite::include | |
| Comments | Command DropSite::include |
| Arguments | class types |
| Used by | |
| Uses | Widget::declare |
proc DropSite::include { class types } { |
|
| DropSite::register | |
| Comments | Command DropSite::register |
| Arguments | path args |
| Used by | |
| Uses | Widget::getMegawidgetOption Widget::destroy Widget::init |
proc DropSite::register { path args } { |
|
| DropSite::setcursor | |
| Comments | Command DropSite::setcursor |
| Arguments | cursor |
| Used by | Tree::_over_cmd ListBox::_auto_scroll Entry::_over_cmd Entry::_auto_scroll ListBox::_over_cmd ListBox::_scroll Tree::_auto_scroll Tree::_scroll BWLabel::_over_cmd Entry::_scroll |
| Uses | |
proc DropSite::setcursor { cursor } { |
|
| DropSite::setdrop | |
| Comments | Command DropSite::setdrop Widget interface to register |
| Arguments | path subpath dropover drop force |
| Used by | BWLabel::create BWLabel::configure Tree::create Entry::create ListBox::configure ListBox::create Tree::configure Entry::configure |
| Uses | Widget::hasChanged |
proc DropSite::setdrop { path subpath dropover drop {force 0}} { |
|
| DropSite::setoperation | |
| Comments | Command DropSite::setoperation |
| Arguments | op |
| Used by | |
| Uses | |
proc DropSite::setoperation { op } { |
|