Implement VideoPortGetAssociatedDeviceExtension and VideoPortCheckForDeviceExistence
[reactos.git] / reactos / subsys / system / explorer / taskbar / quicklaunch.cpp
1 /*
2 * Copyright 2003, 2004, 2005 Martin Fuchs
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19
20 //
21 // Explorer clone
22 //
23 // quicklaunch.cpp
24 //
25 // Martin Fuchs, 22.08.2003
26 //
27
28
29 #include <precomp.h>
30
31 #include "../resource.h"
32
33 #include "quicklaunch.h"
34
35
36 QuickLaunchEntry::QuickLaunchEntry()
37 {
38 _hbmp = 0;
39 }
40
41 QuickLaunchMap::~QuickLaunchMap()
42 {
43 while(!empty()) {
44 iterator it = begin();
45 DeleteBitmap(it->second._hbmp);
46 erase(it);
47 }
48 }
49
50
51 QuickLaunchBar::QuickLaunchBar(HWND hwnd)
52 : super(hwnd)
53 {
54 CONTEXT("QuickLaunchBar::QuickLaunchBar()");
55
56 _dir = NULL;
57 _next_id = IDC_FIRST_QUICK_ID;
58 _btn_dist = 20;
59 _size = 0;
60
61 HWND hwndToolTip = (HWND) SendMessage(hwnd, TB_GETTOOLTIPS, 0, 0);
62
63 SetWindowStyle(hwndToolTip, GetWindowStyle(hwndToolTip)|TTS_ALWAYSTIP);
64
65 // delay refresh to some time later
66 PostMessage(hwnd, PM_REFRESH, 0, 0);
67 }
68
69 QuickLaunchBar::~QuickLaunchBar()
70 {
71 delete _dir;
72 }
73
74 HWND QuickLaunchBar::Create(HWND hwndParent)
75 {
76 CONTEXT("QuickLaunchBar::Create()");
77
78 ClientRect clnt(hwndParent);
79
80 HWND hwnd = CreateToolbarEx(hwndParent,
81 WS_CHILD|WS_VISIBLE|WS_CLIPSIBLINGS|WS_CLIPCHILDREN|
82 CCS_TOP|CCS_NODIVIDER|CCS_NOPARENTALIGN|CCS_NORESIZE|
83 TBSTYLE_TOOLTIPS|TBSTYLE_WRAPABLE|TBSTYLE_FLAT,
84 IDW_QUICKLAUNCHBAR, 0, 0, 0, NULL, 0, 0, 0, 16, 16, sizeof(TBBUTTON));
85
86 if (hwnd)
87 new QuickLaunchBar(hwnd);
88
89 return hwnd;
90 }
91
92 void QuickLaunchBar::AddShortcuts()
93 {
94 CONTEXT("QuickLaunchBar::AddShortcuts()");
95
96 WaitCursor wait;
97
98 try {
99 TCHAR path[MAX_PATH];
100
101 SpecialFolderFSPath app_data(CSIDL_APPDATA, _hwnd); ///@todo perhaps also look into CSIDL_COMMON_APPDATA ?
102
103 _stprintf(path, TEXT("%s\\")QUICKLAUNCH_FOLDER, (LPCTSTR)app_data);
104
105 RecursiveCreateDirectory(path);
106 _dir = new ShellDirectory(GetDesktopFolder(), path, _hwnd);
107
108 _dir->smart_scan(SORT_NAME, /*SCAN_EXTRACT_ICONS|*/SCAN_FILESYSTEM);
109
110 // immediatelly extract the shortcut icons
111 for(Entry*entry=_dir->_down; entry; entry=entry->_next)
112 entry->_icon_id = entry->safe_extract_icon(ICF_NORMAL);
113 } catch(COMException&) {
114 return;
115 }
116
117
118 ShellFolder desktop_folder;
119 WindowCanvas canvas(_hwnd);
120
121 COLORREF bk_color = GetSysColor(COLOR_BTNFACE);
122 HBRUSH bk_brush = GetSysColorBrush(COLOR_BTNFACE);
123
124 AddButton(ID_MINIMIZE_ALL, g_Globals._icon_cache.get_icon(ICID_LOGOFF/*@@*/).create_bitmap(bk_color, bk_brush, canvas), ResString(IDS_MINIMIZE_ALL), NULL);
125 AddButton(ID_EXPLORE, g_Globals._icon_cache.get_icon(ICID_EXPLORER).create_bitmap(bk_color, bk_brush, canvas), ResString(IDS_TITLE), NULL);
126
127 TBBUTTON sep = {0, -1, TBSTATE_ENABLED, BTNS_SEP, {0, 0}, 0, 0};
128 SendMessage(_hwnd, TB_INSERTBUTTON, INT_MAX, (LPARAM)&sep);
129
130 int cur_desktop = g_Globals._desktops._current_desktop;
131 ResString desktop_fmt(IDS_DESKTOP_NUM);
132
133 HDC hdc = CreateCompatibleDC(canvas);
134 DWORD size = SendMessage(_hwnd, TB_GETBUTTONSIZE, 0, 0);
135 int cx = LOWORD(size);
136 int cy = HIWORD(size);
137 RECT rect = {0, 0, cx, cy};
138 RECT textRect = {0, 0, cx-7, cy-7};
139
140 for(int i=0; i<DESKTOP_COUNT; ++i) {
141 HBITMAP hbmp = CreateCompatibleBitmap(canvas, cx, cy);
142 HBITMAP hbmp_old = SelectBitmap(hdc, hbmp);
143
144 FmtString num_txt(TEXT("%d"), i+1);
145 TextColor color(hdc, RGB(64,64,64));
146 BkMode mode(hdc, TRANSPARENT);
147 FillRect(hdc, &rect, GetSysColorBrush(COLOR_BTNFACE));
148 DrawText(hdc, num_txt, num_txt.length(), &textRect, DT_CENTER|DT_VCENTER|DT_SINGLELINE);
149
150 SelectBitmap(hdc, hbmp_old);
151
152 AddButton(ID_SWITCH_DESKTOP_1+i, hbmp, FmtString(desktop_fmt, i+1), NULL, cur_desktop==i?TBSTATE_ENABLED|TBSTATE_CHECKED:TBSTATE_ENABLED);
153 }
154 DeleteDC(hdc);
155
156 SendMessage(_hwnd, TB_INSERTBUTTON, INT_MAX, (LPARAM)&sep);
157
158 for(Entry*entry=_dir->_down; entry; entry=entry->_next) {
159 // hide files like "desktop.ini"
160 if (entry->_data.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
161 continue;
162
163 // hide subfolders
164 if (!(entry->_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
165 HBITMAP hbmp = g_Globals._icon_cache.get_icon(entry->_icon_id).create_bitmap(bk_color, bk_brush, canvas);
166
167 AddButton(_next_id++, hbmp, entry->_display_name, entry); //entry->_etype==ET_SHELL? desktop_folder.get_name(static_cast<ShellEntry*>(entry)->_pidl): entry->_display_name);
168 }
169 }
170
171 _btn_dist = LOWORD(SendMessage(_hwnd, TB_GETBUTTONSIZE, 0, 0));
172 _size = _entries.size() * _btn_dist;
173
174 SendMessage(GetParent(_hwnd), PM_RESIZE_CHILDREN, 0, 0);
175 }
176
177 void QuickLaunchBar::AddButton(int id, HBITMAP hbmp, LPCTSTR name, Entry* entry, int flags)
178 {
179 TBADDBITMAP ab = {0, (UINT_PTR)hbmp};
180 int bmp_idx = SendMessage(_hwnd, TB_ADDBITMAP, 1, (LPARAM)&ab);
181
182 QuickLaunchEntry qle;
183
184 qle._hbmp = hbmp;
185 qle._title = name;
186 qle._entry = entry;
187
188 _entries[id] = qle;
189
190 TBBUTTON btn = {0, 0, flags, BTNS_BUTTON|BTNS_NOPREFIX, {0, 0}, 0, 0};
191
192 btn.idCommand = id;
193 btn.iBitmap = bmp_idx;
194
195 SendMessage(_hwnd, TB_INSERTBUTTON, INT_MAX, (LPARAM)&btn);
196 }
197
198 void QuickLaunchBar::UpdateDesktopButtons(int desktop_idx)
199 {
200 for(int i=0; i<DESKTOP_COUNT; ++i) {
201 TBBUTTONINFO tbi = {sizeof(TBBUTTONINFO), TBIF_STATE, 0, 0, desktop_idx==i? TBSTATE_ENABLED|TBSTATE_CHECKED: TBSTATE_ENABLED};
202
203 SendMessage(_hwnd, TB_SETBUTTONINFO, ID_SWITCH_DESKTOP_1+i, (LPARAM)&tbi);
204 }
205 }
206
207 LRESULT QuickLaunchBar::WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
208 {
209 switch(nmsg) {
210 case PM_REFRESH:
211 AddShortcuts();
212 break;
213
214 case PM_GET_WIDTH: {
215 // take line wrapping into account
216 int btns = SendMessage(_hwnd, TB_BUTTONCOUNT, 0, 0);
217 int rows = SendMessage(_hwnd, TB_GETROWS, 0, 0);
218
219 if (rows<2 || rows==btns)
220 return _size;
221
222 RECT rect;
223 int max_cx = 0;
224
225 for(QuickLaunchMap::const_iterator it=_entries.begin(); it!=_entries.end(); ++it) {
226 SendMessage(_hwnd, TB_GETRECT, it->first, (LPARAM)&rect);
227
228 if (rect.right > max_cx)
229 max_cx = rect.right;
230 }
231
232 return max_cx;}
233
234 case PM_UPDATE_DESKTOP:
235 UpdateDesktopButtons(wparam);
236 break;
237
238 case WM_CONTEXTMENU: {
239 TBBUTTON btn;
240 QuickLaunchMap::iterator it;
241 Point screen_pt(lparam), clnt_pt=screen_pt;
242 ScreenToClient(_hwnd, &clnt_pt);
243
244 Entry* entry = NULL;
245 int idx = SendMessage(_hwnd, TB_HITTEST, 0, (LPARAM)&clnt_pt);
246
247 if (idx>=0 &&
248 SendMessage(_hwnd, TB_GETBUTTON, idx, (LPARAM)&btn)!=-1 &&
249 (it=_entries.find(btn.idCommand))!=_entries.end()) {
250 entry = it->second._entry;
251 }
252
253 if (entry) // entry is NULL for desktop switch buttons
254 CHECKERROR(entry->do_context_menu(_hwnd, screen_pt, _cm_ifs));
255 else
256 goto def;
257 break;}
258
259 default: def:
260 return super::WndProc(nmsg, wparam, lparam);
261 }
262
263 return 0;
264 }
265
266 int QuickLaunchBar::Command(int id, int code)
267 {
268 CONTEXT("QuickLaunchBar::Command()");
269
270 if ((id&~0xFF) == IDC_FIRST_QUICK_ID) {
271 QuickLaunchEntry& qle = _entries[id];
272
273 if (qle._entry) {
274 qle._entry->launch_entry(_hwnd);
275 return 0;
276 }
277 }
278
279 return 0; // Don't return 1 to avoid recursion with DesktopBar::Command()
280 }
281
282 int QuickLaunchBar::Notify(int id, NMHDR* pnmh)
283 {
284 switch(pnmh->code) {
285 case TTN_GETDISPINFO: {
286 NMTTDISPINFO* ttdi = (NMTTDISPINFO*) pnmh;
287
288 int id = ttdi->hdr.idFrom;
289 ttdi->lpszText = _entries[id]._title.str();
290 #ifdef TTF_DI_SETITEM
291 ttdi->uFlags |= TTF_DI_SETITEM;
292 #endif
293
294 // enable multiline tooltips (break at CR/LF and for very long one-line strings)
295 SendMessage(pnmh->hwndFrom, TTM_SETMAXTIPWIDTH, 0, 400);
296
297 break;}
298
299 return super::Notify(id, pnmh);
300 }
301
302 return 0;
303 }