Tray: Add drag-entered and drag-exited events

This commit is contained in:
Nishanth Shanmugham 2015-11-05 18:45:43 -06:00
parent 5b0ea5bd46
commit 818892d474
6 changed files with 27 additions and 0 deletions

View file

@ -59,4 +59,12 @@ void TrayIcon::NotifyDropFiles(const std::vector<std::string>& files) {
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnDropFiles(files));
}
void TrayIcon::NotifyDragEntered() {
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnDragEntered());
}
void TrayIcon::NotifyDragExited() {
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnDragExited());
}
} // namespace atom