📄 fullscreentitlebar.cpp
字号:
//===========================================================================
// FullScreen Titlebar
// 2004 - All rights reservered
//===========================================================================
//
// Project/Product : FullScreenTitlebar
// FileName : FullScreenTitleBar.cpp
// Author(s) : Lars Werner
// Homepage : http://lars.werner.no
//
// Description : Creates a titlebar window used on fullscreen apps.
//
// Classes : CTitleBar
//
// Information :
// Compiler(s) : Visual C++ 6.0 Ent.
// Target(s) : Win32 / MFC
// Editor : Microsoft Visual Studio 6.0 editor
//
// History
// Vers. Date Aut. Type Description
// ----- -------- ---- ------- -----------------------------------------
// 1.00 20 01 04 LW Create Original
// 1.01 03 02 80 LW Updated Added contextmenus and restore feature
//===========================================================================
#include "stdhdrs.h"
#include "res\\resource.h"
#include "FullScreenTitleBar.h"
//***************************************************************************************
CTitleBar *TitleBarThis=NULL;
//***************************************************************************************
CTitleBar::CTitleBar()
{
hInstance=NULL;
Parent=NULL;
this->Init();
}
CTitleBar::CTitleBar(HINSTANCE hInst, HWND ParentWindow)
{
hInstance=hInst;
Parent=ParentWindow;
this->Init();
}
//***************************************************************************************
CTitleBar::~CTitleBar()
{
DeleteObject(Font);
DestroyWindow(m_hWnd);
}
//***************************************************************************************
void CTitleBar::Init()
{
SlideDown=TRUE; //Slide down at startup
AutoHide=FALSE;
IntAutoHideCounter=0;
HideAfterSlide=FALSE;
//Create font
HDC hdc;
long lfHeight;
hdc = GetDC(NULL);
lfHeight = -MulDiv(10, GetDeviceCaps(hdc, LOGPIXELSY), 72);
ReleaseDC(NULL, hdc);
Font=CreateFont(lfHeight, 0, 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, "Arial");
Text=""; //No text at startup...
m_hWnd=NULL;
if(Parent!=NULL&&hInstance!=NULL)
{
TitleBarThis=this;
this->CreateDisplay();
}
}
//***************************************************************************************
void CTitleBar::Create(HINSTANCE hInst, HWND ParentWindow)
{
hInstance=hInst;
Parent=ParentWindow;
this->Init();
}
//***************************************************************************************
void CTitleBar::CreateDisplay()
{
//Consts are used to select margins
//GetParent size and size after that!
RECT lpRect;
::GetWindowRect(::GetDesktopWindow(), &lpRect);
// Create the window
WNDCLASS wndclass;
wndclass.style = CS_DBLCLKS;
wndclass.lpfnWndProc = CTitleBar::WndProc;
wndclass.cbClsExtra = 0;
wndclass.cbWndExtra = 0;
wndclass.hInstance = hInstance;
wndclass.hIcon=NULL;
wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
wndclass.lpszMenuName = (const TCHAR *) NULL;
wndclass.lpszClassName = _T("FSTITLEBAR");
RegisterClass(&wndclass);
//Create window without any titlbar
DWORD winstyle = WS_POPUP | WS_SYSMENU ;
int CenterX=(lpRect.right-lpRect.left)/2-tbWidth/2;
int HeightPlacement=-tbHeigth+1;
if(tbScrollWindow==FALSE)
HeightPlacement=0;
m_hWnd = CreateWindow(_T("FSTITLEBAR"),
/*_T("Titlebar")*/NULL,
winstyle,
CenterX,
HeightPlacement,
tbWidth, // x-size
tbHeigth, // y-size
Parent, // Parent handle
NULL, // Menu handle
hInstance,
NULL);
//Set region to window so it is non rectangular
HRGN Range;
POINT Points[4];
Points[0].x=0;
Points[0].y=0;
Points[1].x=tbTriangularPoint;
Points[1].y=tbHeigth;
Points[2].x=tbWidth-tbTriangularPoint;
Points[2].y=tbHeigth;
Points[3].x=tbWidth;
Points[3].y=0;
Range=::CreatePolygonRgn(Points, 4, ALTERNATE );
::SetWindowRgn(m_hWnd, Range, TRUE);
//Close button
HWND Close=CreateWindow("STATIC",
"Close",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbWidth-tbRightSpace-tbcxPicture, tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_CLOSE,
hInstance,
NULL);
//Maximize button
HWND Maximize=CreateWindow("STATIC",
"Maximize",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbWidth-tbRightSpace-(tbcxPicture*2)-(tbButtonSpace*1), tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_MAXIMIZE,
hInstance,
NULL);
//Minimize button
HWND Minimize=CreateWindow("STATIC",
"Minimize",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbWidth-tbRightSpace-(tbcxPicture*3)-(tbButtonSpace*2), tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_MINIMIZE,
hInstance,
NULL);
//Pin button
Pin=CreateWindow("STATIC",
"Pin",
WS_CHILD | WS_VISIBLE | SS_NOTIFY | SS_OWNERDRAW,
tbLeftSpace, tbTopSpace, tbcxPicture, tbcyPicture, m_hWnd,
(HMENU)tbIDC_PIN,
hInstance,
NULL);
//Set the creation of the window
SetWindowLong(m_hWnd, GWL_USERDATA, (LONG) this);
//Load pictures
this->LoadPictures();
//Show window and start animation
if(tbHideAtStartup==FALSE)
ShowWindow(m_hWnd, SW_SHOW);
if(tbScrollWindow==TRUE)
SetTimer(m_hWnd, tbScrollTimerID, tbScrollDelay, NULL);
if(AutoHide==TRUE)
SetTimer(m_hWnd, tbAutoScrollTimer, tbAutoScrollDelay, NULL);
}
//***************************************************************************************
LRESULT CALLBACK CTitleBar::WndProc(HWND hwnd, UINT iMsg,
WPARAM wParam, LPARAM lParam)
{
switch (iMsg)
{
case WM_CREATE:
return 0;
case WM_PAINT:
TitleBarThis->Draw();
return 0;
case WM_CLOSE:
{
HWND Window=TitleBarThis->GetSafeHwnd();
TitleBarThis->FreePictures();
DestroyWindow(Window);
PostQuitMessage(0);
return 0;
}
case WM_DESTROY:
TitleBarThis->FreePictures();
PostQuitMessage(0);
return 0;
case WM_DRAWITEM:
{
HDC hdcMem;
LPDRAWITEMSTRUCT lpdis;
lpdis = (LPDRAWITEMSTRUCT) lParam;
hdcMem = CreateCompatibleDC(lpdis->hDC);
if(lpdis->CtlID==tbIDC_CLOSE)
SelectObject(hdcMem, TitleBarThis->hClose);
if(lpdis->CtlID==tbIDC_MAXIMIZE)
SelectObject(hdcMem, TitleBarThis->hMaximize);
if(lpdis->CtlID==tbIDC_MINIMIZE)
SelectObject(hdcMem, TitleBarThis->hMinimize);
if(lpdis->CtlID==tbIDC_PIN)
{
if(TitleBarThis->AutoHide==TRUE)
SelectObject(hdcMem, TitleBarThis->hPinUp);
else
SelectObject(hdcMem, TitleBarThis->hPinDown);
}
BitBlt(lpdis->hDC,
lpdis->rcItem.left,
lpdis->rcItem.top,
lpdis->rcItem.right - lpdis->rcItem.left,
lpdis->rcItem.bottom - lpdis->rcItem.top,
hdcMem,
0,
0,
SRCCOPY);
DeleteDC(hdcMem);
return TRUE;
}
case WM_COMMAND:
if (HIWORD(wParam) == BN_CLICKED)
{
//Handle the Pin for holding the window
if(LOWORD(wParam) == tbIDC_PIN)
{
if(TitleBarThis->AutoHide==TRUE)
{
TitleBarThis->AutoHide=FALSE;
TitleBarThis->DisplayWindow(TRUE);
}
else
{
TitleBarThis->AutoHide=TRUE;
TitleBarThis->DisplayWindow(FALSE);
}
//Redraw window to show the new gfx...
::RedrawWindow(TitleBarThis->Pin, NULL, NULL, TRUE);
}
//If default = true we'll send usally showwindow and close messages
if(tbDefault==TRUE)
{
if(LOWORD(wParam) == tbIDC_CLOSE)
::SendMessage(TitleBarThis->Parent, WM_CLOSE, NULL, NULL);
if(LOWORD(wParam) == tbIDC_MAXIMIZE)
{
if(::IsZoomed(TitleBarThis->Parent)==TRUE)
ShowWindow(TitleBarThis->Parent, SW_RESTORE);
else
ShowWindow(TitleBarThis->Parent, SW_MAXIMIZE);
}
if(LOWORD(wParam) == tbIDC_MINIMIZE)
ShowWindow(TitleBarThis->Parent, SW_MINIMIZE);
}
else //default = false - send custom message on buttons
{
if(LOWORD(wParam) == tbIDC_CLOSE)
::SendMessage(TitleBarThis->Parent, tbWM_CLOSE, NULL, NULL);
if(LOWORD(wParam) == tbIDC_MAXIMIZE)
::SendMessage(TitleBarThis->Parent, tbWM_MAXIMIZE, NULL, NULL);
if(LOWORD(wParam) == tbIDC_MINIMIZE)
::SendMessage(TitleBarThis->Parent, tbWM_MINIMIZE, NULL, NULL);
}
}
//Menu part starts here
{
UINT IDNum=LOWORD(wParam);
if(IDNum>=tbWMCOMMANDIDStart&&IDNum<tbWMCOMMANDIDEnd) //The ID is in range for a menuclick
{
UINT Num=IDNum-tbWMCOMMANDIDStart;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -