本帖最后由 suiyueruge 于 2013-10-7 08:48 编辑
功能:可以将图片和压缩包合并起来。支持中文路径,带空格的路径。因为不是用vs开发的,所以文件有点大。今天美化了一下界面,现在功能已经算是齐全了,支持带空格文件名字。
第一次在这里发,好像要有原创证明,那我就给一部分代码
[AppleScript] 纯文本查看 复制代码 #include "widget.h"
#include<QHBoxLayout>
#include<QVBoxLayout>
#include<QFileDialog>
#include<QDebug>
#include<QMessageBox>
Widget::Widget(QWidget *parent)
: QWidget(parent)
{
button=new QPushButton(QString(tr("完成")),this);
openPicture=new QPushButton(tr("选择图片文件"),this);
openZip=new QPushButton(tr("选择压缩文件"),this);
choosePath=new QPushButton(tr("选择保存路径"),this);
pic=new QLineEdit(this);
zip=new QLineEdit(this);
path=new QLineEdit(this);
QHBoxLayout *hlyout1=new QHBoxLayout;
hlyout1->addWidget(pic);
hlyout1->addWidget(openPicture);
QHBoxLayout *hlyout2=new QHBoxLayout;
hlyout2->addWidget(zip);
hlyout2->addWidget(openZip);
QHBoxLayout *hlyout3=new QHBoxLayout;
hlyout3->addWidget(path);
hlyout3->addWidget(choosePath);
QVBoxLayout *vlayout=new QVBoxLayout;
vlayout->addLayout(hlyout1);
vlayout->addLayout(hlyout2);
vlayout->addLayout(hlyout3);
vlayout->addWidget(button);
this->setLayout(vlayout);
免CB下载:http://pan.baidu.com/s/1BWjWt
|