forked from MicrosoftEdge/WebView2Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPermissionDialog.cpp
84 lines (74 loc) · 3 KB
/
PermissionDialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright (C) Microsoft Corporation. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "stdafx.h"
#include "PermissionDialog.h"
#include "App.h"
#include "ScenarioPermissionManagement.h"
#include "resource.h"
static INT_PTR CALLBACK DlgProcStatic(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
auto self = (PermissionDialog*)GetWindowLongPtr(hDlg, GWLP_USERDATA);
switch (message)
{
case WM_INITDIALOG:
{
self = (PermissionDialog*)lParam;
SetWindowLongPtr(hDlg, GWLP_USERDATA, (LONG_PTR)self);
HWND hwndList = GetDlgItem(hDlg, IDC_PERMISSION_KIND);
for (COREWEBVIEW2_PERMISSION_KIND kind_enum : self->permissionKinds)
{
int pos = (int)SendMessage(
hwndList, CB_ADDSTRING, 0, (LPARAM)PermissionKindToString(kind_enum).c_str());
SendMessage(hwndList, CB_SETITEMDATA, pos, (LPARAM)kind_enum);
}
hwndList = GetDlgItem(hDlg, IDC_PERMISSION_STATE);
for (COREWEBVIEW2_PERMISSION_STATE state_enum : self->permissionStates)
{
int pos = (int)SendMessage(
hwndList, CB_ADDSTRING, 0, (LPARAM)PermissionStateToString(state_enum).c_str());
SendMessage(hwndList, CB_SETITEMDATA, pos, (LPARAM)state_enum);
}
return (INT_PTR)TRUE;
}
case WM_COMMAND:
{
if (LOWORD(wParam) == IDOK)
{
int length = GetWindowTextLength(GetDlgItem(hDlg, IDC_EDIT_PERMISSION_ORIGIN));
wchar_t origin[MAX_PATH] = {};
GetDlgItemText(hDlg, IDC_EDIT_PERMISSION_ORIGIN, origin, length + 1);
self->origin = origin;
HWND hwndList = GetDlgItem(hDlg, IDC_PERMISSION_KIND);
int index = (int)SendMessage(hwndList, CB_GETCURSEL, 0, 0);
COREWEBVIEW2_PERMISSION_KIND kind =
(COREWEBVIEW2_PERMISSION_KIND)SendMessage(hwndList, CB_GETITEMDATA, index, 0);
self->kind = kind;
hwndList = GetDlgItem(hDlg, IDC_PERMISSION_STATE);
index = (int)SendMessage(hwndList, CB_GETCURSEL, 0, 0);
COREWEBVIEW2_PERMISSION_STATE state =
(COREWEBVIEW2_PERMISSION_STATE)SendMessage(hwndList, CB_GETITEMDATA, index, 0);
self->state = state;
self->confirmed = true;
}
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
{
EndDialog(hDlg, LOWORD(wParam));
return (INT_PTR)TRUE;
}
break;
}
case WM_NCDESTROY:
SetWindowLongPtr(hDlg, GWLP_USERDATA, NULL);
return (INT_PTR)TRUE;
}
return (INT_PTR)FALSE;
}
PermissionDialog::PermissionDialog(
HWND parent, std::vector<COREWEBVIEW2_PERMISSION_KIND> kinds,
std::vector<COREWEBVIEW2_PERMISSION_STATE> states)
: permissionKinds(kinds), permissionStates(states)
{
DialogBoxParam(
g_hInstance, MAKEINTRESOURCE(IDD_SET_PERMISSION), parent, DlgProcStatic, (LPARAM)this);
}