当前位置: 首页 > news >正文

幼儿园网站制作代码比优化更好的词是

幼儿园网站制作代码,比优化更好的词是,公司企业网站的选择,什么公司需要网站建设本文实例为大家分享了Qt自定义一个密码器控件的简单实现代码,供大家参考,具体内容如下 实现构思: 密码器的功能可以看成是计算器和登陆界面的组合,所以在实现功能的过程中借鉴了大神的计算器的实现代码和登陆界面实现的代码。 …

本文实例为大家分享了Qt自定义一个密码器控件的简单实现代码,供大家参考,具体内容如下

实现构思:

密码器的功能可以看成是计算器和登陆界面的组合,所以在实现功能的过程中借鉴了大神的计算器的实现代码和登陆界面实现的代码。

实现的效果:

关于密码器控件的不足:

窗口的标题栏不够漂亮,但是由于对时间长度和任务进度的权衡,下次一定进行重绘。

代码思路:

由于我司不用样式表,所以背景由贴图函数完成。在widget中添加按钮控件和文本编辑控件。使用布局函数进行布局,在加上一些简单的逻辑处理功能即可。

首先创建一个工程文件,添加新文件,选择qt 设计师界面类,如下:

进入创建的ui界面后,添加控件进行布局,单一的使用了珊格布局,如下:

在自定义控件的布局中遇到了一些与布局相关的问题:

问题1:如何改变布局内控件的大小? ui中修改方式如下,纯代码实现也可以去帮助手册中查找相同的接口函数。

问题2:布局中控件的位置如何进行更改?

?

1

2

*ui->gridLayout->setContentsMargins(QMargins(10,60,0,0));

ui->gridLayout->setVerticalSpacing(10);*

具体size,自行可以调整到比较合适的位置。

源码实现:

calculaterform.h

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

#define CALCULATERFORM_H

#include "calacutorbutton.h"

#include <QWidget>

#include <QLineEdit>

namespace Ui {

class CalculaterForm;

}

class CalculaterForm : public QWidget

{

? ? Q_OBJECT

public:

? ? explicit CalculaterForm(QWidget *parent = nullptr);

? ? ~CalculaterForm();

? ? ?void ?addLineEdit();

? ? ?void addBackImg();//可以进行提供一个背景图片

private slots:

? ? void on_pushButton_clicked(bool checked);

? ? void on_pushButton_2_clicked(bool checked);

? ? void on_pushButton_3_clicked(bool checked);

? ? void on_pushButton_4_clicked(bool checked);

? ? void on_pushButton_5_clicked(bool checked);

? ? void on_pushButton_6_clicked(bool checked);

? ? void on_pushButton_7_clicked(bool checked);

? ? void on_pushButton_8_clicked(bool checked);

? ? void on_pushButton_9_clicked(bool checked);

? ? void on_pushButton_10_clicked(bool checked);

? ? void on_pushButton_11_clicked(bool checked);

? ? void on_pushButton_12_clicked(bool checked);

? ? void on_pushButton_13_clicked(bool checked);

? ? void on_pushButton_15_clicked(bool checked);

? ? void on_pushButton_14_clicked(bool checked);

private:

? ? Ui::CalculaterForm *ui;

? ? float mNum1,mNum2,mResult;

? ? char mSign;

? ? int mMark;

? ? QString mKeyStr = "0000";//密码字符串

? ? QString S;

? ? QLineEdit *mLineEdit;

};

#endif // CALCULATERFORM_H

calculaterform.cpp

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

#include "calculaterform.h"

#include "ui_calculaterform.h"

#include <QLineEdit>

#include <QDebug>

#include <QMessageBox>

CalculaterForm::CalculaterForm(QWidget *parent) :

? ? QWidget(parent),

? ? ui(new Ui::CalculaterForm)

{

? ? ui->setupUi(this);

? ? mNum1 = 0.0;

? ? mNum2 = 0.0;

? ? mResult = 0.0;

? ? S="";

? ? mMark=1;

? ? ui->pushButton_13->setMyIcon("/home/rabbitchenc/Image/dialog_cancel.png");

? ? ui->pushButton_14->setMyIcon("/home/rabbitchenc/Image/ime_icon_del.png");

? ? ui->pushButton_15->setMyIcon("/home/rabbitchenc/Image/dialog_ok.png");

? ? mLineEdit = new QLineEdit(this);

? ? setFixedSize(width(),height());

? ? ui->gridLayout->setContentsMargins(QMargins(10,60,0,0));

? ? ui->gridLayout->setVerticalSpacing(10);

? ? addBackImg();

? ? addLineEdit();

? ? ui->pushButton_10->setEnabled(false);

? ? ui->pushButton_12->setEnabled(false);

}

//添加文本编辑

void ?CalculaterForm::addLineEdit()

{

? ? if(mLineEdit != nullptr){

? ? ? ? mLineEdit->resize(width(),40);

? ? ? ? mLineEdit->setStyleSheet("background:transparent;border-width:0;border-style:outset");

? ? ? ? mLineEdit->setAlignment(Qt::AlignHCenter);

? ? ? ? mLineEdit->setEchoMode(QLineEdit::Password);

? ? }

}

//添加背景图片

void CalculaterForm::addBackImg()

{

? ? QString filename = "/home/rabbitchenc/Image/ime_bg.png";

? ? QPixmap pixmap(filename);

? ? QPalette pal;

? ? pixmap = pixmap.scaled(width(),height());

? ? pal.setBrush(QPalette::Window,QBrush(pixmap));

? ? setPalette(pal);

}

CalculaterForm::~CalculaterForm()

{

? ? delete ui;

}

void CalculaterForm::on_pushButton_clicked(bool checked)

{

? ? S += "1";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_2_clicked(bool checked)

{

? ? S += "2";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_3_clicked(bool checked)

{

? ? S += "3";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_4_clicked(bool checked)

{

? ? S += "4";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_5_clicked(bool checked)

{

? ? S += "5";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_6_clicked(bool checked)

{

? ? S += "6";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_7_clicked(bool checked)

{

? ? S += "7";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_8_clicked(bool checked)

{

? ? S += "8";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_9_clicked(bool checked)

{

? ? S += "9";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_10_clicked(bool checked)

{

}

void CalculaterForm::on_pushButton_11_clicked(bool checked)

{

? ? S += "0";

? ? mLineEdit->setText(S);

}

void CalculaterForm::on_pushButton_12_clicked(bool checked)

{

}

void CalculaterForm::on_pushButton_13_clicked(bool checked)

{

? ? this->close();

}

void CalculaterForm::on_pushButton_15_clicked(bool checked)

{

? ? if(S == mKeyStr)

? ? {

? ? ? ? qDebug() << "right";

? ? ? ? this->close();

? ? }else{

? ? ? ? qDebug() << "false";

? ? ? ? QMessageBox *messageBox = new QMessageBox(QMessageBox::Warning,"错误提示","密码错误");

? ? ? ? messageBox->show();

? ? }

}

void CalculaterForm::on_pushButton_14_clicked(bool checked)

{

? ? S = S.left(S.length() - 1);

? ? mLineEdit->setText(S);

}

自定义的按钮源码:
calacutorbutton.h

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

#ifndef CALACUTORBUTTON_H

#define CALACUTORBUTTON_H

#include <QPushButton>

class CalacutorButton: public QPushButton

{

? ? Q_OBJECT

public:

? ? explicit CalacutorButton(QWidget *parent = nullptr);

? ? ~CalacutorButton();

? ? void setText(const QString&text);

? ? void setMyIcon(const QString&icon);

? ? void setImageName(const QString&img);

? ? void setPressImg(const QString&img);

protected:

? ? void paintEvent(QPaintEvent *event);

? ? void drawText(QPainter *painter);

? ? void drawImage(QPainter*painter);

? ? void drawIcon(QPainter*painter);

? ? QPixmap* ninePatch(QString picName,double iHorzSplit,double iVertSplit, double DstWidth, double DstHeight);

? ? QPixmap generatePixmap(const QPixmap& img_in, int radius1,int radius2);

private:

? ? QString ?mFileName;

? ? QString mPressImgName;

? ? QString mNormalImgName;

? ? QString mFocusImgName;

? ? QString mDisableName;

? ? QString mText;

? ? QString mIcon;

? ? int mWidth;

? ? int mHeight;

? ? bool pressed;

};

#endif // CALACUTORBUTTON_H

calacutorbutton.cpp

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

#include "calacutorbutton.h"

#include <QPainter>

#include <QBitmap>

#include <QMouseEvent>

#include <QSizePolicy>

//增加对按钮类型的设定

//按钮控件中缺少

CalacutorButton::CalacutorButton(QWidget *parent):QPushButton(parent)

{

? ? pressed = false;

? ? mText = "";

? ? mIcon = "";

? ? mPressImgName = "/home/rabbitchenc/Image/btn_ime.png";

? ? mNormalImgName = "";//不添加图片背景

? ? mFocusImgName = "";

? ? mDisableName = "";

? ? mFileName = mNormalImgName;

? ? connect(this,&QPushButton::pressed,[=](){

? ? ? ? pressed = true;

? ? ? ? setImageName(mPressImgName);

? ? });

? ? connect(this,&QPushButton::released,[=](){

? ? ? ? pressed = false;

? ? ? ? setImageName(mNormalImgName);

? ? });

}

CalacutorButton::~CalacutorButton()

{

}

void CalacutorButton::paintEvent(QPaintEvent *event)

{

?QPainter painter(this);

?painter.setRenderHint(QPainter::Antialiasing);

?painter.setRenderHint(QPainter::TextAntialiasing);

?drawImage(&painter);

?drawText(&painter);

?drawIcon(&painter);

}

void CalacutorButton::drawImage(QPainter*painter)

{

? ? painter->save();

? ? QPixmap pixmap;

? ? mWidth = width();

? ? mHeight = height();

? ? if(isEnabled()){

? ? ? ? if(isCheckable()){

? ? ? ? ? ? if(isChecked()){

? ? ? ? ? ? ? ? mFileName = mPressImgName;

? ? ? ? ? ? }else{

? ? ? ? ? ? ? ? mFileName = mNormalImgName;

? ? ? ? ? ? }

? ? ? ? ? ? if(pressed){

? ? ? ? ? ? ? ? mFileName = mFocusImgName;

? ? ? ? ? ? }

? ? ? ? }

? ? }else {

// ? ? ? ?mFileName = mDisableName;

}

? ? pixmap = QPixmap( mFileName);

? ? painter->drawPixmap(0,0,mWidth,mHeight,pixmap);

? ? painter->restore();

}

?//添加文字

? void CalacutorButton::drawText(QPainter *painter)

? {

? ? ? painter->save();

? ? ? QFont font = painter->font();

? ? ? painter->drawText(0,0,mWidth,mHeight,Qt::AlignCenter,mText);

? ? ? painter->restore();

? }

? //添加图标

? void CalacutorButton::drawIcon(QPainter*painter)

? {

? ? ? painter->save();

? ? ? QPixmap pixmap(mIcon);

? ? ? if(pressed){

? ? ? ? ? painter->drawPixmap((width()-pixmap.width())/2,(height()-pixmap.height())/2,pixmap.width(),pixmap.height(),pixmap);

? ? ? }else{

? ? ? ? ? painter->drawPixmap((width()-pixmap.width())/2,(height()-pixmap.height())/2,pixmap.width(),pixmap.height(),pixmap);

? ? ? }

? ? ? painter->restore();

? }

?void CalacutorButton::setText(const QString&text)

?{

? ? ?mText = text;

? ? ?update();

?}

void CalacutorButton::setMyIcon(const QString &icon)

{

? ? mIcon = icon;

? ? update();

}

void CalacutorButton::setImageName(const QString &img)

{

? ? mFileName = img;

? ? update();

}

void CalacutorButton::setPressImg(const QString&img)

{

? ? mPressImgName = img;

? ? update();

}

http://www.hkea.cn/news/30322/

相关文章:

  • 简单做网站需要学什么搜索引擎有哪些网站
  • 网站备案信息加到哪里如何进行网站推广
  • 昭通网站制作aso优化技巧
  • 制作网站时怎样做滚动字幕新网站多久会被百度收录
  • 余姚物流做网站微信指数是搜索量吗
  • 怎样做网站轮播今日国内重大新闻事件
  • 想给大学做网站百度网盘搜索神器
  • jsp网站开发论文官方app下载安装
  • 关于机场建设的网站今日疫情最新情况
  • 网站域名注册服务商google浏览器官方
  • 通过网站开发工具怎么改自动跳网站百度指数有哪些功能
  • 可以发锚文本的网站百度搜索官方网站
  • 东莞网站建设企慕简述如何优化网站的方法
  • 可以做网站的公司seo外包
  • 自己怎么做网站视频赚钱5g网络优化培训
  • 数据库修改网站管理员密码seo网站有优化培训吗
  • 福田做商城网站建设找哪家公司好抖音怎么运营和引流
  • 厘米售卡站怎么做网站禁止搜索引擎收录的方法
  • 网站首页滚动图片怎么做谷歌搜索关键词排名
  • 嵩县网站开发友情链接获取的途径有哪些
  • 国家企业信息公示网(广东)海南快速seo排名优化
  • 高端网站设计 上海徐州seo排名公司
  • 泰安网站建设公司排名石家庄最新消息
  • 域名只做邮箱没网站要备案吗常见的网络推广方式包括
  • 昆山建设局网站360搜索首页
  • 正常做网站多少钱无锡网站制作无锡做网站
  • php做网站csdn网站seo公司哪家好
  • 今日头条建站工具何鹏seo
  • wordpress 培训模板优化落实疫情防控新十条
  • 关于做外汇现货的网站太原整站优化排名外包