mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
29ad2836fa
where the status bar isn't taking over the whole area at the bottom like it should.
86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
/* -*- 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.
|
|
*/
|
|
|
|
#ifndef NAVMENUBAR_H
|
|
#define NAVMENUBAR_H
|
|
|
|
#include "htrdf.h"
|
|
#include "usertlbr.h"
|
|
|
|
#define NAVBAR_CONTROLSTRIP_HEIGHT 18
|
|
#define NAVBAR_TITLEBAR_HEIGHT 23
|
|
#define NAVBAR_TOTAL_HEIGHT 41
|
|
#define NAVBAR_CLOSEBOX 16
|
|
|
|
|
|
class CNavTitleBar : public CWnd, public CCustomImageObject
|
|
{
|
|
BOOL m_bHasFocus; // Determines what colors to use for the caption (OBSOLETE)
|
|
CPoint m_PointHit; // MouseDown tracking
|
|
|
|
COLORREF m_ControlStripForegroundColor;
|
|
COLORREF m_ControlStripBackgroundColor;
|
|
CString m_ControlStripBackgroundImageURL;
|
|
CRDFImage* m_pControlStripBackgroundImage;
|
|
|
|
COLORREF m_ForegroundColor;
|
|
COLORREF m_BackgroundColor;
|
|
CString m_BackgroundImageURL;
|
|
CRDFImage* m_pBackgroundImage;
|
|
HT_View m_View; // The current HT_View.
|
|
|
|
BOOL m_bShowTitleText;
|
|
|
|
CRect cachedCloseRect;
|
|
CRect cachedModeRect;
|
|
BOOL m_bDrawCloseFrame;
|
|
BOOL m_bDrawModeFrame;
|
|
|
|
UINT m_hFocusTimer;
|
|
|
|
public:
|
|
CNavTitleBar();
|
|
~CNavTitleBar();
|
|
|
|
void SetHTView(HT_View theView);
|
|
void NotifyFocus(BOOL hasFocus) { m_bHasFocus = hasFocus; Invalidate(); }
|
|
|
|
void LoadComplete(HT_Resource r) { Invalidate(); }
|
|
|
|
//{{AFX_MSG(CNavTitleBar)
|
|
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
// DO NOT EDIT what you see in these blocks of generated code!
|
|
afx_msg void OnPaint();
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void OnLButtonDown (UINT nFlags, CPoint point );
|
|
afx_msg void OnLButtonUp (UINT nFlags, CPoint point );
|
|
afx_msg void OnMouseMove (UINT nFlags, CPoint point );
|
|
afx_msg void OnSize( UINT nType, int cx, int cy );
|
|
afx_msg void OnTimer(UINT nIDEvent);
|
|
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#define IDT_STRIPFOCUS 30000
|
|
#define STRIPFOCUS_DELAY_MS 10
|
|
|
|
#endif // NAVBAR_H
|
|
|