⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 desktopbar.h

📁 ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机理和API函数调用几乎相同。甚至可以兼容XP的程序。喜欢研究系统内核的人可以看一看。
💻 H
字号:
/*
 * Copyright 2003, 2004 Martin Fuchs
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


 //
 // Explorer and Desktop clone
 //
 // desktopbar.h
 //
 // Martin Fuchs, 22.08.2003
 //


#define	CLASSNAME_EXPLORERBAR	TEXT("Shell_TrayWnd")
#define	TITLE_EXPLORERBAR		TEXT("")	// use an empty window title, so windows taskmanager does not show the window in its application list


#define	DESKTOPBARBAR_HEIGHT	(GetSystemMetrics(SM_CYSIZE) + 5 * GetSystemMetrics(SM_CYEDGE))
#define	REBARBAND_HEIGHT		(GetSystemMetrics(SM_CYSIZE) + 2 * GetSystemMetrics(SM_CYEDGE))


#define	IDC_START				0x1000
#define	IDC_LOGOFF				0x1001
#define	IDC_SHUTDOWN			0x1002
#define	IDC_LAUNCH				0x1003
#define	IDC_START_HELP			0x1004
#define	IDC_SEARCH_FILES		0x1005
#define	IDC_SEARCH_COMPUTER		0x1006
#define	IDC_SETTINGS			0x1007
#define	IDC_ADMIN				0x1008
#define	IDC_DOCUMENTS			0x1009
#define	IDC_RECENT				0x100A
#define	IDC_FAVORITES			0x100B
#define	IDC_PROGRAMS			0x100C
#define	IDC_EXPLORE				0x100D
#define	IDC_NETWORK				0x100E
#define	IDC_CONNECTIONS			0x100F
#define	IDC_DRIVES				0x1010
#define	IDC_CONTROL_PANEL		0x1011
#define	IDC_SETTINGS_MENU		0x1012
#define	IDC_PRINTERS			0x1013
#define	IDC_PRINTERS_MENU		0x1014
#define	IDC_BROWSE				0x1015
#define	IDC_SEARCH_PROGRAM		0x1016
#define	IDC_SEARCH				0x1017
#define	IDC_TERMINATE			0x1018
#define	IDC_RESTART 			0x1019

#define	IDC_FIRST_MENU			0x3000


 /// desktop bar window, also known as "system tray"
struct DesktopBar : public
#ifdef _ROS_
	TrayIconControllerTemplate<
				OwnerDrawParent<Window> >
#else
	OwnerDrawParent<Window>
#endif
{
#ifdef _ROS_
	typedef TrayIconControllerTemplate<
				OwnerDrawParent<Window> > super;
#else
	typedef OwnerDrawParent<Window> super;
#endif

	DesktopBar(HWND hwnd);
	~DesktopBar();

	static HWND Create();

protected:
	RECT	_work_area_org;
	int		_taskbar_pos;

	LRESULT	Init(LPCREATESTRUCT pcs);
	LRESULT	WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam);
	int		Notify(int id, NMHDR* pnmh);
	int		Command(int id, int code);

	void	Resize(int cx, int cy);
	void	ControlResize(WPARAM wparam, LPARAM lparam);
	void	RegisterHotkeys();
	void	ProcessHotKey(int id_hotkey);
	void	ShowStartMenu();
	LRESULT	ProcessCopyData(COPYDATASTRUCT* pcd);

	WindowHandle _hwndTaskBar;
	WindowHandle _hwndNotify;
	WindowHandle _hwndQuickLaunch;
	WindowHandle _hwndrebar;
	/* Needed to make the StartButton pushed, if it's called by windowskey: SC_TASKLIST command */
	WindowHandle _hwndStartButton;
	
	struct StartMenuRoot* _startMenuRoot;

#ifdef _ROS_
	TrayIcon	_trayIcon;

	void	AddTrayIcons();
	virtual void TrayClick(UINT id, int btn);
	virtual void TrayDblClick(UINT id, int btn);
#else
	const UINT WM_TASKBARCREATED;
#endif
};


 /// special "Start" button with one click activation
struct StartButton : public PictureButton
{
	typedef PictureButton super;

	StartButton(HWND hwnd);

protected:
	LRESULT	WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam);
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -