[GSoC Uni_] Sign-In Dialog fixed. Removed debug code in http_connector.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/uni@12973 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
unitraxx 2013-06-25 00:08:03 +00:00
parent 7e36035228
commit 18828d5668
3 changed files with 23 additions and 23 deletions

View File

@ -5,30 +5,33 @@
<header id="title" width="96%" proportion="2" text_align="center" word_wrap="true"
I18N="In the login dialog' dialog" text="Sign in"/>
<spacer proportion="2">
<spacer height="50" width="50">
<div width="95%" proportion="3" layout="horizontal-row" >
<label proportion="1" text_align="center" I18N="In the login form" text="Username"/>
<textbox proportion="2" id="username" I18N="In the login dialog"/>
</div>
<div width="80%" align="center" layout="vertical-row" proportion="4">
<div width="100%" height="fit" layout="horizontal-row" >
<label proportion="1" text_align="left" I18N="In the login form" text="Username"/>
<textbox proportion="2" id="username" I18N="In the login dialog"/>
</div>
<spacer height="20" width="20">
<div width="100%" height="fit" layout="horizontal-row" >
<label proportion="1" text_align="left" I18N="In the login form" text="Password"/>
<textbox proportion="2" id="password" I18N="In the login dialog"/>
</div>
</div>
<spacer proportion="1">
<div width="95%" proportion="3" layout="horizontal-row" >
<label proportion="1" text_align="center" I18N="In the login form" text="Password"/>
<textbox proportion="2" id="password" I18N="In the login dialog"/>
</div>
<label id="info" proportion="1" width="96%" text_align="center" word_wrap="true"
<label id="info" proportion="2" width="90%" align="center" text_align="center" word_wrap="true"
I18N="In the login dialog' dialog" text=""/>
<spacer proportion="1">
<spacer height="20" width="50">
<div id="options" width="fit" proportion="3" align="center" layout="horizontal-row">
<button id="signin" height="100%" proportion="4" I18N="In the login dialog" text="Sign In"/>
<spacer proportion="1" height="100%">
<button id="cancel" height="100%" proportion="4" I18N="In the login dialog" text="Cancel"/>
<div id="options" width="fit" height="fit" align="center" layout="horizontal-row">
<button id="signin" height="100%" align="center" width="fit" I18N="In the login dialog" text="Sign In"/>
<spacer height="50" width="50">
<button id="signup" height="100%" align="center" width="fit" I18N="In the login dialog" text="Register"/>
<spacer height="50" width="50">
<button id="cancel" height="100%" align="center" width="fit" I18N="In the login dialog" text="Cancel"/>
</div>

View File

@ -48,16 +48,13 @@ class HTTPConnector
//Setting parameters to be send with the next request
void setParameter(const std::string & name, const std::string &value){
printf("template3");
m_parameters[name] = value;
};
void setParameter(const std::string & name, const irr::core::stringw &value){
printf("template2");
m_parameters[name] = irr::core::stringc(value.c_str()).c_str();
}
template <typename T>
void setParameter(const std::string & name, const T& value){
printf("template1");
m_parameters[name] = StringUtils::toString(value);
}

View File

@ -119,7 +119,7 @@ void OnlineScreen::eventCallback(Widget* widget, const std::string& name,
if (selection == "login")
{
new LoginDialog(0.8f, 0.7f);
new LoginDialog(0.6f, 0.7f);
}
} // eventCallback