Merge pull request #2232 from atom/status_item_view
Introduce custom status item view on OS X.
This commit is contained in:
commit
dbab889fcc
10 changed files with 301 additions and 67 deletions
|
@ -60,6 +60,14 @@ void Tray::OnBalloonClosed() {
|
||||||
Emit("balloon-closed");
|
Emit("balloon-closed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Tray::OnRightClicked(const gfx::Rect& bounds) {
|
||||||
|
Emit("right-clicked", bounds);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Tray::OnDropFiles(const std::vector<std::string>& files) {
|
||||||
|
Emit("drop-files", files);
|
||||||
|
}
|
||||||
|
|
||||||
bool Tray::IsDestroyed() const {
|
bool Tray::IsDestroyed() const {
|
||||||
return !tray_icon_;
|
return !tray_icon_;
|
||||||
}
|
}
|
||||||
|
@ -102,6 +110,12 @@ void Tray::DisplayBalloon(mate::Arguments* args,
|
||||||
tray_icon_->DisplayBalloon(icon, title, content);
|
tray_icon_->DisplayBalloon(icon, title, content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Tray::PopContextMenu(mate::Arguments* args) {
|
||||||
|
gfx::Point pos;
|
||||||
|
args->GetNext(&pos);
|
||||||
|
tray_icon_->PopContextMenu(pos);
|
||||||
|
}
|
||||||
|
|
||||||
void Tray::SetContextMenu(mate::Arguments* args, Menu* menu) {
|
void Tray::SetContextMenu(mate::Arguments* args, Menu* menu) {
|
||||||
tray_icon_->SetContextMenu(menu->model());
|
tray_icon_->SetContextMenu(menu->model());
|
||||||
}
|
}
|
||||||
|
@ -117,6 +131,7 @@ void Tray::BuildPrototype(v8::Isolate* isolate,
|
||||||
.SetMethod("setTitle", &Tray::SetTitle)
|
.SetMethod("setTitle", &Tray::SetTitle)
|
||||||
.SetMethod("setHighlightMode", &Tray::SetHighlightMode)
|
.SetMethod("setHighlightMode", &Tray::SetHighlightMode)
|
||||||
.SetMethod("displayBalloon", &Tray::DisplayBalloon)
|
.SetMethod("displayBalloon", &Tray::DisplayBalloon)
|
||||||
|
.SetMethod("popContextMenu", &Tray::PopContextMenu)
|
||||||
.SetMethod("_setContextMenu", &Tray::SetContextMenu);
|
.SetMethod("_setContextMenu", &Tray::SetContextMenu);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#define ATOM_BROWSER_API_ATOM_API_TRAY_H_
|
#define ATOM_BROWSER_API_ATOM_API_TRAY_H_
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "atom/browser/api/event_emitter.h"
|
#include "atom/browser/api/event_emitter.h"
|
||||||
#include "atom/browser/ui/tray_icon_observer.h"
|
#include "atom/browser/ui/tray_icon_observer.h"
|
||||||
|
@ -41,11 +42,13 @@ class Tray : public mate::EventEmitter,
|
||||||
virtual ~Tray();
|
virtual ~Tray();
|
||||||
|
|
||||||
// TrayIconObserver:
|
// TrayIconObserver:
|
||||||
void OnClicked(const gfx::Rect&) override;
|
void OnClicked(const gfx::Rect& bounds) override;
|
||||||
void OnDoubleClicked() override;
|
void OnDoubleClicked() override;
|
||||||
void OnBalloonShow() override;
|
void OnBalloonShow() override;
|
||||||
void OnBalloonClicked() override;
|
void OnBalloonClicked() override;
|
||||||
void OnBalloonClosed() override;
|
void OnBalloonClosed() override;
|
||||||
|
void OnRightClicked(const gfx::Rect& bounds) override;
|
||||||
|
void OnDropFiles(const std::vector<std::string>& files) override;
|
||||||
|
|
||||||
// mate::Wrappable:
|
// mate::Wrappable:
|
||||||
bool IsDestroyed() const override;
|
bool IsDestroyed() const override;
|
||||||
|
@ -57,6 +60,7 @@ class Tray : public mate::EventEmitter,
|
||||||
void SetTitle(mate::Arguments* args, const std::string& title);
|
void SetTitle(mate::Arguments* args, const std::string& title);
|
||||||
void SetHighlightMode(mate::Arguments* args, bool highlight);
|
void SetHighlightMode(mate::Arguments* args, bool highlight);
|
||||||
void DisplayBalloon(mate::Arguments* args, const mate::Dictionary& options);
|
void DisplayBalloon(mate::Arguments* args, const mate::Dictionary& options);
|
||||||
|
void PopContextMenu(mate::Arguments* args);
|
||||||
void SetContextMenu(mate::Arguments* args, Menu* menu);
|
void SetContextMenu(mate::Arguments* args, Menu* menu);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -26,6 +26,9 @@ void TrayIcon::DisplayBalloon(const gfx::Image& icon,
|
||||||
const base::string16& contents) {
|
const base::string16& contents) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TrayIcon::PopContextMenu(const gfx::Point& pos) {
|
||||||
|
}
|
||||||
|
|
||||||
void TrayIcon::NotifyClicked(const gfx::Rect& bounds) {
|
void TrayIcon::NotifyClicked(const gfx::Rect& bounds) {
|
||||||
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnClicked(bounds));
|
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnClicked(bounds));
|
||||||
}
|
}
|
||||||
|
@ -46,4 +49,12 @@ void TrayIcon::NotifyBalloonClosed() {
|
||||||
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnBalloonClosed());
|
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnBalloonClosed());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TrayIcon::NotifyRightClicked(const gfx::Rect& bounds) {
|
||||||
|
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnRightClicked(bounds));
|
||||||
|
}
|
||||||
|
|
||||||
|
void TrayIcon::NotfiyDropFiles(const std::vector<std::string>& files) {
|
||||||
|
FOR_EACH_OBSERVER(TrayIconObserver, observers_, OnDropFiles(files));
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace atom
|
} // namespace atom
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#define ATOM_BROWSER_UI_TRAY_ICON_H_
|
#define ATOM_BROWSER_UI_TRAY_ICON_H_
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "atom/browser/ui/tray_icon_observer.h"
|
#include "atom/browser/ui/tray_icon_observer.h"
|
||||||
#include "base/observer_list.h"
|
#include "base/observer_list.h"
|
||||||
|
@ -46,6 +47,8 @@ class TrayIcon {
|
||||||
const base::string16& title,
|
const base::string16& title,
|
||||||
const base::string16& contents);
|
const base::string16& contents);
|
||||||
|
|
||||||
|
virtual void PopContextMenu(const gfx::Point& pos);
|
||||||
|
|
||||||
// Set the context menu for this icon.
|
// Set the context menu for this icon.
|
||||||
virtual void SetContextMenu(ui::SimpleMenuModel* menu_model) = 0;
|
virtual void SetContextMenu(ui::SimpleMenuModel* menu_model) = 0;
|
||||||
|
|
||||||
|
@ -56,6 +59,8 @@ class TrayIcon {
|
||||||
void NotifyBalloonShow();
|
void NotifyBalloonShow();
|
||||||
void NotifyBalloonClicked();
|
void NotifyBalloonClicked();
|
||||||
void NotifyBalloonClosed();
|
void NotifyBalloonClosed();
|
||||||
|
void NotifyRightClicked(const gfx::Rect& bounds = gfx::Rect());
|
||||||
|
void NotfiyDropFiles(const std::vector<std::string>& files);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
TrayIcon();
|
TrayIcon();
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
#include "base/mac/scoped_nsobject.h"
|
#include "base/mac/scoped_nsobject.h"
|
||||||
|
|
||||||
@class AtomMenuController;
|
@class AtomMenuController;
|
||||||
@class StatusItemController;
|
@class StatusItemView;
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
|
@ -27,12 +27,12 @@ class TrayIconCocoa : public TrayIcon {
|
||||||
void SetToolTip(const std::string& tool_tip) override;
|
void SetToolTip(const std::string& tool_tip) override;
|
||||||
void SetTitle(const std::string& title) override;
|
void SetTitle(const std::string& title) override;
|
||||||
void SetHighlightMode(bool highlight) override;
|
void SetHighlightMode(bool highlight) override;
|
||||||
|
void PopContextMenu(const gfx::Point& pos) override;
|
||||||
void SetContextMenu(ui::SimpleMenuModel* menu_model) override;
|
void SetContextMenu(ui::SimpleMenuModel* menu_model) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
base::scoped_nsobject<NSStatusItem> item_;
|
// Atom custom view for NSStatusItem.
|
||||||
|
base::scoped_nsobject<StatusItemView> status_item_view_;
|
||||||
base::scoped_nsobject<StatusItemController> controller_;
|
|
||||||
|
|
||||||
// Status menu shown when right-clicking the system icon.
|
// Status menu shown when right-clicking the system icon.
|
||||||
base::scoped_nsobject<AtomMenuController> menu_;
|
base::scoped_nsobject<AtomMenuController> menu_;
|
||||||
|
|
|
@ -9,81 +9,242 @@
|
||||||
#include "ui/gfx/image/image.h"
|
#include "ui/gfx/image/image.h"
|
||||||
#include "ui/gfx/screen.h"
|
#include "ui/gfx/screen.h"
|
||||||
|
|
||||||
@interface StatusItemController : NSObject {
|
namespace {
|
||||||
|
|
||||||
|
const CGFloat kStatusItemLength = 26;
|
||||||
|
const CGFloat kMargin = 3;
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
@interface StatusItemView : NSView {
|
||||||
atom::TrayIconCocoa* trayIcon_; // weak
|
atom::TrayIconCocoa* trayIcon_; // weak
|
||||||
|
AtomMenuController* menuController_; // weak
|
||||||
|
BOOL isHighlightEnable_;
|
||||||
|
BOOL inMouseEventSequence_;
|
||||||
|
base::scoped_nsobject<NSImage> image_;
|
||||||
|
base::scoped_nsobject<NSImage> alternateImage_;
|
||||||
|
base::scoped_nsobject<NSString> title_;
|
||||||
|
base::scoped_nsobject<NSStatusItem> statusItem_;
|
||||||
}
|
}
|
||||||
- (id)initWithIcon:(atom::TrayIconCocoa*)icon;
|
|
||||||
- (void)handleClick:(id)sender;
|
|
||||||
- (void)handleDoubleClick:(id)sender;
|
|
||||||
|
|
||||||
@end // @interface StatusItemController
|
@end // @interface StatusItemView
|
||||||
|
|
||||||
@implementation StatusItemController
|
@implementation StatusItemView
|
||||||
|
|
||||||
- (id)initWithIcon:(atom::TrayIconCocoa*)icon {
|
- (id)initWithIcon:(atom::TrayIconCocoa*)icon {
|
||||||
trayIcon_ = icon;
|
trayIcon_ = icon;
|
||||||
|
isHighlightEnable_ = YES;
|
||||||
|
statusItem_.reset([[[NSStatusBar systemStatusBar] statusItemWithLength:
|
||||||
|
NSVariableStatusItemLength] retain]);
|
||||||
|
NSRect frame = NSMakeRect(0,
|
||||||
|
0,
|
||||||
|
kStatusItemLength,
|
||||||
|
[[statusItem_ statusBar] thickness]);
|
||||||
|
if ((self = [super initWithFrame:frame])) {
|
||||||
|
[self registerForDraggedTypes:
|
||||||
|
[NSArray arrayWithObjects:NSFilenamesPboardType, nil]];
|
||||||
|
[statusItem_ setView:self];
|
||||||
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)handleClick:(id)sender {
|
- (void)removeItem {
|
||||||
// Get the frame of the NSStatusItem.
|
[[NSStatusBar systemStatusBar] removeStatusItem:statusItem_];
|
||||||
NSRect frame = [NSApp currentEvent].window.frame;
|
statusItem_.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)drawRect:(NSRect)dirtyRect {
|
||||||
|
// Draw the tray icon and title that align with NSSStatusItem, layout:
|
||||||
|
// ----------------
|
||||||
|
// | icon | title |
|
||||||
|
/// ----------------
|
||||||
|
BOOL highlight = [self shouldHighlight];
|
||||||
|
CGFloat titleWidth = [self titleWidth];
|
||||||
|
// Calculate the total icon bounds.
|
||||||
|
NSRect statusItemBounds = NSMakeRect(0,
|
||||||
|
0,
|
||||||
|
kStatusItemLength + titleWidth,
|
||||||
|
[[statusItem_ statusBar] thickness]);
|
||||||
|
[statusItem_ drawStatusBarBackgroundInRect:statusItemBounds
|
||||||
|
withHighlight:highlight];
|
||||||
|
[statusItem_ setLength:titleWidth + kStatusItemLength];
|
||||||
|
if (title_) {
|
||||||
|
NSRect titleDrawRect = NSMakeRect(kStatusItemLength,
|
||||||
|
0,
|
||||||
|
titleWidth + kStatusItemLength,
|
||||||
|
[[statusItem_ statusBar] thickness]);
|
||||||
|
[title_ drawInRect:titleDrawRect
|
||||||
|
withAttributes:[self titleAttributes]];
|
||||||
|
}
|
||||||
|
|
||||||
|
NSRect iconRect = NSMakeRect(0,
|
||||||
|
0,
|
||||||
|
kStatusItemLength,
|
||||||
|
[[statusItem_ statusBar] thickness]);
|
||||||
|
if (highlight && alternateImage_) {
|
||||||
|
[alternateImage_ drawInRect:NSInsetRect(iconRect, kMargin, kMargin)
|
||||||
|
fromRect:NSZeroRect
|
||||||
|
operation:NSCompositeSourceOver
|
||||||
|
fraction:1];
|
||||||
|
} else {
|
||||||
|
[image_ drawInRect:NSInsetRect(iconRect, kMargin, kMargin)
|
||||||
|
fromRect:NSZeroRect
|
||||||
|
operation:NSCompositeSourceOver
|
||||||
|
fraction:1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (CGFloat)titleWidth {
|
||||||
|
if (!title_) return 0;
|
||||||
|
NSAttributedString* attributes =
|
||||||
|
[[NSAttributedString alloc] initWithString:title_
|
||||||
|
attributes:[self titleAttributes]];
|
||||||
|
return [attributes size].width;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSDictionary*)titleAttributes {
|
||||||
|
NSFont* font = [NSFont menuBarFontOfSize:0];
|
||||||
|
NSColor* foregroundColor = [NSColor blackColor];
|
||||||
|
|
||||||
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
||||||
|
font, NSFontAttributeName,
|
||||||
|
foregroundColor, NSForegroundColorAttributeName,
|
||||||
|
nil];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setImage:(NSImage*)image {
|
||||||
|
image_.reset([image copy]);
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setAlternateImage:(NSImage*)image {
|
||||||
|
alternateImage_.reset([image copy]);
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setHighlight:(BOOL)highlight {
|
||||||
|
isHighlightEnable_ = highlight;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setTitle:(NSString*)title {
|
||||||
|
title_.reset([title copy]);
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setMenuController:(AtomMenuController*)menu {
|
||||||
|
menuController_ = menu;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)mouseDown:(NSEvent*)event {
|
||||||
|
inMouseEventSequence_ = YES;
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)mouseUp:(NSEvent*)event {
|
||||||
|
if (!inMouseEventSequence_) {
|
||||||
|
// If the menu is showing, when user clicked the tray icon, the `mouseDown`
|
||||||
|
// event will be dissmissed, we need to close the menu at this time.
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
inMouseEventSequence_ = NO;
|
||||||
|
if (event.clickCount == 1) {
|
||||||
|
if (menuController_) {
|
||||||
|
[statusItem_ popUpStatusItemMenu:[menuController_ menu]];
|
||||||
|
}
|
||||||
|
|
||||||
|
trayIcon_->NotifyClicked([self getBoundsFromEvent:event]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.clickCount == 2 && !menuController_) {
|
||||||
|
trayIcon_->NotifyDoubleClicked();
|
||||||
|
}
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)popContextMenu {
|
||||||
|
if (menuController_ && ![menuController_ isMenuOpen]) {
|
||||||
|
// redraw the dray icon to show highlight if it is enabled.
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
[statusItem_ popUpStatusItemMenu:[menuController_ menu]];
|
||||||
|
// The popUpStatusItemMenu returns only after the showing menu is closed.
|
||||||
|
// When it returns, we need to redraw the tray icon to not show highlight.
|
||||||
|
[self setNeedsDisplay:YES];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)rightMouseUp:(NSEvent*)event {
|
||||||
|
trayIcon_->NotifyRightClicked([self getBoundsFromEvent:event]);
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender {
|
||||||
|
return NSDragOperationCopy;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender {
|
||||||
|
NSPasteboard* pboard = [sender draggingPasteboard];
|
||||||
|
|
||||||
|
if ([[pboard types] containsObject:NSFilenamesPboardType]) {
|
||||||
|
std::vector<std::string> dropFiles;
|
||||||
|
NSArray* files = [pboard propertyListForType:NSFilenamesPboardType];
|
||||||
|
for (NSString* file in files)
|
||||||
|
dropFiles.push_back(base::SysNSStringToUTF8(file));
|
||||||
|
trayIcon_->NotfiyDropFiles(dropFiles);
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL)shouldHighlight {
|
||||||
|
BOOL is_menu_open = [menuController_ isMenuOpen];
|
||||||
|
return isHighlightEnable_ && (inMouseEventSequence_ || is_menu_open);
|
||||||
|
}
|
||||||
|
|
||||||
|
- (gfx::Rect)getBoundsFromEvent:(NSEvent*)event {
|
||||||
|
NSRect frame = event.window.frame;
|
||||||
gfx::Rect bounds(frame.origin.x, 0, NSWidth(frame), NSHeight(frame));
|
gfx::Rect bounds(frame.origin.x, 0, NSWidth(frame), NSHeight(frame));
|
||||||
// Flip coordinates to gfx (0,0 in top-left corner) using current screen.
|
|
||||||
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
|
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
|
||||||
bounds.set_y(NSHeight([screen frame]) - NSMaxY(frame));
|
bounds.set_y(NSHeight([screen frame]) - NSMaxY(frame));
|
||||||
|
return bounds;
|
||||||
trayIcon_->NotifyClicked(bounds);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)handleDoubleClick:(id)sender {
|
|
||||||
trayIcon_->NotifyDoubleClicked();
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
TrayIconCocoa::TrayIconCocoa() {
|
TrayIconCocoa::TrayIconCocoa() {
|
||||||
controller_.reset([[StatusItemController alloc] initWithIcon:this]);
|
status_item_view_.reset([[StatusItemView alloc] initWithIcon:this]);
|
||||||
|
|
||||||
item_.reset([[[NSStatusBar systemStatusBar]
|
|
||||||
statusItemWithLength:NSVariableStatusItemLength] retain]);
|
|
||||||
[item_ setEnabled:YES];
|
|
||||||
[item_ setTarget:controller_];
|
|
||||||
[item_ setAction:@selector(handleClick:)];
|
|
||||||
[item_ setDoubleAction:@selector(handleDoubleClick:)];
|
|
||||||
[item_ setHighlightMode:YES];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TrayIconCocoa::~TrayIconCocoa() {
|
TrayIconCocoa::~TrayIconCocoa() {
|
||||||
// Remove the status item from the status bar.
|
[status_item_view_ removeItem];
|
||||||
[[NSStatusBar systemStatusBar] removeStatusItem:item_];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrayIconCocoa::SetImage(const gfx::Image& image) {
|
void TrayIconCocoa::SetImage(const gfx::Image& image) {
|
||||||
[item_ setImage:image.AsNSImage()];
|
[status_item_view_ setImage:image.AsNSImage()];
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrayIconCocoa::SetPressedImage(const gfx::Image& image) {
|
void TrayIconCocoa::SetPressedImage(const gfx::Image& image) {
|
||||||
[item_ setAlternateImage:image.AsNSImage()];
|
[status_item_view_ setAlternateImage:image.AsNSImage()];
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrayIconCocoa::SetToolTip(const std::string& tool_tip) {
|
void TrayIconCocoa::SetToolTip(const std::string& tool_tip) {
|
||||||
[item_ setToolTip:base::SysUTF8ToNSString(tool_tip)];
|
[status_item_view_ setToolTip:base::SysUTF8ToNSString(tool_tip)];
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrayIconCocoa::SetTitle(const std::string& title) {
|
void TrayIconCocoa::SetTitle(const std::string& title) {
|
||||||
[item_ setTitle:base::SysUTF8ToNSString(title)];
|
[status_item_view_ setTitle:base::SysUTF8ToNSString(title)];
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrayIconCocoa::SetHighlightMode(bool highlight) {
|
void TrayIconCocoa::SetHighlightMode(bool highlight) {
|
||||||
[item_ setHighlightMode:highlight];
|
[status_item_view_ setHighlight:highlight];
|
||||||
|
}
|
||||||
|
|
||||||
|
void TrayIconCocoa::PopContextMenu(const gfx::Point& pos) {
|
||||||
|
[status_item_view_ popContextMenu];
|
||||||
}
|
}
|
||||||
|
|
||||||
void TrayIconCocoa::SetContextMenu(ui::SimpleMenuModel* menu_model) {
|
void TrayIconCocoa::SetContextMenu(ui::SimpleMenuModel* menu_model) {
|
||||||
menu_.reset([[AtomMenuController alloc] initWithModel:menu_model]);
|
menu_.reset([[AtomMenuController alloc] initWithModel:menu_model]);
|
||||||
[item_ setMenu:[menu_ menu]];
|
[status_item_view_ setMenuController:menu_.get()];
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
#ifndef ATOM_BROWSER_UI_TRAY_ICON_OBSERVER_H_
|
#ifndef ATOM_BROWSER_UI_TRAY_ICON_OBSERVER_H_
|
||||||
#define ATOM_BROWSER_UI_TRAY_ICON_OBSERVER_H_
|
#define ATOM_BROWSER_UI_TRAY_ICON_OBSERVER_H_
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace gfx {
|
namespace gfx {
|
||||||
class Rect;
|
class Rect;
|
||||||
}
|
}
|
||||||
|
@ -13,11 +16,13 @@ namespace atom {
|
||||||
|
|
||||||
class TrayIconObserver {
|
class TrayIconObserver {
|
||||||
public:
|
public:
|
||||||
virtual void OnClicked(const gfx::Rect&) {}
|
virtual void OnClicked(const gfx::Rect& bounds) {}
|
||||||
virtual void OnDoubleClicked() {}
|
virtual void OnDoubleClicked() {}
|
||||||
virtual void OnBalloonShow() {}
|
virtual void OnBalloonShow() {}
|
||||||
virtual void OnBalloonClicked() {}
|
virtual void OnBalloonClicked() {}
|
||||||
virtual void OnBalloonClosed() {}
|
virtual void OnBalloonClosed() {}
|
||||||
|
virtual void OnRightClicked(const gfx::Rect& bounds) {}
|
||||||
|
virtual void OnDropFiles(const std::vector<std::string>& files) {}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~TrayIconObserver() {}
|
virtual ~TrayIconObserver() {}
|
||||||
|
|
|
@ -47,38 +47,22 @@ NotifyIcon::~NotifyIcon() {
|
||||||
|
|
||||||
void NotifyIcon::HandleClickEvent(const gfx::Point& cursor_pos,
|
void NotifyIcon::HandleClickEvent(const gfx::Point& cursor_pos,
|
||||||
bool left_mouse_click) {
|
bool left_mouse_click) {
|
||||||
|
NOTIFYICONIDENTIFIER icon_id;
|
||||||
|
memset(&icon_id, 0, sizeof(NOTIFYICONIDENTIFIER));
|
||||||
|
icon_id.uID = icon_id_;
|
||||||
|
icon_id.hWnd = window_;
|
||||||
|
icon_id.cbSize = sizeof(NOTIFYICONIDENTIFIER);
|
||||||
|
RECT rect = { 0 };
|
||||||
|
Shell_NotifyIconGetRect(&icon_id, &rect);
|
||||||
|
|
||||||
// Pass to the observer if appropriate.
|
// Pass to the observer if appropriate.
|
||||||
if (left_mouse_click) {
|
if (left_mouse_click) {
|
||||||
NOTIFYICONIDENTIFIER icon_id;
|
|
||||||
memset(&icon_id, 0, sizeof(NOTIFYICONIDENTIFIER));
|
|
||||||
icon_id.uID = icon_id_;
|
|
||||||
icon_id.hWnd = window_;
|
|
||||||
icon_id.cbSize = sizeof(NOTIFYICONIDENTIFIER);
|
|
||||||
|
|
||||||
RECT rect = { 0 };
|
|
||||||
Shell_NotifyIconGetRect(&icon_id, &rect);
|
|
||||||
|
|
||||||
NotifyClicked(gfx::Rect(rect));
|
NotifyClicked(gfx::Rect(rect));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!menu_model_)
|
NotifyRightClicked(gfx::Rect(rect));
|
||||||
return;
|
PopContextMenu(cursor_pos);
|
||||||
|
|
||||||
// Set our window as the foreground window, so the context menu closes when
|
|
||||||
// we click away from it.
|
|
||||||
if (!SetForegroundWindow(window_))
|
|
||||||
return;
|
|
||||||
|
|
||||||
views::MenuRunner menu_runner(
|
|
||||||
menu_model_,
|
|
||||||
views::MenuRunner::CONTEXT_MENU | views::MenuRunner::HAS_MNEMONICS);
|
|
||||||
ignore_result(menu_runner.RunMenuAt(
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
gfx::Rect(cursor_pos, gfx::Size()),
|
|
||||||
views::MENU_ANCHOR_TOPLEFT,
|
|
||||||
ui::MENU_SOURCE_MOUSE));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void NotifyIcon::ResetIcon() {
|
void NotifyIcon::ResetIcon() {
|
||||||
|
@ -151,6 +135,23 @@ void NotifyIcon::DisplayBalloon(const gfx::Image& icon,
|
||||||
LOG(WARNING) << "Unable to create status tray balloon.";
|
LOG(WARNING) << "Unable to create status tray balloon.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NotifyIcon::PopContextMenu(const gfx::Point& pos) {
|
||||||
|
// Set our window as the foreground window, so the context menu closes when
|
||||||
|
// we click away from it.
|
||||||
|
if (!SetForegroundWindow(window_))
|
||||||
|
return;
|
||||||
|
|
||||||
|
views::MenuRunner menu_runner(
|
||||||
|
menu_model_,
|
||||||
|
views::MenuRunner::CONTEXT_MENU | views::MenuRunner::HAS_MNEMONICS);
|
||||||
|
ignore_result(menu_runner.RunMenuAt(
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
gfx::Rect(pos, gfx::Size()),
|
||||||
|
views::MENU_ANCHOR_TOPLEFT,
|
||||||
|
ui::MENU_SOURCE_MOUSE));
|
||||||
|
}
|
||||||
|
|
||||||
void NotifyIcon::SetContextMenu(ui::SimpleMenuModel* menu_model) {
|
void NotifyIcon::SetContextMenu(ui::SimpleMenuModel* menu_model) {
|
||||||
menu_model_ = menu_model;
|
menu_model_ = menu_model;
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,6 +49,7 @@ class NotifyIcon : public TrayIcon {
|
||||||
void DisplayBalloon(const gfx::Image& icon,
|
void DisplayBalloon(const gfx::Image& icon,
|
||||||
const base::string16& title,
|
const base::string16& title,
|
||||||
const base::string16& contents) override;
|
const base::string16& contents) override;
|
||||||
|
void PopContextMenu(const gfx::Point& pos) override;
|
||||||
void SetContextMenu(ui::SimpleMenuModel* menu_model) override;
|
void SetContextMenu(ui::SimpleMenuModel* menu_model) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -25,7 +25,6 @@ app.on('ready', function(){
|
||||||
|
|
||||||
__Platform limitations:__
|
__Platform limitations:__
|
||||||
|
|
||||||
* On OS X `clicked` event will be ignored if the tray icon has context menu.
|
|
||||||
* On Linux app indicator will be used if it is supported, otherwise
|
* On Linux app indicator will be used if it is supported, otherwise
|
||||||
`GtkStatusIcon` will be used instead.
|
`GtkStatusIcon` will be used instead.
|
||||||
* App indicator will only be showed when it has context menu.
|
* App indicator will only be showed when it has context menu.
|
||||||
|
@ -57,6 +56,20 @@ Emitted when the tray icon is clicked.
|
||||||
|
|
||||||
__Note:__ The `bounds` payload is only implemented on OS X and Windows 7 or newer.
|
__Note:__ The `bounds` payload is only implemented on OS X and Windows 7 or newer.
|
||||||
|
|
||||||
|
### Event: 'right-clicked'
|
||||||
|
|
||||||
|
* `event`
|
||||||
|
* `bounds` Object - the bounds of tray icon
|
||||||
|
* `x` Integer
|
||||||
|
* `y` Integer
|
||||||
|
* `width` Integer
|
||||||
|
* `height` Integer
|
||||||
|
|
||||||
|
Emitted when the tray icon is right clicked.
|
||||||
|
|
||||||
|
__Note:__ This is only implemented on OS X and Windows. On Windows, this event
|
||||||
|
will be emitted if the tray icon has context menu.
|
||||||
|
|
||||||
### Event: 'double-clicked'
|
### Event: 'double-clicked'
|
||||||
|
|
||||||
Emitted when the tray icon is double clicked.
|
Emitted when the tray icon is double clicked.
|
||||||
|
@ -82,6 +95,15 @@ closes it.
|
||||||
|
|
||||||
__Note:__ This is only implemented on Windows.
|
__Note:__ This is only implemented on Windows.
|
||||||
|
|
||||||
|
### Event: 'drop-files'
|
||||||
|
|
||||||
|
* `event`
|
||||||
|
* `files` Array - the file path of dropped files.
|
||||||
|
|
||||||
|
Emitted when dragged files are dropped in the tray icon.
|
||||||
|
|
||||||
|
__Note:__ This is only implemented on OS X.
|
||||||
|
|
||||||
### Tray.destroy()
|
### Tray.destroy()
|
||||||
|
|
||||||
Destroys the tray icon immediately.
|
Destroys the tray icon immediately.
|
||||||
|
@ -131,6 +153,15 @@ Displays a tray balloon.
|
||||||
|
|
||||||
__Note:__ This is only implemented on Windows.
|
__Note:__ This is only implemented on Windows.
|
||||||
|
|
||||||
|
### Tray.popContextMenu([position])
|
||||||
|
|
||||||
|
* `position` Object - The pop position
|
||||||
|
* `x` Integer
|
||||||
|
* `y` Integer
|
||||||
|
|
||||||
|
__Note:__ This is only implemented on OS X and Windows.
|
||||||
|
The `position` is only available on Windows, and it is (0, 0) by default.
|
||||||
|
|
||||||
### Tray.setContextMenu(menu)
|
### Tray.setContextMenu(menu)
|
||||||
|
|
||||||
* `menu` Menu
|
* `menu` Menu
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue