Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
vic4key committed Jul 3, 2022
1 parent 8a79577 commit a8c78af
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 46 deletions.
Binary file modified QLoader/QLoader.rc
Binary file not shown.
13 changes: 10 additions & 3 deletions QLoader/QLoaderDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,25 @@ class CAboutDlg : public CDialogEx
public:
CAboutDlg() : CDialogEx(IDD_ABOUTBOX) {}
virtual ~CAboutDlg() {};

#ifdef AFX_DESIGN_TIME
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_ABOUTBOX };
#endif
#endif

protected:
DECLARE_MESSAGE_MAP()
};

BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
ON_WM_SHOWWINDOW()
END_MESSAGE_MAP()

afx_msg void CAboutDlg::OnShowWindow(BOOL bShow, UINT nStatus)
{
__super::OnShowWindow(bShow, nStatus);
this->GetDlgItem(IDOK)->SetFocus();
}

// CQLoaderDlg dialog

enum log_columns
Expand Down
88 changes: 45 additions & 43 deletions QLoader/Resource.h
Original file line number Diff line number Diff line change
@@ -1,43 +1,45 @@
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by QLoader.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#define IDS_ABOUTBOX 101
#define IDD_QLOADER_DIALOG 102
#define IDR_MAINFRAME 128
#define IDB_LOG_SMALL 129
#define IDR_EXPORT 130
#define IDC_PE_PATH 1000
#define IDC_PE_DIR 1001
#define IDC_PE_ARG 1002
#define IDC_PE_AUTO 1003
#define IDC_MP_PATH 1004
#define IDC_MP_TREE 1005
#define IDC_LAUNCH 1006
#define IDC_LOG 1007
#define IDC_CLEAR 1008
#define IDC_PE_OPEN 1009
#define IDC_MP_OPEN 1010
#define IDC_PATCH_WHEN 1011
#define IDC_PATCH_WHEN_1 1012
#define IDC_PATCH_WHEN_2 1013
#define IDC_MP_SAVE 1014
#define IDC_EXPORT 1015
#define ID_EXPORT_LNK 32771
#define IDM_EXPORT_URL 32772
#define ID_HTMLHYPERLINK 32773
#define IDM_EXPORT_LNK 32774
#define IDM_EXPORT_HTML 32775

// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 131
#define _APS_NEXT_COMMAND_VALUE 32776
#define _APS_NEXT_CONTROL_VALUE 1016
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by QLoader.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#define IDS_ABOUTBOX 101
#define IDD_QLOADER_DIALOG 102
#define IDR_MAINFRAME 128
#define IDB_LOG_SMALL 129
#define IDR_EXPORT 130
#define IDC_PE_PATH 1000
#define IDC_PE_DIR 1001
#define IDC_PE_ARG 1002
#define IDC_PE_AUTO 1003
#define IDC_MP_PATH 1004
#define IDC_MP_TREE 1005
#define IDC_LAUNCH 1006
#define IDC_LOG 1007
#define IDC_CLEAR 1008
#define IDC_PE_OPEN 1009
#define IDC_MP_OPEN 1010
#define IDC_PATCH_WHEN 1011
#define IDC_PATCH_WHEN_1 1012
#define IDC_PATCH_WHEN_2 1013
#define IDC_MP_SAVE 1014
#define IDC_EXPORT 1015
#define IDC_URL_GITHUB_REPO 1016
#define IDC_MY_WEBSITE 1017
#define ID_EXPORT_LNK 32771
#define IDM_EXPORT_URL 32772
#define ID_HTMLHYPERLINK 32773
#define IDM_EXPORT_LNK 32774
#define IDM_EXPORT_HTML 32775

// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 131
#define _APS_NEXT_COMMAND_VALUE 32776
#define _APS_NEXT_CONTROL_VALUE 1018
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
Binary file modified bin/Win32/QLoader.exe
Binary file not shown.
Binary file modified bin/x64/QLoader.exe
Binary file not shown.

0 comments on commit a8c78af

Please sign in to comment.