summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/command_observer_bridge.h
blob: e4487c8a90d0d8a03d542ded3b066dc87ec726c5 (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
41
42
43
44
45
46
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_COCOA_COMMAND_OBSERVER_BRIDGE
#define CHROME_BROWSER_COCOA_COMMAND_OBSERVER_BRIDGE

#import <Cocoa/Cocoa.h>

#include "chrome/browser/command_updater.h"

@protocol CommandObserverProtocol;

// A C++ bridge class that handles listening for updates to commands and
// passing them back to an object that supports the protocol delcared below.
// The observer will create one of these bridges, call ObserveCommand() on the
// command ids it cares about, and then wait for update notifications,
// delivered via -enabledStateChangedForCommand:enabled:. Destroying this
// bridge will handle automatically unregistering for updates, so there's no
// need to do that manually.

class CommandObserverBridge : public CommandUpdater::CommandObserver {
 public:
  CommandObserverBridge(id<CommandObserverProtocol> observer,
                        CommandUpdater* commands);
  virtual ~CommandObserverBridge();

  // Register for updates about |command|.
  void ObserveCommand(int command);

 protected:
  // Overridden from CommandUpdater::CommandObserver
  virtual void EnabledStateChangedForCommand(int command, bool enabled);

 private:
  id<CommandObserverProtocol> observer_;  // weak, owns me
  CommandUpdater* commands_;  // weak
};

// Implemented by the observing Objective-C object, called when there is a
// state change for the given command.
@protocol CommandObserverProtocol
- (void)enabledStateChangedForCommand:(NSInteger)command enabled:(BOOL)enabled;
@end

#endif  // CHROME_BROWSER_COCOA_COMMAND_OBSERVER_BRIDGE