- ChangeCursorHandler - Class in draw.controller.handler
-
React to anchor points on MouseMotion with changing cursor; thereafter, handle dragging behavior.
- ChangeCursorHandler(Model, DrawingPalette) - Constructor for class draw.controller.handler.ChangeCursorHandler
-
- chooseTool(PaletteEntry) - Method in class draw.view.DrawingPalette
-
- ChooseVisitor - Class in draw.controller.visitors
-
Find the most recent element that intersects given point.
- ChooseVisitor(Point) - Constructor for class draw.controller.visitors.ChooseVisitor
-
- clear() - Method in class draw.model.Model
-
- clearFillColor() - Method in class draw.model.Style
-
Clear fill color.
- ClipboardManager - Class in draw.clipboard
-
Singleton class to manage clipboard.
- clone() - Method in class draw.model.Element
-
Make an exact copy, delegated to subclasses.
- clone() - Method in class draw.model.Group
-
Clone Group
Take care (draw.2) to reinstate parent links.
- clone() - Method in class draw.tools.OvalElt
-
- clone() - Method in class draw.tools.RectangleElt
-
Covariant overriding of
Element.clone()
method to return RectangleElt element.
- Command - Class in draw.controller.command
-
Base class for each Commmand.
- Command(Model, DrawingPalette) - Constructor for class draw.controller.command.Command
-
- complete(Optional<Color>) - Method in class draw.controller.command.FillCommand
-
- complete(Color) - Method in class draw.controller.command.PenCommand
-
Method can be tested in JUnit.
- complete(Point, int, Optional<Element>) - Method in class draw.controller.handler.CreateHandler
-
Add the given object to the actual model.
- complete(Point, int, Optional<Element>) - Method in class draw.controller.handler.Handler
-
- complete(Point, int, Optional<Element>) - Method in class draw.controller.handler.SelectHandler
-
React to completion (i.e., mouseRelease) by selecting all elements within the user Selection
- complete(Point, int, Optional<Element>) - Method in interface draw.controller.IActionInterface
-
Complete the mouse interaction.
- completeAnchor(Point, int, Element) - Method in class draw.controller.handler.ChangeCursorHandler
-
- completeAnchor(Point, int, Element) - Method in class draw.controller.handler.Handler
-
- completeAnchor(Point, int, Element) - Method in interface draw.controller.IActionInterface
-
Complete the mouse interaction as started by dragType.
- contains(Point) - Method in class draw.model.Element
-
Does this element contain the given point.
- contains(Point) - Method in class draw.model.Group
-
Check for containment by comparing any of sub elements.
- contains(Point) - Method in class draw.tools.OvalElt
-
- contains(Point) - Method in class draw.tools.RectangleElt
-
- controlDown(int) - Static method in class draw.controller.handler.ActiveToolHandler
-
Helper method to detect is CONTROL key is done.
- copy(Iterable<Element>) - Method in class draw.clipboard.ClipboardManager
-
Copy selected elements to the clipboard.
- copy() - Method in class draw.model.Style
-
Return a copy of current style.
- CopyCommand - Class in draw.controller.command
-
Copy selected elements from model and put into clipboard.
- CopyCommand(Model, DrawingPalette) - Constructor for class draw.controller.command.CopyCommand
-
- Create - Class in draw.palette
-
User requests to create a new selected element (i.e., Rectangle or Oval).
- Create(String, Icon, Icon, Element) - Constructor for class draw.palette.Create
-
The create tool requires a prototype class from which all subsequent created ones are generated.
- createColorIcon(Optional<Color>, int, int) - Method in class draw.view.DrawingPalette
-
Create icon for colors.
- CreateHandler - Class in draw.controller.handler
-
- CreateHandler(Model, DrawingPalette) - Constructor for class draw.controller.handler.CreateHandler
-
- createName - Static variable in class draw.palette.Create
-
- createPenIcon(int, int) - Method in class draw.view.DrawingPalette
-
Create icon to associate with menu item upon changes to styles.
- CreateTool - Class in draw.tools
-
The Create tool is responsible for adding new elements to the document.
- CreateTool(String, Element) - Constructor for class draw.tools.CreateTool
-
- cut(Iterable<Element>) - Method in class draw.clipboard.ClipboardManager
-
Cut selected elements to the clipboard.
- CutCommand - Class in draw.controller.command
-
Cut selected elements from model and put into clipboard.
- CutCommand(Model, DrawingPalette) - Constructor for class draw.controller.command.CutCommand
-