自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 资源 (1)
  • 收藏
  • 关注

原创 Signals and Slots in Depth

Slots are almost identical to ordinary C++ member functions. They canbe virtual; they can be overloaded; they can be public, protected, orprivate; they can be directly invoked like any other C++ m

2009-09-29 11:45:00 431

原创 Subclassing QDialog

//findDlg.h#ifndef FINDDLG_H#define FINDDLG_H // includes the definition of QDialog, the base class for dialogs in Qt. QDialog is derived from QWidget#include  //A forward de

2009-09-29 10:41:00 660

原创 Laying Out Widgets

#include #include #include #include int main(int argc, char *argv[]){ QApplication app(argc, argv); QWidget *window = new QWidget; window->set

2009-09-29 10:01:00 541

原创 Making Connections

#include #include int main(int argc, char *argv[]){ QApplication app(argc, argv); QPushButton *button = new QPushButton("Quit"); QObject::connect(button, SIGNAL(clicked()),

2009-09-29 09:56:00 458

原创 QLabel

EXAMPLE 1: #include #include int main(int argc, char *argv[]){ QApplication app(argc, argv); QLabel *label = new QLabel("Hello

2009-09-29 09:23:00 709

原创 2D and 3D Graphics

  Qt provides excellent support for 2D and 3D graphics. Qt’s 2D graphics classessupport raster and vector graphics, and can load and save a wide and extensiblerange of image formats. Qt can draw U

2009-09-28 09:26:00 584

原创 安装APACHE PHP

APACHE 下载地址:http://www.apache.org/mirrors/PHP下载地址:http://www.apache.org/mirrors/安装:sudo apt-get install flex            sudo apt-get install bison            sudo apt-get install libxml2 l

2009-09-24 22:47:00 412

原创 更改表中列顺序

1.更改表中列顺序在更改列顺序之前,你需要考虑是否的确需要更改表中的列顺序。SQL的核心要点是从数据存储格式获取应用。总应指定检索数据的顺序。在下面的第1条语句中,以col_name1、col_name2、col_name3顺序返回列;在第2条语句中,以col_name1、col_name3、col_name2顺序返回列:  以下为引用的内容:mysql>

2009-09-21 21:11:00 1315

原创 FRI SEP 18, 2009

精英780G主板装不了声卡驱动,到http://www.ecs.com.cn/ecswebsite/downloads/category_download.aspx?menuid=6&lanid=2在左边选“主钣”-"socket am2 "-780型号,下载最新的驱动程序,安装

2009-09-18 23:22:00 482

原创 THU SEP 17,2009

  安装完Ubuntu后忽然意识到没有设置root密码,不知道密码自然就无法进入根用户下。到网上搜了一下,原来是这麽回事。Ubuntu的默认root密码是随机的,即每次开机都有一个新的root密码。我们可以在终端输入命令 sudo passwd,然后输入当前用户的密码,enter,终端会提示我们输入新的密码并确认,此时的密码就是root新密码。修改成功后,输入命令 su root,

2009-09-17 22:33:00 700

原创 WED SEP 16,2009

  很不幸,昨晚居然有点发烧,38.9,不过今天起来已经好了。  以前就试过用U盘来安装UBUNTU,对我的机子不行,可是在听说唐已经下了9.10的Alphe5版,还 是忍不住试了一下,该死的还是不行,最后搞得不得不重装系统。不过来是有收获的,SWAP分区有EXT3分区是分不出来的,所以这次我用FTN32分区分,行了。再有一个就是,就算你不装XP,也要留一下其他格式的分区,以便重装系统时可以把

2009-09-16 16:15:00 660

基于QT的超简易计算器

很适合刚学QT的初学者,因为我也是初学者,呵呵,希望大家支持

2009-04-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除