diff options
| author | Joursoir <chat@joursoir.net> | 2021-12-11 20:56:31 +0300 | 
|---|---|---|
| committer | Joursoir <chat@joursoir.net> | 2021-12-11 20:56:31 +0300 | 
| commit | dac697aebc8a5c680daf8bf35ce350ae994d03e4 (patch) | |
| tree | edd96831dc59f440c172b1ab323086b9b82985cd /Library/UefiShellUfmCommandLib/dialog-box.c | |
| parent | 5e0ac5e316a3d33610b4681f0d4f246281a90bce (diff) | |
| download | ufm-dac697aebc8a5c680daf8bf35ce350ae994d03e4.tar.gz ufm-dac697aebc8a5c680daf8bf35ce350ae994d03e4.tar.bz2 ufm-dac697aebc8a5c680daf8bf35ce350ae994d03e4.zip | |
implement the dialog box
Diffstat (limited to 'Library/UefiShellUfmCommandLib/dialog-box.c')
| -rw-r--r-- | Library/UefiShellUfmCommandLib/dialog-box.c | 101 | 
1 files changed, 101 insertions, 0 deletions
| diff --git a/Library/UefiShellUfmCommandLib/dialog-box.c b/Library/UefiShellUfmCommandLib/dialog-box.c new file mode 100644 index 0000000..0da3fae --- /dev/null +++ b/Library/UefiShellUfmCommandLib/dialog-box.c @@ -0,0 +1,101 @@ +#include <Library/UefiLib.h> +#include <Library/DebugLib.h> +#include <Library/MemoryAllocationLib.h> + +#include "dialog-box.h" + +#define COLOR_WHITE_CYAN (EFI_TEXT_ATTR(EFI_WHITE, EFI_CYAN)) +#define COLOR_WHITE_LIGHTGRAY (EFI_TEXT_ATTR(EFI_WHITE, EFI_LIGHTGRAY)) + +CONST CHAR16 ok_button_msg[] = L"[ OK ]"; +CONST CHAR16 cl_button_msg[] = L"[ Cancel ]"; + +struct dbox_ctx *dbox_alloc(struct screen *scr, CONST CHAR16 *title, +	CONST CHAR16 *label, BOOLEAN wid_input, CONST CHAR16 *input_text) +{ +	struct dbox_ctx *dbox; +	UINTN y; +	CONST UINTN dbox_height = wid_input ? 6 : 5; +	CONST UINTN dbox_width = 52; // why 52? +	CONST UINTN len_ok = StrLen(ok_button_msg), len_cl = StrLen(cl_button_msg); +	UINTN start_x, start_y, start_ok; +	BOOLEAN res = FALSE; + +	ASSERT(scr != NULL); + +	dbox = AllocateZeroPool(sizeof(struct dbox_ctx)); +	if(!dbox) +		return NULL; + +	do { // START DO + +	start_x = (scr->columns - dbox_width) / 2; +	start_y = (scr->lines - dbox_height) / 2; +	dbox->wbg = newwin(scr, dbox_width, dbox_height, start_x, start_y); +	if(!dbox->wbg) +		break; +	wborder(dbox->wbg, +		BOXDRAW_VERTICAL, BOXDRAW_VERTICAL, BOXDRAW_HORIZONTAL, BOXDRAW_HORIZONTAL, +		BOXDRAW_DOWN_RIGHT, BOXDRAW_DOWN_LEFT, BOXDRAW_UP_RIGHT, BOXDRAW_UP_LEFT +	); +	mvwprintf(dbox->wbg, 1 + ((dbox_width - StrLen(title)) / 2), 0, L"%s", title); +	mvwprintf(dbox->wbg, 2, 1, L"%s", label); +	whline(dbox->wbg, 1, dbox_height - 3, BOXDRAW_HORIZONTAL, -1, dbox_width - 2); + +	if(wid_input) { +		dbox->in = input_alloc(scr, start_x + 2, start_y + 2, +			dbox_width - 4, COLOR_WHITE_CYAN, input_text); +		if(!dbox->in) +			break; +	} + +	start_ok = start_x + 1 + ((dbox_width - len_ok - 1 - len_cl) / 2); +	dbox->wok = newwin(scr, len_ok, 1, start_ok, start_y + dbox_height - 2); +	if(!dbox->wok) +		break; +	mvwprintf(dbox->wok, 0, 0, ok_button_msg); + +	dbox->wcl = newwin(scr, len_cl, 1, start_ok + 1 + len_ok, start_y + dbox_height - 2); +	if(!dbox->wcl) +		break; +	mvwprintf(dbox->wcl, 0, 0, cl_button_msg); + +	for(y = 0; y < dbox_height; y++) +		whline(dbox->wbg, 0, y, 0, COLOR_WHITE_LIGHTGRAY, 0); + +	res = TRUE; + +	} while(0); // END DO + +	if(!res) { +		dbox_release(dbox); +		return NULL; +	} + +	return dbox; +} + +VOID dbox_release(struct dbox_ctx *dbox) +{ +	ASSERT(dbox != NULL); + +	if(dbox->wbg) +		delwin(dbox->wbg); +	if(dbox->in) +		input_release(dbox->in); +	if(dbox->wok) +		delwin(dbox->wok); +	if(dbox->wcl) +		delwin(dbox->wcl); + +	FreePool(dbox); +} + +VOID dbox_refresh(struct dbox_ctx *dbox) +{ +	wrefresh(dbox->wbg); +	if(dbox->in) +		input_update(dbox->in); +	wrefresh(dbox->wok); +	wrefresh(dbox->wcl); +} | 
