异度部落格

学习是一种生活态度。

0%

这个程序主要为了,练习自定义 Qt 窗体部件,HexSpinBox 实现了一个 16 进制的 SpinBox,所以只要重载 SpinBox 就可以了...详见代码

==================================================================

hexspinbox.h

#ifndef HEXSPINBOX_H
#define HEXSPINBOX_H
#include <QtGui/QWidget>
#include <QSpinBox>
namespace Ui
{
class HexSpinBoxClass;
}
class HexSpinBox : public QSpinBox //继承QSpinBox 控件
{
Q_OBJECT
public:
HexSpinBox(QWidget *parent = 0);
~HexSpinBox();
protected:
QValidator::State validate(QString &text,int &pos) const;
int valueFromText(const QString &text) const; //virtual函数必须重载
QString textFromValue(int value) const; //virtual函数必须重载
private:
Ui::HexSpinBoxClass *ui;
QRegExpValidator *validator;
};
#endif // HEXSPINBOX_H

hexspinbox.cpp

#include "hexspinbox.h"
#include "ui_hexspinbox.h"
HexSpinBox::HexSpinBox(QWidget *parent)
:QSpinBox(parent)
{
ui->setupUi(this);
setRange(0,255);
validator=new QRegExpValidator(QRegExp("[0-9A-Fa-f]{1,8}"),this);
}
HexSpinBox::~HexSpinBox()
{
delete ui;
}
/*检查用户输入的合法性*/
QValidator::State HexSpinBox::validate(QString &text,int &pos) const
{
return validator->validate(text,pos);
}
/*整型值转换为16进制的字符串*/
QString HexSpinBox::textFromValue(int value) const
{
return QString::number(value,16).toUpper();
}
/*字符串到整数值,若字符串合法ok返回true,否则返回false*/
int HexSpinBox::valueFromText(const QString &text) const
{
bool ok;
return text.toInt(&ok,16);
}

main.cpp

#include <QtGui/QApplication>
#include "hexspinbox.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
HexSpinBox *hexSpinBox=new HexSpinBox;
hexSpinBox->sizeHint();
hexSpinBox->show();
return app.exec();
}

image

PS:庆祝空间人气突破 25000

这几次主要练习 Qt Designer 的设计,所以就做了对话框,没有去做具体的实现,以后有空再写吧….哇哈哈

主要代码如下:

sortdialog.h

#ifndef SORTDAILOG_H
#define SORTDAILOG_H
#include <QtGui/QDialog>
#include "ui_sortdailog.h"
namespace Ui
{
class sortdailogClass;
}
class sortdailog : public QDialog
{
Q_OBJECT
public:
sortdailog(QWidget *parent = 0);
~sortdailog();
void setColumnRange(QChar first,QChar last); //用来设置列的范围
private:
Ui::sortdailogClass *ui;
};
#endif // SORTDAILOG_H

sortdialog.cpp

#include "sortdailog.h"
#include<QtGui>

sortdailog::sortdailog(QWidget *parent)
: QDialog(parent)
{
ui->setupUi(this);
ui->secondaryGroupBox->hide(); //设置为隐藏
ui->tertiaryGroupBox->hide(); //设置为隐藏
this->layout()->setSizeConstraint(QLayout::SetFixedSize); //将此层设置为适合大小
setColumnRange('A','Z'); //设置默认范围*/
}
sortdailog::~sortdailog()
{
delete ui;
}
void sortdailog::setColumnRange(QChar first,QChar last)
{
//清除原有数据
ui->primaryComboBox->clear();
ui->secondaryComboBox->clear();
ui->tertiaryComboBox->clear();
ui->secondaryComboBox->addItem(tr("None"));
ui->tertiaryComboBox->addItem(tr("None"));
ui->primaryComboBox->setMinimumSize(ui->secondaryComboBox->sizeHint()); //设置理想大小
QChar ch=first;
while(ch<=last)
{
ui->primaryComboBox->addItem(QString(ch)); //QString(ch)因为tr()只能接受字符串类型
ui->secondaryComboBox->addItem(QString(ch));
ui->tertiaryComboBox->addItem(QString(ch));
ch=ch.unicode()+1;
}
}

main.cpp

#include <QtGui/QApplication>
#include "sortdailog.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
sortdailog *dialog=new sortdailog;
dialog->setColumnRange('C','H');
dialog->show();
return a.exec();
}

先用 Qt Designer 设计,窗体的基本框架,然后进行编译 ,以下是相关代码: gotocell.h

#ifndef GOTOCELL_H
#define GOTOCELL_H
#include <QtGui/QDialog>
#include "ui_gotocell.h"
namespace Ui
{
class goToCellClass;
}
class goToCell : public QDialog,public Ui::goToCellClass // public Ui::goToCellClass这句话要再Qt Designer设计完后加上不然会编译错误
{
Q_OBJECT
public:
goToCell(QWidget *parent = 0);
~goToCell();
private slots:
void on_lineEdit_textChanged();
private:
Ui::goToCellClass *ui;
};
#endif // GOTOCELL_H

gotocell.cpp

#include<QtGui>
#include "gotocell.h"
#include "ui_gotocell.h"
goToCell::goToCell(QWidget *parent)
: QDialog(parent), ui(new Ui::goToCellClass)
{
ui->setupUi(this);
QRegExp regExp("[A-Za-z][1-9][0-9]{0,2}"); //[A-Za-z][1-9][0-9]{0,2}的意思是:允许输入大小写字母,
//后面跟着一个范围为1-9的数字,后面再跟着0个,1个或者2个的0-9的数字
lineEdit->setValidator(new QRegExpValidator(regExp,this)); // 添加一个验证器用来验证lineEdit里面的字符串
connect(okButton,SIGNAL(accepted()),this,SLOT(accept()));
connect(cancelButton,SIGNAL(rejected()),this,SLOT(reject()));
}
goToCell::~goToCell()
{
delete ui;
}
void goToCell::on_lineEdit_textChanged()
{
okButton->setEnabled(lineEdit->hasAcceptableInput());
}

main.cpp

#include <QtGui/QApplication>
#include "gotocell.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
goToCell *dialog=new goToCell;
dialog->show();
return app.exec();
}

主要学习简单的 Wdiget 的添加问题…

main.cpp

#include <QtGui/QApplication>
#include<QSpinBox>
#include<QSlider>
#include<QHBoxLayout>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
//创建一个小窗体部件
QWidget *widget=new QWidget;
widget->setWindowTitle("input your age");
//创建一个QSpinBox,并设置范围0-130
QSpinBox *spinBox=new QSpinBox;
spinBox->setRange(0,130);
//创建一个QSlider,并设置范围0-130
QSlider *slider=new QSlider(Qt::Horizontal);
slider->setRange(0,130);
//设置信号和槽
QObject::connect(spinBox,SIGNAL(vauleChanged(int)),slider,SLOT(setValue(int)));
QObject::connect(slider,SIGNAL(valueChanged(int)),spinBox,SLOT(setValue(int)));
//初始值
spinBox->setValue(0);
//布局设置
QHBoxLayout *layout=new QHBoxLayout;
layout->addWidget(spinBox);
layout->addWidget(slider);
widget->setLayout(layout);
widget->show();
return a.exec();
}

运行结果

image

PS:居然 connect 中 sender 的函数打错了还能用….好囧啊

创建一个 FindDialog,功能还没有添加…以后再搞吧

代码:

findDialog.h

#ifndef FINDDIALOG_H
#define FINDDIALOG_H
#include <QtGui/QDialog>
#include<QCheckBox>
#include<QLabel>
#include<QLineEdit>
#include<QPushButton>
namespace Ui
{
class FindDialogClass;
}
class FindDialog : public QDialog
{
Q_OBJECT
public:
FindDialog(QWidget *parent = 0);
~FindDialog();
signals:
void findNext(const QString &amp;str,Qt::CaseSensitivity cs); //不要写成 Qt::CaseSensitive,Qt::CaseSensitivity是一个类型
void findPrev(const QString &amp;str,Qt::CaseSensitivity cs);
private slots:
void findClicked();
void enableFindButton(const QString &amp;text);
private:
Ui::FindDialogClass *ui;
QLabel *label;
QLineEdit *lineEdit;
QCheckBox *caseCheckBox;
QCheckBox *backwardCheckBox;
QPushButton *findButton;
QPushButton *closeButton;
};
#endif // FINDDIALOG_H

findDialog.cpp

#include<QtGui>
#include<QHBoxLayout>
#include "finddialog.h"
#include "ui_finddialog.h"
FindDialog::FindDialog(QWidget *parent)
: QDialog(parent), ui(new Ui::FindDialogClass)
{
ui->setupUi(this);
//对部件进行定义
label=new QLabel(tr("&amp;Input the word you want to find"));
lineEdit=new QLineEdit();
label->setBuddy(lineEdit); //setBuddy 当按下快捷键时,转换到lineEdit
caseCheckBox=new QCheckBox(tr("Match &amp;Case"));
backwardCheckBox=new QCheckBox(tr("Search &amp;backward"));
findButton=new QPushButton(tr("Find"));
closeButton=new QPushButton(tr("Close"));
//添加信号连接
connect(lineEdit,SIGNAL(textChanged(const QString &amp;)),this,SLOT(enableFindButton(const QString &amp;)));
connect(findButton,SIGNAL(clicked()),this,SLOT(findClicked()));
connect(closeButton,SIGNAL(clicked()),this,SLOT(close()));
//布局控制
QHBoxLayout *topLeftLayout=new QHBoxLayout;
topLeftLayout->addWidget(label);
topLeftLayout->addWidget(lineEdit);
QVBoxLayout *leftLayout=new QVBoxLayout;
leftLayout->addLayout(topLeftLayout); //添加topLeftLayout层到leftLayout层上
leftLayout->addWidget(caseCheckBox);
leftLayout->addWidget(backwardCheckBox);
QVBoxLayout *rightLayout=new QVBoxLayout;
rightLayout->addWidget(findButton);
rightLayout->addWidget(closeButton);
rightLayout->addStretch(); //添加延展
//设置mianLayout将leftLayout和rightLayout添加到上面
QHBoxLayout *mainLayout=new QHBoxLayout;
mainLayout->addLayout(leftLayout);
mainLayout->addLayout(rightLayout);
this->setLayout(mainLayout);
this->setWindowTitle(tr("Find"));
this->setFixedHeight(sizeHint().height());
}
FindDialog::~FindDialog()
{
delete ui;
}
void FindDialog::findClicked()
{
QString text=lineEdit->text();
Qt::CaseSensitivity cs=caseCheckBox->isChecked()?Qt::CaseSensitive : Qt::CaseInsensitive;
if(backwardCheckBox->isChecked())
emit findPrev(text,cs); //emit用于发射信号
else emit findNext(text,cs);
}
void FindDialog::enableFindButton(const QString &amp;text)
{
findButton->setEnabled(!text.isEmpty());
}

main.cpp

#include <QtGui/QApplication>
#include "finddialog.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
FindDialog *findDialog=new FindDialog;
findDialog->show();
return app.exec();
}

运行结果:

image

PS 编译过程出现这个错误: :-1: error: collect2: ld returned 1 exit status ,但是当我程序写完的时候问题就解决了 ….orz,顺便说下,QtCreator 的补全功能还是很不错的….1.0 果然比 0.9 好太多了….赞一个

之所以从零开始,这个也是 C++的习惯吧,第一个 QT 程序啊,纪念一下,还是经典的 Hello World

main.cpp

#include <QtGui/QApplication>
#include<QLabel>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QLabel *label=new QLabel("Hello World");
label->show();
return a.exec();
}

运行结果:

image

PS:入门第一件事情果然是 Hello World

这是由于 AMD 的 CPU 的问题,貌似 Intel 的没有这个问题,只要在系统的环境变量中添加对 AMD 支持就可以了.

1、右击我的电脑,选择属性.

2、在"高级"选项卡中点击"环境变量" 3、在系统变量下面添加如下内容(按"新建"):

变量名:BLAS_VERSION 变量值:X:/Matlab7/bin/win32/atlas_Athlon.dll

"X"为您安装 MATLAB 的盘符,确定后即可

(1)首先下载最新版本的 netbeans6.5,下载后选择全部安装,还要下载一个 C++编译器.我们选择 Cygwin.

(2)Cygwin 配置如下 1.运行 setup.exe 程序。接受缺省设置,直至转入 "Select Your Internet Connection" 页。在此页上选择最适合您的选项。单击“下一步”。

2.在 "Choose A Download Site" 页上,选择一个方便您下载的站点。单击“下一步”。

3.在 "Select Packages" 页上,选择要下载的包。单击 "Devel" 旁边的 "+" 号,以展开此开发工具类别。您可能    需要调整窗口的大小,以便一次可以看到更多的内容。 通过单击包旁边的 "Skip" 标签来选择要下载的每个包。您至少要选择

gcc-core: C compiler

gcc-g++: C++ compiler

gdb: The GNU Debugger

make: the GNU version of the 'make' utility。 然后安装.

(3)现在将编译器目录添加到您的 Path 变量中: 将 cygwin-directory/usr/bin 和 cygwin-directory/bin 目录的路径添加到 Path 变量中,然后单击“确定”。缺省情况下,cygwin-directory 为 C:/cygwin。

(4)启动 netbeans 就可以了.你可以选择 Tools -> options -> C/C++ 下面的选项框中是不是自动就填好了. 如果以上运行正常,你就可以用 netbeans 开发你的 C/C++ Application 了.

测试环境:Ubuntu 8.10

软件:Netbeans 6.5

在 Linux 操作系统中安装 netbeans 中文版出现了乱码,显示为一些方框。 这个问题不是 netbeans 的问题而是 JDK 的中文显示出了问题...

解决方法是把/usr/share/fonts/truetype/arphic/下的字体复制到 JAVA_HOME/jre/lib/fonts/fallback 下面(如果没有此目录 新建)。

其中 JAVA_HOME 是 jdk 安装的路径,请自己调整。

1)添加源:sudo gedit /etc/apt/sources.list,增加

deb http://us.archive.ubuntu.com/ubuntu edgy universe
deb http://wine.budgetdedicated.com/apt edgy main

2)更新源:sudo apt-get update

3)更新 wine 和 cabextract:sudo apt-get install wine cabextract

4)安装 python-gtk2-dev:sudo apt-get install python-gtk2-dev

5)下载 IEs4Linux wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz

6)安装
解压:tar zxvf ies4linux-latest.tar.gz 运行:./ies4linux ps:建议选 CN,貌似我选了 EN 不能下载。。