Skip to content

Commit a8c78af

Browse files
committed
Initial
1 parent 8a79577 commit a8c78af

File tree

5 files changed

+55
-46
lines changed

5 files changed

+55
-46
lines changed

QLoader/QLoader.rc

4.14 KB
Binary file not shown.

QLoader/QLoaderDlg.cpp

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,25 @@ class CAboutDlg : public CDialogEx
1919
public:
2020
CAboutDlg() : CDialogEx(IDD_ABOUTBOX) {}
2121
virtual ~CAboutDlg() {};
22-
23-
#ifdef AFX_DESIGN_TIME
22+
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
23+
#ifdef AFX_DESIGN_TIME
2424
enum { IDD = IDD_ABOUTBOX };
25-
#endif
25+
#endif
2626

2727
protected:
2828
DECLARE_MESSAGE_MAP()
2929
};
3030

3131
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
32+
ON_WM_SHOWWINDOW()
3233
END_MESSAGE_MAP()
3334

35+
afx_msg void CAboutDlg::OnShowWindow(BOOL bShow, UINT nStatus)
36+
{
37+
__super::OnShowWindow(bShow, nStatus);
38+
this->GetDlgItem(IDOK)->SetFocus();
39+
}
40+
3441
// CQLoaderDlg dialog
3542

3643
enum log_columns

QLoader/Resource.h

Lines changed: 45 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,45 @@
1-
//{{NO_DEPENDENCIES}}
2-
// Microsoft Visual C++ generated include file.
3-
// Used by QLoader.rc
4-
//
5-
#define IDM_ABOUTBOX 0x0010
6-
#define IDD_ABOUTBOX 100
7-
#define IDS_ABOUTBOX 101
8-
#define IDD_QLOADER_DIALOG 102
9-
#define IDR_MAINFRAME 128
10-
#define IDB_LOG_SMALL 129
11-
#define IDR_EXPORT 130
12-
#define IDC_PE_PATH 1000
13-
#define IDC_PE_DIR 1001
14-
#define IDC_PE_ARG 1002
15-
#define IDC_PE_AUTO 1003
16-
#define IDC_MP_PATH 1004
17-
#define IDC_MP_TREE 1005
18-
#define IDC_LAUNCH 1006
19-
#define IDC_LOG 1007
20-
#define IDC_CLEAR 1008
21-
#define IDC_PE_OPEN 1009
22-
#define IDC_MP_OPEN 1010
23-
#define IDC_PATCH_WHEN 1011
24-
#define IDC_PATCH_WHEN_1 1012
25-
#define IDC_PATCH_WHEN_2 1013
26-
#define IDC_MP_SAVE 1014
27-
#define IDC_EXPORT 1015
28-
#define ID_EXPORT_LNK 32771
29-
#define IDM_EXPORT_URL 32772
30-
#define ID_HTMLHYPERLINK 32773
31-
#define IDM_EXPORT_LNK 32774
32-
#define IDM_EXPORT_HTML 32775
33-
34-
// Next default values for new objects
35-
//
36-
#ifdef APSTUDIO_INVOKED
37-
#ifndef APSTUDIO_READONLY_SYMBOLS
38-
#define _APS_NEXT_RESOURCE_VALUE 131
39-
#define _APS_NEXT_COMMAND_VALUE 32776
40-
#define _APS_NEXT_CONTROL_VALUE 1016
41-
#define _APS_NEXT_SYMED_VALUE 101
42-
#endif
43-
#endif
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by QLoader.rc
4+
//
5+
#define IDM_ABOUTBOX 0x0010
6+
#define IDD_ABOUTBOX 100
7+
#define IDS_ABOUTBOX 101
8+
#define IDD_QLOADER_DIALOG 102
9+
#define IDR_MAINFRAME 128
10+
#define IDB_LOG_SMALL 129
11+
#define IDR_EXPORT 130
12+
#define IDC_PE_PATH 1000
13+
#define IDC_PE_DIR 1001
14+
#define IDC_PE_ARG 1002
15+
#define IDC_PE_AUTO 1003
16+
#define IDC_MP_PATH 1004
17+
#define IDC_MP_TREE 1005
18+
#define IDC_LAUNCH 1006
19+
#define IDC_LOG 1007
20+
#define IDC_CLEAR 1008
21+
#define IDC_PE_OPEN 1009
22+
#define IDC_MP_OPEN 1010
23+
#define IDC_PATCH_WHEN 1011
24+
#define IDC_PATCH_WHEN_1 1012
25+
#define IDC_PATCH_WHEN_2 1013
26+
#define IDC_MP_SAVE 1014
27+
#define IDC_EXPORT 1015
28+
#define IDC_URL_GITHUB_REPO 1016
29+
#define IDC_MY_WEBSITE 1017
30+
#define ID_EXPORT_LNK 32771
31+
#define IDM_EXPORT_URL 32772
32+
#define ID_HTMLHYPERLINK 32773
33+
#define IDM_EXPORT_LNK 32774
34+
#define IDM_EXPORT_HTML 32775
35+
36+
// Next default values for new objects
37+
//
38+
#ifdef APSTUDIO_INVOKED
39+
#ifndef APSTUDIO_READONLY_SYMBOLS
40+
#define _APS_NEXT_RESOURCE_VALUE 131
41+
#define _APS_NEXT_COMMAND_VALUE 32776
42+
#define _APS_NEXT_CONTROL_VALUE 1018
43+
#define _APS_NEXT_SYMED_VALUE 101
44+
#endif
45+
#endif

bin/Win32/QLoader.exe

1 KB
Binary file not shown.

bin/x64/QLoader.exe

512 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)