Add UI for entering pattern for device decryption

Change-Id: Ia2d3268a96423e9ca3846500c57e674c4f8fa60b
Signed-off-by: Vojtech Bocek <vbocek@gmail.com>
This commit is contained in:
Vojtech Bocek
2015-03-05 23:21:49 +01:00
committed by Ethan Yonker
parent 30fa335a85
commit 7e11ac5d3c
14 changed files with 536 additions and 1 deletions
+7
View File
@@ -445,6 +445,13 @@ bool Page::ProcessNode(xml_node<>* page, std::vector<xml_node<>*> *templates /*
mRenders.push_back(element);
mActions.push_back(element);
}
else if (type == "patternpassword")
{
GUIPatternPassword* element = new GUIPatternPassword(child);
mObjects.push_back(element);
mRenders.push_back(element);
mActions.push_back(element);
}
else if (type == "template")
{
if (!templates || !child->first_attribute("name"))