gecko/widget/os2/os2FrameWindow.h
Ehsan Akhgari 0fd9123eac Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00

77 lines
3.5 KiB
C++

/* vim: set sw=2 sts=2 et cin: */
/* -*- 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/. */
//=============================================================================
/*
* os2FrameWindow is a helper class instantiated by nsWindow to handle
* operations that are specific to OS/2 frame windows. It never references
* the frame's client window except to create it. See nsWindow.h for details.
* Note: nsWindow.h must be #included in *.cpp before #including this file.
*
*/
//=============================================================================
#ifndef _os2framewindow_h
#define _os2framewindow_h
//=============================================================================
// os2FrameWindow
//=============================================================================
class os2FrameWindow
{
public:
os2FrameWindow(nsWindow* aOwner);
~os2FrameWindow();
HWND CreateFrameWindow(nsWindow* aParent,
HWND aParentWnd,
const nsIntRect& aRect,
nsWindowType aWindowType,
nsBorderStyle aBorderStyle);
uint32_t GetFCFlags(nsWindowType aWindowType,
nsBorderStyle aBorderStyle);
nsresult Show(bool aState);
void SetWindowListVisibility(bool aState);
nsresult GetBounds(nsIntRect& aRect);
nsresult Move(int32_t aX, int32_t aY);
nsresult Resize(int32_t aWidth, int32_t aHeight,
bool aRepaint);
nsresult Resize(int32_t aX, int32_t aY, int32_t w, int32_t h,
bool aRepaint);
void ActivateTopLevelWidget();
nsresult SetSizeMode(int32_t aMode);
nsresult HideWindowChrome(bool aShouldHide);
nsresult SetTitle(const nsAString& aTitle);
nsresult SetIcon(const nsAString& aIconSpec);
nsresult ConstrainPosition(bool aAllowSlop,
int32_t* aX, int32_t* aY);
MRESULT ProcessFrameMessage(ULONG msg, MPARAM mp1, MPARAM mp2);
HWND GetFrameWnd() {return mFrameWnd;}
friend MRESULT EXPENTRY fnwpFrame(HWND hwnd, ULONG msg,
MPARAM mp1, MPARAM mp2);
protected:
nsWindow * mOwner; // the nsWindow that created this instance
HWND mFrameWnd; // the frame's window handle
HWND mTitleBar; // the frame controls that have
HWND mSysMenu; // to be hidden or shown when
HWND mMinMax; // HideWindowChrome() is called
uint32_t mSavedStyle; // frame style saved by HideWindowChrome()
HPOINTER mFrameIcon; // current frame icon
bool mChromeHidden; // are frame controls hidden?
bool mNeedActivation; // triggers activation when focus changes
PFNWP mPrevFrameProc; // the frame's original wndproc
nsIntRect mFrameBounds; // the frame's location & dimensions
};
#endif //_os2framewindow_h
//=============================================================================