-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFullscreenWnd.cpp
249 lines (206 loc) · 5.41 KB
/
FullscreenWnd.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
// WinDjView
// Copyright (C) 2004-2015 Andrew Zhezherun
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
// http://www.gnu.org/copyleft/gpl.html
#include "stdafx.h"
#include "WinDjView.h"
#include "FullscreenWnd.h"
#include "DjVuView.h"
#include "MDIChild.h"
#include "ThumbnailsView.h"
// CFullscreenWnd
IMPLEMENT_DYNAMIC(CFullscreenWnd, CWnd)
CFullscreenWnd::CFullscreenWnd()
: m_pOwner(NULL), m_pView(NULL)
{
}
CFullscreenWnd::~CFullscreenWnd()
{
if (AfxGetThreadState()->m_pRoutingFrame == (CFrameWnd*) this)
AfxGetThreadState()->m_pRoutingFrame = NULL;
}
BEGIN_MESSAGE_MAP(CFullscreenWnd, CWnd)
ON_WM_CLOSE()
ON_WM_DESTROY()
ON_WM_SETFOCUS()
ON_WM_ERASEBKGND()
ON_MESSAGE(WM_APPCOMMAND, OnAppCommand)
ON_WM_ENABLE()
END_MESSAGE_MAP()
// CFullscreenWnd message handlers
BOOL CFullscreenWnd::Create()
{
static CString strWndClass = AfxRegisterWndClass(CS_DBLCLKS,
::LoadCursor(NULL, IDC_ARROW), NULL,
::LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME)));
if (!CreateEx(0, strWndClass, NULL,
WS_POPUP, CRect(0, 0, 0, 0), NULL, 0))
return false;
m_hIcon = theApp.LoadIcon(IDR_MAINFRAME);
SetIcon(m_hIcon, true);
SetIcon(m_hIcon, false);
return true;
}
void CFullscreenWnd::Show(CDjVuView* pOwner, CDjVuView* pContents)
{
ASSERT(m_pOwner == NULL);
m_pOwner = pOwner;
m_pView = pContents;
CRect rcMonitor = GetMonitorRect(pOwner);
int nWidth = rcMonitor.Width();
int nHeight = rcMonitor.Height();
MoveWindow(rcMonitor.left, rcMonitor.top, nWidth, nHeight);
m_pView->MoveWindow(0, 0, nWidth, nHeight);
CString strText;
pOwner->GetTopLevelParent()->GetWindowText(strText);
SetWindowText(strText);
ShowWindow(SW_SHOW);
SetForegroundWindow();
pOwner->GetTopLevelParent()->ShowWindow(SW_HIDE);
}
void CFullscreenWnd::Hide()
{
if (m_pOwner != NULL)
{
int nPage = m_pView->GetCurrentPage();
m_pOwner->UpdatePageInfoFrom(m_pView);
m_pOwner->CopyBitmapsFrom(m_pView, true);
m_pOwner->GoToPage(nPage);
// Detach view from the document before destroying
m_pView->SetDocument(NULL);
m_pView->DestroyWindow();
m_pOwner->GetTopLevelParent()->ShowWindow(SW_SHOW);
m_pOwner->GetTopLevelParent()->SetForegroundWindow();
}
ShowWindow(SW_HIDE);
m_pView = NULL;
m_pOwner = NULL;
}
BOOL CFullscreenWnd::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_ESCAPE)
{
Hide();
return true;
}
return CWnd::PreTranslateMessage(pMsg);
}
void CFullscreenWnd::OnSetFocus(CWnd* pOldWnd)
{
if (m_pView != NULL)
{
m_pView->SetFocus();
return;
}
CWnd::OnSetFocus(pOldWnd);
}
void CFullscreenWnd::PostNcDestroy()
{
// Should be created on heap
delete this;
}
BOOL CFullscreenWnd::OnEraseBkgnd(CDC* pDC)
{
return true;
}
void CFullscreenWnd::OnClose()
{
if (m_pOwner != NULL)
{
// WM_CLOSE may cause a message box to pop up. Ensure that it gets a correct parent.
CPushRoutingFrame push((CFrameWnd*) this);
m_pOwner->GetTopLevelFrame()->SendMessage(WM_CLOSE);
}
else
{
Hide();
}
}
void CFullscreenWnd::OnDestroy()
{
if (m_pView != NULL)
m_pView->SetDocument(NULL);
CWnd::OnDestroy();
}
BOOL CFullscreenWnd::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)
{
if (IsWindowVisible())
{
// Trick to make dialogs and message boxes work properly
CPushRoutingFrame push((CFrameWnd*) this);
// Send commands to the view
if (m_pView != NULL && ::IsWindow(m_pView->m_hWnd))
{
m_pView->ShowCursor();
if (m_pView->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
{
// m_pView could have been destroyed by the last call.
if (m_pView != NULL && ::IsWindow(m_pView->m_hWnd))
m_pView->ShowCursor();
return true;
}
}
if (CWnd::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
{
if (m_pView != NULL && ::IsWindow(m_pView->m_hWnd))
m_pView->ShowCursor();
return true;
}
if (theApp.OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
{
if (m_pView != NULL && ::IsWindow(m_pView->m_hWnd))
m_pView->ShowCursor();
return true;
}
if (m_pView != NULL && ::IsWindow(m_pView->m_hWnd))
m_pView->ShowCursor();
return false;
}
else
{
return CWnd::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);
}
}
LRESULT CFullscreenWnd::OnAppCommand(WPARAM wParam, LPARAM lParam)
{
if (IsWindowVisible() && m_pView != NULL)
{
UINT nCommand = GET_APPCOMMAND_LPARAM(lParam);
if (nCommand == APPCOMMAND_BROWSER_BACKWARD)
{
SendMessage(WM_COMMAND, ID_VIEW_BACK);
return 1;
}
else if (nCommand == APPCOMMAND_BROWSER_FORWARD)
{
SendMessage(WM_COMMAND, ID_VIEW_FORWARD);
return 1;
}
}
Default();
return 0;
}
void CFullscreenWnd::OnEnable(BOOL bEnable)
{
CWnd::OnEnable(bEnable);
if (bEnable)
{
// Restore focus when a modal dialog closes and re-enables
// the top-level window.
if (m_pView != NULL)
m_pView->SetFocus();
}
}