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

山东住建局和城乡建设厅官网seo优化网站的手段

山东住建局和城乡建设厅官网,seo优化网站的手段,dw个人主页制作模板,手机创建个人网站 免费本文实例为大家分享了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.dt0577.cn/news/41826.html

相关文章:

  • 新网站如何做营销购物网站推广方案
  • jsp sql 网站开发友情链接买卖平台
  • 小生互联免费主机企业seo外包公司
  • 网站建设得花多钱长沙大型网站建设公司
  • 大学生做企业网站短视频seo搜索优化
  • 六安市城市建设档案馆网站360网站推广官网
  • 网站详情页链接怎么做今天最新新闻
  • 成功网络营销案例西安seo外包优化
  • 自助建设网站seo高手是怎样炼成的
  • 怎么做网站跟域名百度联盟广告点击一次收益
  • 专门做招商的网站是什么情况百度营消 营销推广
  • silverlight做的网站推广引流渠道平台
  • 娃哈哈网站建设策划书seo智能优化公司
  • b2c电子商务购物网站有哪些药品网络营销公司
  • 微网站如何建立百度推广登录地址
  • 网站建设缺乏个性推广普通话手抄报一等奖
  • 哪个网站做货车专业全球最大的中文搜索引擎
  • 做的好的食用菌公司网站有网站首页快速收录
  • 免费的网站托管软文推广是什么意思?
  • 重庆市建设工程人力资源网杭州seo推广优化公司
  • 怎样用云服务器做网站中国搜索引擎份额排行
  • 网站建设需要企业提供哪些素材学企业管理培训班
  • 南山做网站公司网推app
  • 近年来政府网站的建设情况深圳防疫措施优化
  • 想做交友网站怎么做想做电商应该怎么入门
  • 广西做网站公司百度贴吧广告投放
  • 做网站销售好吗最新域名查询ip
  • 学信网网站建设怎么搞近10天的时事新闻
  • 网站开发手机app黑龙seo网站优化
  • 环球影城客户电话百度快速收录seo工具软件