Alternate means of trapping the SetFocus that blows up setting focus to the license page... suggested by KiCHiK
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@940 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
0cfe9dcb73
commit
983adbcbad
1 changed files with 12 additions and 6 deletions
|
@ -38,6 +38,8 @@
|
||||||
#define LB_ICONWIDTH 20
|
#define LB_ICONWIDTH 20
|
||||||
#define LB_ICONHEIGHT 20
|
#define LB_ICONHEIGHT 20
|
||||||
|
|
||||||
|
static BOOL gDontFookWithFocus = FALSE;
|
||||||
|
|
||||||
// Added by Amir Szekely 3rd August 2002
|
// Added by Amir Szekely 3rd August 2002
|
||||||
common_strings *common_strings_tables;
|
common_strings *common_strings_tables;
|
||||||
common_strings *cur_common_strings_table;
|
common_strings *cur_common_strings_table;
|
||||||
|
@ -555,6 +557,7 @@ static BOOL CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l
|
||||||
if (m_page < 0 || m_page > g_max_page)
|
if (m_page < 0 || m_page > g_max_page)
|
||||||
{
|
{
|
||||||
EndDialog(hwndDlg,0);
|
EndDialog(hwndDlg,0);
|
||||||
|
gDontFookWithFocus = FALSE;
|
||||||
}
|
}
|
||||||
else if (!m_curwnd)
|
else if (!m_curwnd)
|
||||||
{
|
{
|
||||||
|
@ -599,12 +602,8 @@ static BOOL CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l
|
||||||
//XGE 5th September 2002 - Do *not* move the focus to the OK button if we are
|
//XGE 5th September 2002 - Do *not* move the focus to the OK button if we are
|
||||||
//on the license page, instead we want the focus left alone because in
|
//on the license page, instead we want the focus left alone because in
|
||||||
//WM_INITDIALOG it is given to the richedit control.
|
//WM_INITDIALOG it is given to the richedit control.
|
||||||
#ifdef NSIS_CONFIG_LICENSEPAGE
|
if (!gDontFookWithFocus)
|
||||||
if (m_page != 0)
|
|
||||||
SetFocus(GetDlgItem(hwndDlg,IDOK));
|
SetFocus(GetDlgItem(hwndDlg,IDOK));
|
||||||
#else
|
|
||||||
SetFocus(GetDlgItem(hwndDlg,IDOK));
|
|
||||||
#endif
|
|
||||||
//XGE End
|
//XGE End
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -633,6 +632,7 @@ static BOOL CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l
|
||||||
ExecuteCodeSegment(g_inst_entry,g_inst_cmnheader->code_onInstFailed,NULL);
|
ExecuteCodeSegment(g_inst_entry,g_inst_cmnheader->code_onInstFailed,NULL);
|
||||||
#endif//NSIS_SUPPORT_CODECALLBACKS
|
#endif//NSIS_SUPPORT_CODECALLBACKS
|
||||||
EndDialog(hwndDlg,2);
|
EndDialog(hwndDlg,2);
|
||||||
|
gDontFookWithFocus = FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -641,6 +641,7 @@ static BOOL CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l
|
||||||
#endif//NSIS_SUPPORT_CODECALLBACKS
|
#endif//NSIS_SUPPORT_CODECALLBACKS
|
||||||
{
|
{
|
||||||
EndDialog(hwndDlg,1);
|
EndDialog(hwndDlg,1);
|
||||||
|
gDontFookWithFocus = FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -681,6 +682,7 @@ static BOOL CALLBACK LicenseProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM
|
||||||
SendMessage(hwLicense,EM_STREAMIN,(((char*)es.dwCookie)[0]=='{')?SF_RTF:SF_TEXT,(LPARAM)&es);
|
SendMessage(hwLicense,EM_STREAMIN,(((char*)es.dwCookie)[0]=='{')?SF_RTF:SF_TEXT,(LPARAM)&es);
|
||||||
SetUITextFromLang(hwndDlg,IDC_INTROTEXT,g_inst_header->common.intro_text_id,LANGID_LICENSE_TEXT);
|
SetUITextFromLang(hwndDlg,IDC_INTROTEXT,g_inst_header->common.intro_text_id,LANGID_LICENSE_TEXT);
|
||||||
//XGE 5th September 2002 - place the initial focus in the richedit control
|
//XGE 5th September 2002 - place the initial focus in the richedit control
|
||||||
|
gDontFookWithFocus = TRUE;
|
||||||
SetFocus(hwLicense);
|
SetFocus(hwLicense);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
//End Xge
|
//End Xge
|
||||||
|
@ -1405,7 +1407,11 @@ static BOOL CALLBACK InstProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
|
||||||
}
|
}
|
||||||
if (uMsg == WM_NOTIFY_INSTPROC_DONE)
|
if (uMsg == WM_NOTIFY_INSTPROC_DONE)
|
||||||
{
|
{
|
||||||
if (g_quit_flag) EndDialog(g_hwnd,1);
|
if (g_quit_flag)
|
||||||
|
{
|
||||||
|
EndDialog(g_hwnd,1);
|
||||||
|
gDontFookWithFocus = FALSE;
|
||||||
|
}
|
||||||
else if (!wParam)
|
else if (!wParam)
|
||||||
{
|
{
|
||||||
HWND h=GetDlgItem(g_hwnd,IDOK);
|
HWND h=GetDlgItem(g_hwnd,IDOK);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue