зеркало из https://github.com/mozilla/gecko-dev.git
Add toolbar window list item.
This commit is contained in:
Родитель
a95b01b9b7
Коммит
f95b6f8ae9
|
@ -0,0 +1,109 @@
|
|||
/* -*- Mode: C++; tab-width: 4; 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.
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// //
|
||||
// Name: ToolbarWindowList.cpp //
|
||||
// //
|
||||
// Description: XFE_ToolbarWindowList class implementation. //
|
||||
// The Back/Forward toolbar buttons. //
|
||||
// //
|
||||
// Author: Ramiro Estrugo <ramiro@netscape.com> //
|
||||
// //
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "ToolbarWindowList.h"
|
||||
#include "RDFUtils.h"
|
||||
|
||||
#include "WindowListMenu.h"
|
||||
|
||||
#include <Xfe/Cascade.h>
|
||||
|
||||
#include "prefapi.h"
|
||||
#include "xpgetstr.h" // for XP_GetString()
|
||||
|
||||
extern int XFE_UNTITLED;
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
XFE_ToolbarWindowList::XFE_ToolbarWindowList(XFE_Frame * frame,
|
||||
Widget parent,
|
||||
HT_Resource htResource,
|
||||
const String name) :
|
||||
XFE_ToolbarButton(frame,parent,htResource,name),
|
||||
m_submenu(NULL)
|
||||
{
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
XFE_ToolbarWindowList::~XFE_ToolbarWindowList()
|
||||
{
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Initialize
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
/* virtual */ void
|
||||
XFE_ToolbarWindowList::initialize()
|
||||
{
|
||||
Widget navigation = createBaseWidget(getParent(),getName());
|
||||
|
||||
setBaseWidget(navigation);
|
||||
|
||||
XtVaGetValues(navigation,XmNsubMenuId,&m_submenu,NULL);
|
||||
|
||||
XP_ASSERT( XfeIsAlive(m_submenu) );
|
||||
|
||||
XFE_WindowListMenu::generate(m_widget,NULL,getAncestorFrame());
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Accessors
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
Widget
|
||||
XFE_ToolbarWindowList::getSubmenu()
|
||||
{
|
||||
return m_submenu;
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Widget creation interface
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
/* virtual */ Widget
|
||||
XFE_ToolbarWindowList::createBaseWidget(Widget parent,
|
||||
const String name)
|
||||
{
|
||||
XP_ASSERT( XfeIsAlive(parent) );
|
||||
XP_ASSERT( name != NULL );
|
||||
|
||||
Widget navigation;
|
||||
|
||||
navigation = XtVaCreateWidget(name,
|
||||
xfeCascadeWidgetClass,
|
||||
parent,
|
||||
NULL);
|
||||
return navigation;
|
||||
}
|
||||
//////////////////////////////////////////////////////////////////////////
|
|
@ -0,0 +1,80 @@
|
|||
/* -*- Mode: C++; tab-width: 4; 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.
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// //
|
||||
// Name: ToolbarWindowList.h //
|
||||
// //
|
||||
// Description: XFE_ToolbarWindowList class header. //
|
||||
// The Back/Forward toolbar buttons. //
|
||||
// //
|
||||
// Author: Ramiro Estrugo <ramiro@netscape.com> //
|
||||
// //
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _xfe_toolbar_window_list_h_
|
||||
#define _xfe_toolbar_window_list_h_
|
||||
|
||||
#include "ToolbarButton.h"
|
||||
|
||||
class XFE_ToolbarWindowList : public XFE_ToolbarButton
|
||||
{
|
||||
public:
|
||||
|
||||
XFE_ToolbarWindowList(XFE_Frame * frame,
|
||||
Widget parent,
|
||||
HT_Resource htResource,
|
||||
const String name);
|
||||
|
||||
virtual ~XFE_ToolbarWindowList();
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// //
|
||||
// Accessors //
|
||||
// //
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
Widget getSubmenu();
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// //
|
||||
// Initialize //
|
||||
// //
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
virtual void initialize ();
|
||||
|
||||
protected:
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// //
|
||||
// Widget creation interface //
|
||||
// //
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
virtual Widget createBaseWidget (Widget parent,
|
||||
const String name);
|
||||
|
||||
private:
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// //
|
||||
// Private data //
|
||||
// //
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
Widget m_submenu;
|
||||
};
|
||||
|
||||
#endif // _xfe_toolbar_window_list_h_
|
Загрузка…
Ссылка в новой задаче