зеркало из https://github.com/mozilla/pjs.git
Changed VoidArray to nsISupportsArray
This commit is contained in:
Родитель
32c2bb6ce2
Коммит
e2ca4ba297
|
@ -53,16 +53,16 @@ nsresult nsMenu::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
||||||
NS_ADDREF_THIS();
|
NS_ADDREF_THIS();
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
if (aIID.Equals(kISupportsIID)) {
|
|
||||||
*aInstancePtr = (void*)(nsISupports*)(nsIMenu*)this;
|
|
||||||
NS_ADDREF_THIS();
|
|
||||||
return NS_OK;
|
|
||||||
}
|
|
||||||
if (aIID.Equals(kIMenuListenerIID)) {
|
if (aIID.Equals(kIMenuListenerIID)) {
|
||||||
*aInstancePtr = (void*)(nsIMenuListener*)this;
|
*aInstancePtr = (void*)(nsIMenuListener*)this;
|
||||||
NS_ADDREF_THIS();
|
NS_ADDREF_THIS();
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
if (aIID.Equals(kISupportsIID)) {
|
||||||
|
*aInstancePtr = (void*)(nsISupports*)(nsIMenu*)this;
|
||||||
|
NS_ADDREF_THIS();
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
return NS_NOINTERFACE;
|
return NS_NOINTERFACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,7 +81,8 @@ nsMenu::nsMenu() : nsIMenu()
|
||||||
mMenuBarParent = nsnull;
|
mMenuBarParent = nsnull;
|
||||||
mMenuParent = nsnull;
|
mMenuParent = nsnull;
|
||||||
mListener = nsnull;
|
mListener = nsnull;
|
||||||
mItems = new nsVoidArray;
|
nsresult result = NS_NewISupportsArray(&mItems);
|
||||||
|
//NS_ASSERT(result == NS_OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
|
@ -94,6 +95,9 @@ nsMenu::~nsMenu()
|
||||||
NS_IF_RELEASE(mMenuBarParent);
|
NS_IF_RELEASE(mMenuBarParent);
|
||||||
NS_IF_RELEASE(mMenuParent);
|
NS_IF_RELEASE(mMenuParent);
|
||||||
NS_IF_RELEASE(mListener);
|
NS_IF_RELEASE(mListener);
|
||||||
|
|
||||||
|
// Remove all references to the items
|
||||||
|
mItems->Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -161,6 +165,8 @@ NS_METHOD nsMenu::AddItem(const nsString &aText)
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
|
// This does not return a ref counted object
|
||||||
|
// This is NOT an nsIMenu method
|
||||||
nsIMenuBar * nsMenu::GetMenuBar(nsIMenu * aMenu)
|
nsIMenuBar * nsMenu::GetMenuBar(nsIMenu * aMenu)
|
||||||
{
|
{
|
||||||
if (!aMenu) {
|
if (!aMenu) {
|
||||||
|
@ -181,6 +187,8 @@ nsIMenuBar * nsMenu::GetMenuBar(nsIMenu * aMenu)
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
|
// This does not return a ref counted object
|
||||||
|
// This is NOT an nsIMenu method
|
||||||
nsIWidget * nsMenu::GetParentWidget()
|
nsIWidget * nsMenu::GetParentWidget()
|
||||||
{
|
{
|
||||||
nsIWidget * parent = nsnull;
|
nsIWidget * parent = nsnull;
|
||||||
|
@ -196,41 +204,13 @@ nsIWidget * nsMenu::GetParentWidget()
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
NS_METHOD nsMenu::AddMenuItem(nsIMenuItem * aMenuItem)
|
NS_METHOD nsMenu::AddMenuItem(nsIMenuItem * aMenuItem)
|
||||||
{
|
{
|
||||||
/*PRUint32 command;
|
return InsertItemAt(mItems->Count(), (nsISupports *)aMenuItem);
|
||||||
nsString name;
|
|
||||||
|
|
||||||
aMenuItem->GetCommand(command);
|
|
||||||
aMenuItem->GetLabel(name);
|
|
||||||
mItems->AppendElement((nsISupports *)aMenuItem);
|
|
||||||
nsIWidget * win = GetParentWidget();
|
|
||||||
PRInt32 id = ((nsWindow *)win)->GetNewCmdMenuId();
|
|
||||||
((nsMenuItem *)aMenuItem)->SetCmdId(id);
|
|
||||||
|
|
||||||
char * nameStr = name.ToNewCString();
|
|
||||||
|
|
||||||
MENUITEMINFO menuInfo;
|
|
||||||
menuInfo.cbSize = sizeof(menuInfo);
|
|
||||||
menuInfo.fMask = MIIM_TYPE | MIIM_ID;
|
|
||||||
menuInfo.fType = MFT_STRING;
|
|
||||||
menuInfo.dwTypeData = nameStr;
|
|
||||||
menuInfo.wID = (DWORD)id;
|
|
||||||
menuInfo.cch = strlen(nameStr);
|
|
||||||
|
|
||||||
BOOL status = ::InsertMenuItem(mMenu, mItems->Count(), TRUE, &menuInfo);
|
|
||||||
|
|
||||||
delete[] nameStr;
|
|
||||||
*/
|
|
||||||
InsertItemAt(mItems->Count(), (nsISupports *)aMenuItem);
|
|
||||||
return NS_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
NS_METHOD nsMenu::AddMenu(nsIMenu * aMenu)
|
NS_METHOD nsMenu::AddMenu(nsIMenu * aMenu)
|
||||||
{
|
{
|
||||||
|
return InsertItemAt(mItems->Count(), (nsISupports *)aMenu);
|
||||||
InsertItemAt(mItems->Count(), (nsISupports *)aMenu);
|
|
||||||
return NS_OK;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
|
@ -252,7 +232,6 @@ NS_METHOD nsMenu::GetItemCount(PRUint32 &aCount)
|
||||||
NS_METHOD nsMenu::GetItemAt(const PRUint32 aCount, nsISupports *& aMenuItem)
|
NS_METHOD nsMenu::GetItemAt(const PRUint32 aCount, nsISupports *& aMenuItem)
|
||||||
{
|
{
|
||||||
aMenuItem = (nsISupports *)mItems->ElementAt(aCount);
|
aMenuItem = (nsISupports *)mItems->ElementAt(aCount);
|
||||||
|
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,8 +241,6 @@ NS_METHOD nsMenu::InsertItemAt(const PRUint32 aCount, nsISupports * aMenuItem)
|
||||||
nsString name;
|
nsString name;
|
||||||
BOOL status = FALSE;
|
BOOL status = FALSE;
|
||||||
|
|
||||||
NS_ADDREF(aMenuItem);
|
|
||||||
|
|
||||||
mItems->InsertElementAt(aMenuItem, (PRInt32)aCount);
|
mItems->InsertElementAt(aMenuItem, (PRInt32)aCount);
|
||||||
|
|
||||||
nsCOMPtr<nsIMenuItem> menuItem(do_QueryInterface(aMenuItem));
|
nsCOMPtr<nsIMenuItem> menuItem(do_QueryInterface(aMenuItem));
|
||||||
|
@ -291,7 +268,7 @@ NS_METHOD nsMenu::InsertItemAt(const PRUint32 aCount, nsISupports * aMenuItem)
|
||||||
if (menu) {
|
if (menu) {
|
||||||
nsString name;
|
nsString name;
|
||||||
menu->GetLabel(name);
|
menu->GetLabel(name);
|
||||||
mItems->AppendElement((nsISupports *)(nsIMenu *)menu);
|
//mItems->AppendElement((nsISupports *)(nsIMenu *)menu);
|
||||||
|
|
||||||
char * nameStr = name.ToNewCString();
|
char * nameStr = name.ToNewCString();
|
||||||
|
|
||||||
|
@ -324,7 +301,6 @@ NS_METHOD nsMenu::InsertSeparator(const PRUint32 aCount)
|
||||||
nsMenuItem * item = new nsMenuItem();
|
nsMenuItem * item = new nsMenuItem();
|
||||||
item->Create(this);
|
item->Create(this);
|
||||||
mItems->InsertElementAt((nsISupports *)(nsIMenuItem *)item, (PRInt32)aCount);
|
mItems->InsertElementAt((nsISupports *)(nsIMenuItem *)item, (PRInt32)aCount);
|
||||||
NS_ADDREF((nsIMenuItem *)item);
|
|
||||||
|
|
||||||
MENUITEMINFO menuInfo;
|
MENUITEMINFO menuInfo;
|
||||||
|
|
||||||
|
@ -341,8 +317,7 @@ NS_METHOD nsMenu::InsertSeparator(const PRUint32 aCount)
|
||||||
NS_METHOD nsMenu::RemoveItem(const PRUint32 aCount)
|
NS_METHOD nsMenu::RemoveItem(const PRUint32 aCount)
|
||||||
{
|
{
|
||||||
|
|
||||||
nsISupports * supports = (nsISupports *)mItems->ElementAt(aCount);
|
//nsISupports * supports = (nsISupports *)mItems->ElementAt(aCount);
|
||||||
NS_RELEASE(supports);
|
|
||||||
mItems->RemoveElementAt(aCount);
|
mItems->RemoveElementAt(aCount);
|
||||||
|
|
||||||
return (::RemoveMenu(mMenu, aCount, MF_BYPOSITION) ? NS_OK:NS_ERROR_FAILURE);
|
return (::RemoveMenu(mMenu, aCount, MF_BYPOSITION) ? NS_OK:NS_ERROR_FAILURE);
|
||||||
|
@ -352,10 +327,7 @@ NS_METHOD nsMenu::RemoveItem(const PRUint32 aCount)
|
||||||
NS_METHOD nsMenu::RemoveAll()
|
NS_METHOD nsMenu::RemoveAll()
|
||||||
{
|
{
|
||||||
while (mItems->Count()) {
|
while (mItems->Count()) {
|
||||||
nsISupports * supports = (nsISupports *)mItems->ElementAt(0);
|
|
||||||
NS_RELEASE(supports);
|
|
||||||
mItems->RemoveElementAt(0);
|
mItems->RemoveElementAt(0);
|
||||||
|
|
||||||
::RemoveMenu(mMenu, 0, MF_BYPOSITION);
|
::RemoveMenu(mMenu, 0, MF_BYPOSITION);
|
||||||
}
|
}
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
|
|
|
@ -24,8 +24,7 @@
|
||||||
#include "nsSwitchToUIThread.h"
|
#include "nsSwitchToUIThread.h"
|
||||||
|
|
||||||
#include "nsIMenu.h"
|
#include "nsIMenu.h"
|
||||||
#include "nsVoidArray.h"
|
#include "nsISupportsArray.h"
|
||||||
#include "nsVoidArray.h"
|
|
||||||
|
|
||||||
class nsIMenuListener;
|
class nsIMenuListener;
|
||||||
|
|
||||||
|
@ -68,7 +67,8 @@ public:
|
||||||
NS_IMETHOD RemoveMenuListener(nsIMenuListener * aMenuListener);
|
NS_IMETHOD RemoveMenuListener(nsIMenuListener * aMenuListener);
|
||||||
|
|
||||||
// Native Impl Methods
|
// Native Impl Methods
|
||||||
nsIMenu * GetMenuParent() { return mMenuParent; }
|
// These are not ref counted
|
||||||
|
nsIMenu * GetMenuParent() { return mMenuParent; }
|
||||||
nsIMenuBar * GetMenuBarParent() { return mMenuBarParent; }
|
nsIMenuBar * GetMenuBarParent() { return mMenuBarParent; }
|
||||||
HMENU GetNativeMenu() { return mMenu; }
|
HMENU GetNativeMenu() { return mMenu; }
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ protected:
|
||||||
nsIMenuBar * mMenuBarParent;
|
nsIMenuBar * mMenuBarParent;
|
||||||
nsIMenu * mMenuParent;
|
nsIMenu * mMenuParent;
|
||||||
|
|
||||||
nsVoidArray * mItems;
|
nsISupportsArray * mItems;
|
||||||
nsIMenuListener * mListener;
|
nsIMenuListener * mListener;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Загрузка…
Ссылка в новой задаче