forked from nus-cs2103-AY1617S1/addressbook-level4
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add jump to list request event * Make highlighting disappear after several seconds * A bit clean up * Highlight existing task when adding duplicates * Remove sop * Update ui diagrams * Enable selection only when needed * Update color to be more obvious * Support highlighting for rename/schedule task * Update highlight color * Disable click on the list * Change shortcut key of helpwindow to be ctrl+H * Update task card date time format * add shortchut key as ctrl-z for undo * Fix the mainwindow request focusing automatically issue * Update task card handle for gui tests * Extend gui test time * Extend some gui test time * Add icons for different panels * Some ui updates * Updates for gui tests * Some font size changes * Remove split divider * Remove unnecessary imports * Format time * Update time format in gui task card handle * Update messages to remove any index * Update gui test * Update task panel name
- Loading branch information
Showing
37 changed files
with
456 additions
and
237 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
src/main/java/seedu/agendum/commons/events/ui/JumpToListRequestEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package seedu.agendum.commons.events.ui; | ||
|
||
import seedu.agendum.commons.events.BaseEvent; | ||
import seedu.agendum.model.task.Task; | ||
|
||
//@@author A0148031R | ||
/** | ||
* Indicates a request to jump to the list of tasks | ||
*/ | ||
public class JumpToListRequestEvent extends BaseEvent { | ||
|
||
public final Task targetTask; | ||
public final boolean hasMultipleTasks; | ||
|
||
public JumpToListRequestEvent(Task task, boolean hasMultipleTasks) { | ||
this.targetTask = task; | ||
this.hasMultipleTasks = hasMultipleTasks; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return this.getClass().getSimpleName(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.