1 Star 0 Fork 0

qinxude/rk3568ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
inputscreen.cpp 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
qinxude 提交于 2024-09-03 09:38 . 3568ui base
#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);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qinxude/rk3568ui.git
[email protected]:qinxude/rk3568ui.git
qinxude
rk3568ui
rk3568ui
master

搜索帮助