blob: 5cea1a41421695c9e3f0a32411dafe0a774b4acb [file] [log] [blame]
// Copyright (c) 2014 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.
#include "ui/base/x/x11_menu_list.h"
#include <algorithm>
#include "base/memory/singleton.h"
#include "ui/base/x/x11_util.h"
#include "ui/gfx/x/x11_atom_cache.h"
namespace ui {
// static
XMenuList* XMenuList::GetInstance() {
return base::Singleton<XMenuList>::get();
}
XMenuList::XMenuList()
: menu_type_atom_(gfx::GetAtom("_NET_WM_WINDOW_TYPE_MENU")) {}
XMenuList::~XMenuList() {
menus_.clear();
}
void XMenuList::MaybeRegisterMenu(x11::Window menu) {
int value = 0;
if (!GetIntProperty(menu, "_NET_WM_WINDOW_TYPE", &value) ||
static_cast<x11::Atom>(value) != menu_type_atom_) {
return;
}
menus_.push_back(menu);
}
void XMenuList::MaybeUnregisterMenu(x11::Window menu) {
auto iter = std::find(menus_.begin(), menus_.end(), menu);
if (iter == menus_.end())
return;
menus_.erase(iter);
}
void XMenuList::InsertMenuWindows(std::vector<x11::Window>* stack) {
stack->insert(stack->begin(), menus_.begin(), menus_.end());
}
} // namespace ui