mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-23 12:53:09 +00:00
79ad905e05
Excluding 3rd party files.
113 lines
3 KiB
C++
113 lines
3 KiB
C++
/*
|
|
===========================================================================
|
|
|
|
Doom 3 GPL Source Code
|
|
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
|
|
|
|
This file is part of the Doom 3 GPL Source Code ("Doom 3 Source Code").
|
|
|
|
Doom 3 Source Code 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Doom 3 Source Code 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 Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
===========================================================================
|
|
*/
|
|
|
|
#include "../../idlib/precompiled.h"
|
|
#pragma hdrstop
|
|
|
|
#include "../../sys/win32/rc/guied_resource.h"
|
|
|
|
#include "GEApp.h"
|
|
|
|
typedef struct
|
|
{
|
|
const char* mFilename;
|
|
idStr* mComment;
|
|
|
|
} GECHECKINDLG;
|
|
|
|
/*
|
|
================
|
|
GECheckInDlg_GeneralProc
|
|
|
|
Dialog procedure for the check in dialog
|
|
================
|
|
*/
|
|
static INT_PTR CALLBACK GECheckInDlg_GeneralProc ( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
|
|
{
|
|
GECHECKINDLG* dlg = (GECHECKINDLG*) GetWindowLong ( hwnd, GWL_USERDATA );
|
|
|
|
switch ( msg )
|
|
{
|
|
case WM_INITDIALOG:
|
|
SetWindowLong ( hwnd, GWL_USERDATA, lParam );
|
|
dlg = (GECHECKINDLG*) lParam;
|
|
|
|
SetWindowText ( GetDlgItem ( hwnd, IDC_GUIED_FILENAME ), dlg->mFilename );
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
switch ( LOWORD ( wParam ) )
|
|
{
|
|
case IDOK:
|
|
{
|
|
char* temp;
|
|
int tempsize;
|
|
|
|
tempsize = GetWindowTextLength ( GetDlgItem ( hwnd, IDC_GUIED_COMMENT ) );
|
|
temp = new char [ tempsize + 2 ];
|
|
GetWindowText ( GetDlgItem ( hwnd, IDC_GUIED_COMMENT ), temp, tempsize + 1 );
|
|
|
|
*dlg->mComment = temp;
|
|
|
|
delete[] temp;
|
|
|
|
EndDialog ( hwnd, 1 );
|
|
break;
|
|
}
|
|
|
|
case IDCANCEL:
|
|
EndDialog ( hwnd, 0 );
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/*
|
|
================
|
|
GECheckInDlg_DoModal
|
|
|
|
Starts the check in dialog
|
|
================
|
|
*/
|
|
bool GECheckInDlg_DoModal ( HWND parent, const char* filename, idStr* comment )
|
|
{
|
|
GECHECKINDLG dlg;
|
|
|
|
dlg.mComment = comment;
|
|
dlg.mFilename = filename;
|
|
|
|
if ( !DialogBoxParam ( gApp.GetInstance(), MAKEINTRESOURCE(IDD_GUIED_CHECKIN), parent, GECheckInDlg_GeneralProc, (LPARAM) &dlg ) )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|