From 8e2263303c6c3b896131bbd95dca2ffeaf8b1f09 Mon Sep 17 00:00:00 2001 From: "hyatt%netscape.com" Date: Sun, 18 Jul 1999 06:35:03 +0000 Subject: [PATCH] Committing the popup .h file. --- layout/xul/base/src/nsMenuPopupFrame.h | 46 ++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 layout/xul/base/src/nsMenuPopupFrame.h diff --git a/layout/xul/base/src/nsMenuPopupFrame.h b/layout/xul/base/src/nsMenuPopupFrame.h new file mode 100644 index 000000000000..e6ed0d8ce31c --- /dev/null +++ b/layout/xul/base/src/nsMenuPopupFrame.h @@ -0,0 +1,46 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * The contents of this file are subject to the Netscape Public License + * Version 1.0 (the "NPL"); you may not use this file except in + * compliance with the NPL. You may obtain a copy of the NPL at + * http://www.mozilla.org/NPL/ + * + * Software distributed under the NPL is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL + * for the specific language governing rights and limitations under the + * NPL. + * + * The Initial Developer of this code under the NPL is Netscape + * Communications Corporation. Portions created by Netscape are + * Copyright (C) 1998 Netscape Communications Corporation. All Rights + * Reserved. + */ + +// +// nsMenuPopupFrame +// + +#ifndef nsMenuPopupFrame_h__ +#define nsMenuPopupFrame_h__ + + +#include "nsLeafFrame.h" +#include "prtypes.h" +#include "nsIAtom.h" +#include "nsCOMPtr.h" + +#include "nsBoxFrame.h" + +nsresult NS_NewMenuPopupFrame(nsIFrame** aResult) ; + + +class nsMenuPopupFrame : public nsBoxFrame +{ +public: + nsMenuPopupFrame(); + +protected: + +}; // class nsMenuPopupFrame + +#endif