Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
110f6e99
Commit
110f6e99
authored
Nov 19, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
credui: Show a balloon tip in the credential dialog if…
credui: Show a balloon tip in the credential dialog if CREDUI_FLAGS_INCORRECT_PASSWORD was specified.
parent
862aaaba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
1 deletion
+91
-1
credui_En.rc
dlls/credui/credui_En.rc
+2
-0
credui_main.c
dlls/credui/credui_main.c
+87
-1
credui_resources.h
dlls/credui/credui_resources.h
+2
-0
No files found.
dlls/credui/credui_En.rc
View file @
110f6e99
...
...
@@ -43,4 +43,6 @@ STRINGTABLE DISCARDABLE
{
IDS_TITLEFORMAT "Connect to %s"
IDS_MESSAGEFORMAT "Connecting to %s"
IDS_INCORRECTPASSWORDTITLE "Logon unsuccessful"
IDS_INCORRECTPASSWORD "Make sure that your user name\nand password are correct."
}
dlls/credui/credui_main.c
View file @
110f6e99
...
...
@@ -129,6 +129,7 @@ struct cred_dialog_params
ULONG
ulPasswordMaxChars
;
BOOL
fSave
;
DWORD
dwFlags
;
HWND
hwndBalloonTip
;
};
static
void
CredDialogFillUsernameCombo
(
HWND
hwndUsername
,
struct
cred_dialog_params
*
params
)
...
...
@@ -177,6 +178,68 @@ static void CredDialogFillUsernameCombo(HWND hwndUsername, struct cred_dialog_pa
CredFree
(
credentials
);
}
static
void
CredDialogShowIncorrectPasswordBalloon
(
HWND
hwndDlg
,
struct
cred_dialog_params
*
params
)
{
TTTOOLINFOW
toolinfo
;
RECT
rcPassword
;
INT
x
;
INT
y
;
WCHAR
wszTitle
[
256
];
WCHAR
wszText
[
256
];
/* user name likely wrong so balloon would be confusing. focus is also
* not set to the password edit box, so more notification would need to be
* handled */
if
(
!
params
->
pszUsername
[
0
])
return
;
if
(
!
LoadStringW
(
hinstCredUI
,
IDS_INCORRECTPASSWORDTITLE
,
wszTitle
,
sizeof
(
wszTitle
)
/
sizeof
(
wszTitle
[
0
])))
{
ERR
(
"failed to load IDS_INCORRECTPASSWORDTITLE
\n
"
);
return
;
}
if
(
!
LoadStringW
(
hinstCredUI
,
IDS_INCORRECTPASSWORD
,
wszText
,
sizeof
(
wszText
)
/
sizeof
(
wszText
[
0
])))
{
ERR
(
"failed to load IDS_INCORRECTPASSWORD
\n
"
);
return
;
}
params
->
hwndBalloonTip
=
CreateWindowExW
(
WS_EX_TOOLWINDOW
,
TOOLTIPS_CLASSW
,
NULL
,
WS_POPUP
|
TTS_NOPREFIX
|
TTS_BALLOON
,
CW_USEDEFAULT
,
CW_USEDEFAULT
,
CW_USEDEFAULT
,
CW_USEDEFAULT
,
hwndDlg
,
NULL
,
hinstCredUI
,
NULL
);
SetWindowPos
(
params
->
hwndBalloonTip
,
HWND_TOPMOST
,
0
,
0
,
0
,
0
,
SWP_NOMOVE
|
SWP_NOSIZE
|
SWP_NOACTIVATE
);
toolinfo
.
cbSize
=
sizeof
(
toolinfo
);
toolinfo
.
uFlags
=
TTF_TRACK
;
toolinfo
.
hwnd
=
hwndDlg
;
toolinfo
.
uId
=
0
;
memset
(
&
toolinfo
.
rect
,
0
,
sizeof
(
toolinfo
.
rect
));
toolinfo
.
hinst
=
NULL
;
toolinfo
.
lpszText
=
wszText
;
toolinfo
.
lParam
=
0
;
toolinfo
.
lpReserved
=
NULL
;
SendMessageW
(
params
->
hwndBalloonTip
,
TTM_ADDTOOLW
,
0
,
(
LPARAM
)
&
toolinfo
);
SendMessageW
(
params
->
hwndBalloonTip
,
TTM_SETTITLEW
,
TTI_ERROR
,
(
LPARAM
)
wszTitle
);
GetWindowRect
(
GetDlgItem
(
hwndDlg
,
IDC_PASSWORD
),
&
rcPassword
);
/* centred vertically and in the right side of the password edit control */
x
=
rcPassword
.
right
-
12
;
y
=
(
rcPassword
.
top
+
rcPassword
.
bottom
)
/
2
;
SendMessageW
(
params
->
hwndBalloonTip
,
TTM_TRACKPOSITION
,
0
,
MAKELONG
(
x
,
y
));
SendMessageW
(
params
->
hwndBalloonTip
,
TTM_TRACKACTIVATE
,
TRUE
,
(
LPARAM
)
&
toolinfo
);
}
static
void
CredDialogHideBalloonTip
(
HWND
hwndDlg
,
struct
cred_dialog_params
*
params
)
{
/* we don't need the balloon tip again, so destroy it */
DestroyWindow
(
params
->
hwndBalloonTip
);
params
->
hwndBalloonTip
=
NULL
;
}
static
BOOL
CredDialogInit
(
HWND
hwndDlg
,
struct
cred_dialog_params
*
params
)
{
HWND
hwndUsername
=
GetDlgItem
(
hwndDlg
,
IDC_USERNAME
);
...
...
@@ -224,6 +287,9 @@ static BOOL CredDialogInit(HWND hwndDlg, struct cred_dialog_params *params)
else
if
(
params
->
fSave
)
CheckDlgButton
(
hwndDlg
,
IDC_SAVE
,
BST_CHECKED
);
if
(
params
->
dwFlags
&
CREDUI_FLAGS_INCORRECT_PASSWORD
)
CredDialogShowIncorrectPasswordBalloon
(
hwndDlg
,
params
);
return
FALSE
;
}
...
...
@@ -300,12 +366,31 @@ static INT_PTR CALLBACK CredDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,
LockSetForegroundWindow
(
LSFW_LOCK
);
return
TRUE
;
case
MAKELONG
(
IDC_PASSWORD
,
EN_KILLFOCUS
):
{
struct
cred_dialog_params
*
params
=
(
struct
cred_dialog_params
*
)
GetWindowLongPtrW
(
hwndDlg
,
DWLP_USER
);
/* the user is no longer typing their password, so allow
* other windows to become foreground ones */
LockSetForegroundWindow
(
LSFW_UNLOCK
);
CredDialogHideBalloonTip
(
hwndDlg
,
params
);
return
TRUE
;
}
case
MAKELONG
(
IDC_PASSWORD
,
EN_CHANGE
):
{
struct
cred_dialog_params
*
params
=
(
struct
cred_dialog_params
*
)
GetWindowLongPtrW
(
hwndDlg
,
DWLP_USER
);
CredDialogHideBalloonTip
(
hwndDlg
,
params
);
return
TRUE
;
}
}
/* fall through */
return
FALSE
;
case
WM_DESTROY
:
{
struct
cred_dialog_params
*
params
=
(
struct
cred_dialog_params
*
)
GetWindowLongPtrW
(
hwndDlg
,
DWLP_USER
);
if
(
params
->
hwndBalloonTip
)
DestroyWindow
(
params
->
hwndBalloonTip
);
return
TRUE
;
}
default:
return
FALSE
;
}
...
...
@@ -360,6 +445,7 @@ DWORD WINAPI CredUIPromptForCredentialsW(PCREDUI_INFOW pUIInfo,
params
.
ulPasswordMaxChars
=
ulPasswordMaxChars
;
params
.
fSave
=
pfSave
?
*
pfSave
:
FALSE
;
params
.
dwFlags
=
dwFlags
;
params
.
hwndBalloonTip
=
NULL
;
ret
=
DialogBoxParamW
(
hinstCredUI
,
MAKEINTRESOURCEW
(
IDD_CREDDIALOG
),
pUIInfo
?
pUIInfo
->
hwndParent
:
NULL
,
...
...
dlls/credui/credui_resources.h
View file @
110f6e99
...
...
@@ -27,3 +27,5 @@
#define IDS_TITLEFORMAT 300
#define IDS_MESSAGEFORMAT 301
#define IDS_INCORRECTPASSWORDTITLE 302
#define IDS_INCORRECTPASSWORD 303
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment