-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMainFrame.cpp
378 lines (316 loc) · 10.8 KB
/
MainFrame.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/* Copyright (C) 2014-2025 Stefan-Mihai MOGA
This file is part of IntelliLink application developed by Stefan-Mihai MOGA.
IntelliLink is an alternative Windows version to Online Link Managers!
IntelliLink is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Open
Source Initiative, either version 3 of the License, or any later version.
IntelliLink 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
IntelliLink. If not, see <http://www.opensource.org/licenses/gpl-3.0.html>*/
// MainFrame.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "IntelliLink.h"
#include "MainFrame.h"
#include "WebBrowserDlg.h"
#include "CheckForUpdatesDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#define WM_TRAYNOTIFY WM_USER + 100
// CMainFrame
IMPLEMENT_DYNAMIC(CMainFrame, CFrameWndEx)
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWndEx)
ON_WM_CREATE()
ON_WM_SETFOCUS()
// Global help commands
ON_COMMAND(ID_HELP_FINDER, &CFrameWndEx::OnHelpFinder)
ON_COMMAND(ID_HELP, &CFrameWndEx::OnHelp)
ON_COMMAND(ID_CONTEXT_HELP, &CFrameWndEx::OnContextHelp)
ON_COMMAND(ID_DEFAULT_HELP, &CFrameWndEx::OnHelpFinder)
// Default commands
ON_COMMAND(ID_REFRESH, &CMainFrame::OnLinkRefresh)
ON_COMMAND(ID_INSERT, &CMainFrame::OnLinkInsert)
ON_COMMAND(ID_MODIFY, &CMainFrame::OnLinkModify)
ON_COMMAND(ID_REMOVE, &CMainFrame::OnLinkRemove)
ON_UPDATE_COMMAND_UI(ID_MODIFY, &CMainFrame::OnUpdateModify)
ON_UPDATE_COMMAND_UI(ID_REMOVE, &CMainFrame::OnUpdateRemove)
ON_COMMAND(IDC_SHOW_APPLICATION, &CMainFrame::OnShowApplication)
ON_COMMAND(IDC_HIDE_APPLICATION, &CMainFrame::OnHideApplication)
ON_MESSAGE(WM_TRAYNOTIFY, OnTrayNotification)
ON_WM_DESTROY()
ON_WM_TIMER()
ON_COMMAND(IDC_STARTUP_APPS, &CMainFrame::OnStartupApps)
ON_COMMAND(IDC_WEBSITE_REVIEW, &CMainFrame::OnWebsiteReview)
ON_COMMAND(IDC_WEBMASTER_TOOLS, &CMainFrame::OnWebmasterTools)
ON_COMMAND(IDC_TWITTER, &CMainFrame::OnTwitter)
ON_COMMAND(IDC_LINKEDIN, &CMainFrame::OnLinkedin)
ON_COMMAND(IDC_FACEBOOK, &CMainFrame::OnFacebook)
ON_COMMAND(IDC_INSTAGRAM, &CMainFrame::OnInstagram)
ON_COMMAND(IDC_ISSUES, &CMainFrame::OnIssues)
ON_COMMAND(IDC_DISCUSSIONS, &CMainFrame::OnDiscussions)
ON_COMMAND(IDC_WIKI, &CMainFrame::OnWiki)
ON_COMMAND(IDC_USER_MANUAL, &CMainFrame::OnUserManual)
ON_COMMAND(IDC_CHECK_FOR_UPDATES, &CMainFrame::OnCheckForUpdates)
END_MESSAGE_MAP()
// CMainFrame construction/destruction
CMainFrame::CMainFrame()
{
m_MainButton = nullptr;
m_pLinkView = nullptr;
m_hIcons[0] = CTrayNotifyIcon::LoadIcon(IDR_MAINFRAME);
m_hIcons[1] = CTrayNotifyIcon::LoadIcon(IDR_HAPPY);
m_hIcons[2] = CTrayNotifyIcon::LoadIcon(IDR_SAD);
}
CMainFrame::~CMainFrame()
{
}
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFrameWndEx::OnCreate(lpCreateStruct) == -1)
return -1;
/* create a view to occupy the client area of the frame
if (!m_wndView.Create(nullptr, nullptr, AFX_WS_DEFAULT_VIEW, CRect(0, 0, 0, 0), this, AFX_IDW_PANE_FIRST, nullptr))
{
TRACE0("Failed to create view window\n");
return -1;
}*/
// enable Visual Studio 2005 style docking window behavior
CDockingManager::SetDockingMode(DT_SMART);
// enable Visual Studio 2005 style docking window auto-hide behavior
EnableAutoHidePanes(CBRS_ALIGN_ANY);
// set the visual manager used to draw all user interface elements
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
m_wndRibbonBar.Create(this);
m_wndRibbonBar.LoadFromResource(IDR_RIBBON);
m_MainButton = new CMFCRibbonApplicationButton;
m_MainButton->SetVisible(FALSE);
m_wndRibbonBar.SetApplicationButton(m_MainButton, CSize());
if (!m_wndStatusBar.Create(this))
{
TRACE0("Failed to create status bar\n");
return -1; // fail to create
}
BOOL bNameValid;
CString strTitlePane;
bNameValid = strTitlePane.LoadString(IDS_STATUS_PANE1);
ASSERT(bNameValid);
m_wndStatusBar.AddElement(new CMFCRibbonStatusBarPane(
ID_STATUSBAR_PANE1, strTitlePane, TRUE, nullptr,
_T("012345678901234567890123456789012345678901234567890123456789")), strTitlePane);
// if (!m_pTrayIcon.Create(this, IDR_TRAYPOPUP, _T("Static Tray Icon"), _T("Demo Tray Application"), _T("Static Tray Icon"), 10, CTrayNotifyIcon::User, m_hIcons[0], WM_TRAYNOTIFY))
if (!m_pTrayIcon.Create(this, IDR_TRAYPOPUP, _T("IntelliLink"), m_hIcons[0], WM_TRAYNOTIFY))
{
AfxMessageBox(_T("Failed to create tray icon"), MB_OK | MB_ICONSTOP);
return -1;
}
m_nTimerID = SetTimer(1, TIMER_INTERVAL, nullptr);
return 0;
}
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
CCreateContext pLinkContext;
pLinkContext.m_pCurrentDoc = nullptr;
pLinkContext.m_pCurrentFrame = this;
pLinkContext.m_pLastView = nullptr;
pLinkContext.m_pNewDocTemplate = nullptr;
pLinkContext.m_pNewViewClass = RUNTIME_CLASS(CLinkView);
if ((m_pLinkView = (CLinkView*) CreateView(&pLinkContext, AFX_IDW_PANE_FIRST)) != nullptr)
{
m_pLinkView->ShowWindow(SW_SHOW);
m_pLinkView->OnInitialUpdate();
m_pLinkView->m_pMainFrame = this;
}
return CFrameWndEx::OnCreateClient(lpcs, pContext);
}
void CMainFrame::OnDestroy()
{
m_pTrayIcon.Hide();
CFrameWndEx::OnDestroy();
}
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWndEx::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
cs.lpszClass = AfxRegisterWndClass(0);
return TRUE;
}
BOOL CMainFrame::SetStatusBarText(CString strMessage)
{
if (m_wndStatusBar.GetSafeHwnd() != nullptr)
{
m_wndStatusBar.GetElement(0)->SetText(strMessage);
m_wndStatusBar.Invalidate();
m_wndStatusBar.UpdateWindow();
return TRUE;
}
return FALSE;
}
// CMainFrame diagnostics
#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
CFrameWndEx::AssertValid();
}
void CMainFrame::Dump(CDumpContext& dc) const
{
CFrameWndEx::Dump(dc);
}
#endif //_DEBUG
// CMainFrame message handlers
void CMainFrame::OnSetFocus(CWnd* /*pOldWnd*/)
{
// forward focus to the view window
m_pLinkView->SetFocus();
}
BOOL CMainFrame::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)
{
// let the view have first crack at the command
if (m_pLinkView->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
return TRUE;
// otherwise, do default handling
return CFrameWnd::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo);
}
LRESULT CMainFrame::OnTrayNotification(WPARAM wParam, LPARAM lParam)
{
//Delegate all the work back to the default implementation in CTrayNotifyIcon.
m_pTrayIcon.OnTrayNotification(wParam, lParam);
return 0L;
}
void CMainFrame::OnTimer(UINT_PTR nIDEvent)
{
// TODO: Add your message handler code here and/or call default
if (nIDEvent == m_nTimerID)
{
VERIFY(KillTimer(m_nTimerID));
OnLinkRefresh();
m_nTimerID = SetTimer(1, TIMER_INTERVAL, nullptr);
}
CFrameWndEx::OnTimer(nIDEvent);
}
void CMainFrame::OnLinkRefresh()
{
m_pTrayIcon.SetIcon(m_hIcons[0]);
ASSERT_VALID(m_pLinkView);
VERIFY(m_pLinkView->RefreshList());
m_pTrayIcon.SetIcon(m_pLinkView->IsVerified() ? m_hIcons[1] : m_hIcons[2]);
}
void CMainFrame::OnLinkInsert()
{
ASSERT_VALID(m_pLinkView);
VERIFY(m_pLinkView->InsertLink());
VERIFY(m_pLinkView->SaveConfig());
}
void CMainFrame::OnLinkModify()
{
ASSERT_VALID(m_pLinkView);
VERIFY(m_pLinkView->ModifyLink());
VERIFY(m_pLinkView->SaveConfig());
}
void CMainFrame::OnLinkRemove()
{
ASSERT_VALID(m_pLinkView);
VERIFY(m_pLinkView->DeleteLink());
VERIFY(m_pLinkView->SaveConfig());
}
void CMainFrame::OnUpdateModify(CCmdUI* pCmdUI)
{
ASSERT_VALID(m_pLinkView);
pCmdUI->Enable(m_pLinkView->IsSelected());
}
void CMainFrame::OnUpdateRemove(CCmdUI* pCmdUI)
{
ASSERT_VALID(m_pLinkView);
pCmdUI->Enable(m_pLinkView->IsSelected());
}
void CMainFrame::OnShowApplication()
{
// The one and only window has been initialized, so show and update it
ShowWindow(SW_SHOW);
UpdateWindow();
}
void CMainFrame::OnHideApplication()
{
// The one and only window has been initialized, so hide and update it
ShowWindow(SW_HIDE);
UpdateWindow();
}
void CMainFrame::OnStartupApps()
{
HKEY regValue;
TCHAR lpszApplicationBuffer[MAX_PATH + 1] = { 0, };
if (GetModuleFileName(nullptr, lpszApplicationBuffer, MAX_PATH) > 0)
{
// const DWORD nApplicationLength = _tcslen(lpszApplicationBuffer) * sizeof(TCHAR);
if (RegOpenKeyEx(HKEY_CURRENT_USER, _T("Software\\Microsoft\\Windows\\CurrentVersion\\Run"), 0, KEY_ALL_ACCESS, ®Value) == ERROR_SUCCESS)
{
if (RegDeleteValue(regValue, _T("IntelliLink")) == ERROR_SUCCESS)
{
MessageBox(_T("This application has been removed successfully from Startup Apps!"), nullptr, MB_OK | MB_ICONINFORMATION);
}
else
{
std::wstring quoted(_T("\""));
quoted += lpszApplicationBuffer;
quoted += _T("\"");
const size_t length = quoted.length() * sizeof(TCHAR);
if (RegSetValueEx(regValue, _T("IntelliLink"), 0, REG_SZ, (LPBYTE)quoted.c_str(), (DWORD)length) == ERROR_SUCCESS)
{
MessageBox(_T("This application has been added successfully to Startup Apps!"), nullptr, MB_OK | MB_ICONINFORMATION);
}
}
RegCloseKey(regValue);
}
}
}
void CMainFrame::OnWebsiteReview()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://www.website-review.ro/"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnWebmasterTools()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://www.webmaster-tools.ro/"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnTwitter()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://x.com/stefanmihaimoga"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnLinkedin()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://www.linkedin.com/in/stefanmihaimoga/"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnFacebook()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://www.facebook.com/stefanmihaimoga"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnInstagram()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://www.instagram.com/stefanmihaimoga/"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnIssues()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://github.com/mihaimoga/IntelliLink/issues"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnDiscussions()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://github.com/mihaimoga/IntelliLink/discussions"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnWiki()
{
::ShellExecute(GetSafeHwnd(), _T("open"), _T("https://github.com/mihaimoga/IntelliLink/wiki"), nullptr, nullptr, SW_SHOW);
}
void CMainFrame::OnUserManual()
{
CWebBrowserDlg dlgWebBrowser(this);
dlgWebBrowser.DoModal();
}
void CMainFrame::OnCheckForUpdates()
{
CCheckForUpdatesDlg dlgCheckForUpdates(this);
dlgCheckForUpdates.DoModal();
}