to use nsISupports.h macros. Implemented nsToolkits query interface and made it creatable through the factory. git-svn-id: svn://10.0.0.236/trunk@10812 18797224-902f-48f8-a5cc-f745e15eee43
166 lines
4.3 KiB
C++
166 lines
4.3 KiB
C++
/* -*- 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.
|
|
*/
|
|
|
|
#include "nsButton.h"
|
|
#include "nsToolkit.h"
|
|
#include "nsColor.h"
|
|
#include "nsGUIEvent.h"
|
|
#include "nsString.h"
|
|
#include "nsStringUtil.h"
|
|
#include <windows.h>
|
|
|
|
|
|
NS_IMPL_ADDREF(nsButton)
|
|
NS_IMPL_RELEASE(nsButton)
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// nsButton constructor
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
nsButton::nsButton() : nsWindow() , nsIButton()
|
|
{
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// nsButton destructor
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
nsButton::~nsButton()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Implement the standard QueryInterface for NS_IWIDGET_IID and NS_ISUPPORTS_IID
|
|
* @modify gpk 8/4/98
|
|
* @param aIID The name of the class implementing the method
|
|
* @param _classiiddef The name of the #define symbol that defines the IID
|
|
* for the class (e.g. NS_ISUPPORTS_IID)
|
|
*
|
|
*/
|
|
nsresult nsButton::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
|
{
|
|
if (NULL == aInstancePtr) {
|
|
return NS_ERROR_NULL_POINTER;
|
|
}
|
|
|
|
static NS_DEFINE_IID(kIButton, NS_IBUTTON_IID);
|
|
if (aIID.Equals(kIButton)) {
|
|
*aInstancePtr = (void*) ((nsIButton*)this);
|
|
NS_ADDREF_THIS();
|
|
return NS_OK;
|
|
}
|
|
|
|
return nsWindow::QueryInterface(aIID,aInstancePtr);
|
|
}
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// Set this button label
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
NS_METHOD nsButton::SetLabel(const nsString& aText)
|
|
{
|
|
NS_ALLOC_STR_BUF(label, aText, 256);
|
|
VERIFY(::SetWindowText(mWnd, label));
|
|
NS_FREE_STR_BUF(label);
|
|
return NS_OK;
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// Get this button label
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
NS_METHOD nsButton::GetLabel(nsString& aBuffer)
|
|
{
|
|
int actualSize = ::GetWindowTextLength(mWnd)+1;
|
|
NS_ALLOC_CHAR_BUF(label, 256, actualSize);
|
|
::GetWindowText(mWnd, label, actualSize);
|
|
aBuffer.SetLength(0);
|
|
aBuffer.Append(label);
|
|
NS_FREE_CHAR_BUF(label);
|
|
return NS_OK;
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// move, paint, resizes message - ignore
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
PRBool nsButton::OnMove(PRInt32, PRInt32)
|
|
{
|
|
return PR_FALSE;
|
|
}
|
|
|
|
PRBool nsButton::OnPaint()
|
|
{
|
|
//printf("** nsButton::OnPaint **\n");
|
|
return PR_FALSE;
|
|
}
|
|
|
|
PRBool nsButton::OnResize(nsRect &aWindowRect)
|
|
{
|
|
return PR_FALSE;
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// return the window class name and initialize the class if needed
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
LPCTSTR nsButton::WindowClass()
|
|
{
|
|
return "BUTTON";
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// return window styles
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
DWORD nsButton::WindowStyle()
|
|
{
|
|
return WS_CHILD | WS_CLIPSIBLINGS;
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// return window extended styles
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
DWORD nsButton::WindowExStyle()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
//
|
|
// get position/dimensions
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
|
|
void nsButton::GetBounds(nsRect &aRect)
|
|
{
|
|
nsWindow::GetBounds(aRect);
|
|
}
|
|
|