Add wxSecretStore

Add a new class allowing to store passwords and other sensitive information
using the OS-provided facilities.

Add implementations for all the main platforms, documentation and a new sample
(which contains an ad hoc unit test as the real unit test for this class would
probably be a bad idea as it wouldn't run in non-interactive contexts and
could show OS level dialog boxes if it did).
This commit is contained in:
Vadim Zeitlin
2016-05-29 01:13:44 +02:00
parent 21d90d48ba
commit 675d9d779d
48 changed files with 5288 additions and 68 deletions

View File

@@ -38,7 +38,7 @@ MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
### Targets: ###
all: access animate artprov aui calendar caret clipboard collpane combo config console dataview dialogs dialup display dll dnd docview dragimag drawing erase event except exec font grid help htlbox html image internat ipc joytest keyboard layout listctrl mdi mediaplayer menu minimal nativdlg notebook oleauto opengl ownerdrw popup power preferences printing propgrid regtest render ribbon richtext sashtest scroll shaped sockets sound splash splitter statbar stc svg taborder taskbar text thread toolbar treectrl typetest uiaction validate vscroll webview widgets wizard wrapsizer xrc
all: access animate artprov aui calendar caret clipboard collpane combo config console dataview dialogs dialup display dll dnd docview dragimag drawing erase event except exec font grid help htlbox html image internat ipc joytest keyboard layout listctrl mdi mediaplayer menu minimal nativdlg notebook oleauto opengl ownerdrw popup power preferences printing propgrid regtest render ribbon richtext sashtest scroll secretstore shaped sockets sound splash splitter statbar stc svg taborder taskbar text thread toolbar treectrl typetest uiaction validate vscroll webview widgets wizard wrapsizer xrc
clean:
-if exist .\*.o del .\*.o
@@ -99,6 +99,7 @@ clean:
$(MAKE) -C richtext -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C sashtest -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C scroll -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C secretstore -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C shaped -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C sockets -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C sound -f makefile.gcc $(MAKEARGS) clean
@@ -292,6 +293,9 @@ sashtest:
scroll:
$(MAKE) -C scroll -f makefile.gcc $(MAKEARGS) all
secretstore:
$(MAKE) -C secretstore -f makefile.gcc $(MAKEARGS) all
shaped:
$(MAKE) -C shaped -f makefile.gcc $(MAKEARGS) all
@@ -369,9 +373,9 @@ memcheck:
erase event except exec font grid help htlbox html image internat ipc joytest \
keyboard layout listctrl mdi mediaplayer menu minimal nativdlg notebook oleauto \
opengl ownerdrw popup power preferences printing propgrid regtest render ribbon \
richtext sashtest scroll shaped sockets sound splash splitter statbar stc svg \
taborder taskbar text thread toolbar treectrl typetest uiaction validate vscroll \
webview widgets wizard wrapsizer xrc memcheck
richtext sashtest scroll secretstore shaped sockets sound splash splitter statbar \
stc svg taborder taskbar text thread toolbar treectrl typetest uiaction validate \
vscroll webview widgets wizard wrapsizer xrc memcheck
SHELL := $(COMSPEC)