electron/shell/browser/window_list.h

65 строки
1.6 KiB
C
Исходник Обычный вид История

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 13:49:37 +04:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2019-06-19 23:56:58 +03:00
#ifndef SHELL_BROWSER_WINDOW_LIST_H_
#define SHELL_BROWSER_WINDOW_LIST_H_
#include <vector>
#include "base/lazy_instance.h"
2016-08-27 01:30:02 +03:00
#include "base/macros.h"
#include "base/observer_list.h"
namespace electron {
class NativeWindow;
class WindowListObserver;
class WindowList {
public:
typedef std::vector<NativeWindow*> WindowVector;
2014-01-02 18:47:54 +04:00
static WindowVector GetWindows();
static bool IsEmpty();
// Adds or removes |window| from the list it is associated with.
static void AddWindow(NativeWindow* window);
static void RemoveWindow(NativeWindow* window);
// Called by window when a close is cancelled by beforeunload handler.
static void WindowCloseCancelled(NativeWindow* window);
// Adds and removes |observer| from the observer list.
static void AddObserver(WindowListObserver* observer);
static void RemoveObserver(WindowListObserver* observer);
// Closes all windows.
static void CloseAllWindows();
// Destroy all windows.
static void DestroyAllWindows();
private:
static WindowList* GetInstance();
WindowList();
~WindowList();
// A vector of the windows in this list, in the order they were added.
WindowVector windows_;
// A list of observers which will be notified of every window addition and
// removal across all WindowLists.
2015-09-02 10:16:49 +03:00
static base::LazyInstance<base::ObserverList<WindowListObserver>>::Leaky
observers_;
static WindowList* instance_;
DISALLOW_COPY_AND_ASSIGN(WindowList);
};
} // namespace electron
2019-06-19 23:56:58 +03:00
#endif // SHELL_BROWSER_WINDOW_LIST_H_