ppsspp/Windows/InputBox.h

19 lines
654 B
C
Raw Normal View History

2012-11-01 15:19:01 +00:00
#pragma once
2018-03-22 21:14:19 +00:00
#include <string>
#include "Common/CommonWindows.h"
#include "Common/Common.h"
enum class InputBoxFlags {
Default = 0,
Selected = 1,
PasswordMasking = 2,
};
ENUM_CLASS_BITOPS(InputBoxFlags);
// All I/O is in UTF-8
bool InputBox_GetString(HINSTANCE hInst, HWND hParent, const wchar_t *title, const std::string &defaultvalue, std::string &outvalue, InputBoxFlags flags = InputBoxFlags::Default);
bool InputBox_GetHex(HINSTANCE hInst, HWND hParent, const wchar_t *title, u32 defaultvalue, u32 &outvalue);
bool UserPasswordBox_GetStrings(HINSTANCE hInst, HWND hParent, const wchar_t *title, std::string *username, std::string *password);