forked from mirrors/gecko-dev
26 lines
935 B
C++
26 lines
935 B
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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 nsMenuParentX_h_
|
|
#define nsMenuParentX_h_
|
|
|
|
class nsMenuX;
|
|
class nsMenuBarX;
|
|
|
|
// A base class for objects that can be the parent of an nsMenuX or nsMenuItemX.
|
|
class nsMenuParentX {
|
|
public:
|
|
// XXXmstange double-check that this is still needed
|
|
virtual nsMenuBarX* AsMenuBar() { return nullptr; }
|
|
|
|
// If aChild is one of our child menus, insert aChild's native menu item in
|
|
// our native menu at the right location.
|
|
virtual void InsertChildNativeMenuItem(nsMenuX* aChild) = 0;
|
|
|
|
// Remove aChild's native menu item froum our native menu.
|
|
virtual void RemoveChildNativeMenuItem(nsMenuX* aChild) = 0;
|
|
};
|
|
|
|
#endif // nsMenuParentX_h_
|