-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCustomWidgetsDialog.cpp
More file actions
148 lines (124 loc) · 4.15 KB
/
CustomWidgetsDialog.cpp
File metadata and controls
148 lines (124 loc) · 4.15 KB
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
#include "CustomWidgetsDialog.h"
#include "ui_CustomWidgetsDialog.h"
#include "CustomWidgets/QToast.h"
#include "CustomWidgets/QCardDialog.h"
#include <QDebug>
CustomWidgetsDialog::CustomWidgetsDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::CustomWidgetsDialog)
{
ui->setupUi(this);
InitUi();
}
CustomWidgetsDialog::~CustomWidgetsDialog()
{
delete ui;
}
void CustomWidgetsDialog::InitUi()
{
QStringList stepList;
stepList<<"step1"<<"step2"<<"step3"<<"step4"<<"step5";
ui->label_circle1->SetProgressBarStyle(QFlowProgressBar::Styles::PROGRESS_BAR_CIRCLE_1);
ui->label_circle1->SetStepMessageList(stepList);
ui->label_circle1->SetAutoTextWidth(true);
ui->label_circle2->SetProgressBarStyle(QFlowProgressBar::Styles::PROGRESS_BAR_CIRCLE_2);
ui->label_circle2->SetStepMessageList(stepList);
ui->label_circle2->SetAutoTextWidth(true);
ui->label_rectangle->SetProgressBarStyle(QFlowProgressBar::Styles::PROGRESS_BAR_RECT);
ui->label_rectangle->SetStepMessageList(stepList);
ui->label_rectangle->SetAutoTextWidth(true);
ui->label_tabstyle->SetStepMessageList(stepList);
ui->label_tabstyle->SetAutoTextWidth(true);
qDebug()<<QCoreApplication::applicationDirPath();
QStringList pictureLst;
pictureLst<<QCoreApplication::applicationDirPath()+"\\1.jpg";
pictureLst<<QCoreApplication::applicationDirPath()+"\\2.jpg";
pictureLst<<QCoreApplication::applicationDirPath()+"\\3.jpg";
pictureLst<<QCoreApplication::applicationDirPath()+"\\4.gif";
ui->label_pictures->AddPictures(pictureLst);
QStringList posList;
posList<<"上部居中"<<"居中"<<"底部居中";
ui->comboBox_pos->addItems(posList);
ui->comboBox_pos->setCurrentIndex(0);
QStringList showTimeList;
showTimeList<<"短"<<"长";
ui->comboBox_time->addItems(showTimeList);
ui->comboBox_time->setCurrentIndex(0);
ui->textEdit_toast->setText("测试显示");
QStringList galleryList;
galleryList<<QCoreApplication::applicationDirPath()+"\\gallery\\1.jpg";
galleryList<<QCoreApplication::applicationDirPath()+"\\gallery\\2.jpg";
galleryList<<QCoreApplication::applicationDirPath()+"\\gallery\\3.jpeg";
galleryList<<QCoreApplication::applicationDirPath()+"\\gallery\\4.jpg";
galleryList<<QCoreApplication::applicationDirPath()+"\\gallery\\5.jpg";
ui->gallery_main->InitImageList(galleryList);
}
void CustomWidgetsDialog::on_btn_next_clicked()
{
ui->label_circle1->NextStep();
ui->label_circle2->NextStep();
ui->label_rectangle->NextStep();
ui->label_tabstyle->NextStep();
}
void CustomWidgetsDialog::on_btn_Prev_clicked()
{
ui->label_circle1->BackToPrevStep();
ui->label_circle2->BackToPrevStep();
ui->label_rectangle->BackToPrevStep();
ui->label_tabstyle->BackToPrevStep();
}
void CustomWidgetsDialog::on_checkBox_auto_stateChanged(int arg1)
{
if(arg1==Qt::Checked)
{
int nInterval=ui->lineEdit->text().toInt();
if(nInterval>=3000)
{
ui->label_pictures->SetChangeInterval(nInterval);
}
ui->label_pictures->SetAutoChange(true);
}
else
{
ui->label_pictures->SetAutoChange(false);
}
}
void CustomWidgetsDialog::on_pushButton_show_clicked()
{
QToast* pToast=nullptr;
if(ui->comboBox_time->currentIndex()==0)
{
pToast=QToast::CreateToast(ui->textEdit_toast->toPlainText(),QToast::LENGTH_SHORT);
}
else
{
pToast=QToast::CreateToast(ui->textEdit_toast->toPlainText(),QToast::LENGTH_LONG);
}
pToast->SetAutoDelete(true);
if(ui->comboBox_pos->currentIndex()==0)
{
pToast->SetToastPos(QToast::TOAST_POS::TOP);
}
else if(ui->comboBox_pos->currentIndex()==1)
{
pToast->SetToastPos(QToast::TOAST_POS::CENTER);
}
else
{
pToast->SetToastPos(QToast::TOAST_POS::BOTTOM);
}
pToast->show();
}
void CustomWidgetsDialog::on_pushButton_card_clicked()
{
QCardDialog tmpCardDialog;
tmpCardDialog.exec();
}
void CustomWidgetsDialog::on_pushButton_nextStep_clicked()
{
ui->gallery_main->MoveStep(0);
}
void CustomWidgetsDialog::on_pushButton_prev_clicked()
{
ui->gallery_main->MoveStep(1);
}