Static Public Attributes | |
static final String | EXPANDED_PROPERTY_NAME = "Expanded" |
Fired whenever a TaskView expands or collapses (but does not indicate which one). | |
static final String | TASK_STATE_PROPERTY_NAME = "TaskState" |
Fired whenever the state of a TaskView changes, where the parameters of a state are defined in the TaskState class. | |
static final String | TASK_ORDER_PROPERTY_NAME = "TaskOrder" |
Fired whenever the order of a TaskView relative to other TaskViews changes. | |
static final String | DRAGGING_PROPERTY_NAME = "Dragging" |
Fired whenever a TaskView starts or stops being dragged (but does not indicate which one). | |
static final String | SUBPANE_SHOWING_ALL_PROPERTY_NAME = "SubpaneShowingAll" |
Fired whenever a TaskView subpane starts or stops showing all its contents. | |
static final String | SUBPANE_COLLAPSED_PROPERTY_NAME = "SubpaneCollapsed" |
Fired whenever a TaskView subpane starts or stops being collapsed. |
final String edu.cmu.hcii.calo.view.task.support.TaskViewPropertyNames.EXPANDED_PROPERTY_NAME = "Expanded" [static] |
Fired whenever a TaskView expands or collapses (but does not indicate which one).
The old and new values will be booleans, true
meaning expanded, false
meaning not expanded.
final String edu.cmu.hcii.calo.view.task.support.TaskViewPropertyNames.TASK_STATE_PROPERTY_NAME = "TaskState" [static] |
Fired whenever the state of a TaskView changes, where the parameters of a state are defined in the TaskState class.
The old and new values will be TaskStates, both of which will pertain to the same Task. Note that firing a TASK_STATE_PROPERTY_NAME property change does NOT imply that the model has changed; it is the responsibility of the controller to update the model in response to these events.
final String edu.cmu.hcii.calo.view.task.support.TaskViewPropertyNames.TASK_ORDER_PROPERTY_NAME = "TaskOrder" [static] |
Fired whenever the order of a TaskView relative to other TaskViews changes.
The old value will be null
, and the new value will be a List of three adjacent Task objects in the order they now appear in the list, with the reordered task in the middle. Either the first or last Task in the list may be null
, which indicates that the middle Task should be at the beginning or end of the list, respectively.
final String edu.cmu.hcii.calo.view.task.support.TaskViewPropertyNames.DRAGGING_PROPERTY_NAME = "Dragging" [static] |
Fired whenever a TaskView starts or stops being dragged (but does not indicate which one).
The old and new values will be booleans, true
meaning dragging, false
meaning not dragging.
final String edu.cmu.hcii.calo.view.task.support.TaskViewPropertyNames.SUBPANE_SHOWING_ALL_PROPERTY_NAME = "SubpaneShowingAll" [static] |
Fired whenever a TaskView subpane starts or stops showing all its contents.
final String edu.cmu.hcii.calo.view.task.support.TaskViewPropertyNames.SUBPANE_COLLAPSED_PROPERTY_NAME = "SubpaneCollapsed" [static] |
Fired whenever a TaskView subpane starts or stops being collapsed.