代码拉取完成,页面将自动刷新
#include "inputscreen.h"
#include "ui_inputscreen.h"
InputScreen::InputScreen(QWidget *parent) :
QWidget(parent),
ui(new Ui::InputScreen)
{
ui->setupUi(this);
ui->Input->setReadOnly(true);
}
InputScreen::~InputScreen()
{
delete ui;
}
void InputScreen::showEvent(QShowEvent *event)
{
//TitleScreen::GetInstance()->Show(this);
}
void InputScreen::SetShowLabel(QString Info,int Level)
{
if(Level == IN_INFO_LEVEL)
{
ui->ShowLabel->setStyleSheet("QLabel{"\
"border-image: url(:/image/Transparent.png);\
background-color: rgba(255, 255, 255,0);\
font: 24pt 'Ubuntu';\
color: rgb(255, 255, 255);};");
}
else if(Level == IN_ERROR_LEVEL)
{
ui->ShowLabel->setStyleSheet("QLabel{"\
"border-image: url(:/image/Transparent.png);\
background-color: rgba(255, 255, 255,0);\
font: 24pt 'Ubuntu';\
color: rgb(204, 0, 0);};");
}
ui->ShowLabel->setText(Info);
}
void InputScreen::SetInputPasswordFormat()
{
ui->Input->setEchoMode(QLineEdit::Password);
}
void InputScreen::Hide()
{
ui->ShowLabel->clear();
ui->Input->clear();
hide();
}
void InputScreen::ClearInput()
{
ui->Input->clear();
}
void InputScreen::on_ReFill_clicked()
{
ui->Input->clear();
}
void InputScreen::on_Ok_clicked()
{
emit InputComplete(ui->Input->text());
}
void InputScreen::on_Cancle_clicked()
{
Hide();
emit ScreenClose();
}
void InputScreen::on_K0_clicked()
{
ui->Input->insert("0");
}
void InputScreen::on_K1_clicked()
{
ui->Input->insert("1");
}
void InputScreen::on_K2_clicked()
{
ui->Input->insert("2");
}
void InputScreen::on_K3_clicked()
{
ui->Input->insert("3");
}
void InputScreen::on_K4_clicked()
{
ui->Input->insert("4");
}
void InputScreen::on_K5_clicked()
{
ui->Input->insert("5");
}
void InputScreen::on_K6_clicked()
{
ui->Input->insert("6");
}
void InputScreen::on_K7_clicked()
{
ui->Input->insert("7");
}
void InputScreen::on_K8_clicked()
{
ui->Input->insert("8");
}
void InputScreen::on_K9_clicked()
{
ui->Input->insert("9");
}
void InputScreen::on_Kp_clicked()
{
ui->Input->insert(".");
}
void InputScreen::on_Kc_clicked()
{
QString V = ui->Input->text();
if(!V.isEmpty() && V.at(0) == '-')
{
V.remove(0,1);
ui->Input->clear();
ui->Input->setText(V);
}
else if(!V.isEmpty() && V.at(0) != '-')
{
V.push_front('-');
ui->Input->clear();
ui->Input->setText(V);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。