Sapoturge

Personal website

View the Project on GitHub

Feature Design: Clicking

There a few features from the previous design post that did not make it into the pull request. These include:

Besides the controls for rounded rectangle, all of these use element-specific changes to the context menu. Right now, the context menu options are hard-coded, and only depend on whether or not a Segment was clicked. This needs to be changed before these options can be added.

The Problem

The clicked method on Elements was designed when the only Elements were Paths. It returns if the path was clicked, and the segment that was clicked (if any). Currently, the other shapes simply return null for the segment, but this is mostly incorrect for Polylines, Polygons, and possibly Lines. The real issue comes when handling right-clicks and bringing up the context menu. The menu adds items based on if a Segment was clicked and the Segment’s segment_type. Among other things, this includes splitting a segment, which is necessary for making Polylines and Polygons useful. However, Polylines and Polygons can only have Linear segments, so most of the existing context menu would be useless. The context menu is also the best way to change Elements to less restrictive supertypes, but there is no way to do that with the current setup.

Right now, no new functionality will be added. This will be pure refactoring as much as possible, with the intent to add functionality in future features (still part of this release).

Planned menu options: (These will not all be present after this feature)

The Solution

As always, this is a preliminary design, and it will likely change before implementation is finished. (This is the second version; the first was much more complicated and involved a new interface.)

New Base class Segment

The existing Segment class will be split into three classes: Segment, PathSegment, and LineSegment. PathSegment is the same as the current Segment class; LineSegment is a version that can only be linear for Polylines and Polygons, and Segment is a base class so both can be used in the clicked handler.

New Methods

Segments and Elements will get a new method called options(). This will return the options that should appear in the context menu as a list of ContextOptions.

New Class ContextOption

This is a representation of options for the context menu. Similar to PathSegment, there are multiple constructors for different kinds of options.

New Enum ContextOptionType

Similar to the SegmentType enum, this determines what kind of option this is. Each kind has its own constructor, specified above.

Changes to click handling

When a right click is detected, the menu will call options on both the segment (if present) and element, then parse the results into options to put in the menu. Toggle options will be set to match the current state of the associated property, and Options items will select the currently selected option.