summaryrefslogtreecommitdiffstats
path: root/widget/cocoa/nsSystemStatusBarCocoa.h
blob: 2af13e28059b6b8f970971da40f541139a5a7f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef nsSystemStatusBarCocoa_h_
#define nsSystemStatusBarCocoa_h_

#include "mozilla/RefPtr.h"
#include "nsISystemStatusBar.h"
#include "nsClassHashtable.h"

namespace mozilla::widget {
class NativeMenuMac;
}
@class NSStatusItem;

class nsSystemStatusBarCocoa : public nsISystemStatusBar {
 public:
  nsSystemStatusBarCocoa() {}

  NS_DECL_ISUPPORTS
  NS_DECL_NSISYSTEMSTATUSBAR

 protected:
  virtual ~nsSystemStatusBarCocoa() {}

  struct StatusItem {
    explicit StatusItem(mozilla::widget::NativeMenuMac* aMenu);
    ~StatusItem();

   private:
    RefPtr<mozilla::widget::NativeMenuMac> mMenu;
    NSStatusItem* mStatusItem;
  };

  nsClassHashtable<nsISupportsHashKey, StatusItem> mItems;
};

#endif  // nsSystemStatusBarCocoa_h_