blob: 136b254206239d5d07a586d452ede6d997d44df7 (
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
|
// Copyright (c) 2011 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 VIEWS_FOCUS_FOCUS_MANAGER_FACTORY_H_
#define VIEWS_FOCUS_FOCUS_MANAGER_FACTORY_H_
#pragma once
#include "base/basictypes.h"
#include "views/views_export.h"
namespace views {
class FocusManager;
class Widget;
// A factory to create FocusManager. This is used in unit tests
// to inject a custom factory.
class VIEWS_EXPORT FocusManagerFactory {
public:
// Create a FocusManager for the given |widget| using installe Factory.
static FocusManager* Create(Widget* widget);
// Installs FocusManagerFactory. If |factory| is NULL, it resets
// to the default factory which creates plain FocusManager.
static void Install(FocusManagerFactory* factory);
protected:
FocusManagerFactory();
virtual ~FocusManagerFactory();
// Create a FocusManager for the given |widget|.
virtual FocusManager* CreateFocusManager(Widget* widget) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(FocusManagerFactory);
};
} // namespace views
#endif // VIEWS_FOCUS_FOCUS_MANAGER_FACTORY_H_
|