{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Qt 5开发实战

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Qt 5开发实战

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

Qt是跨平台的应用程序开发框架,支持嵌入式Linux、Mac OS X、Windows、Linux、Android、QNX、MeeGo、WebOS、Symbian等多个平台。在嵌入式Linux平台中开发的应用程序源代码——除平台附属部分外——可完全适用于Windows、Android、QNX等多种平台。
《Qt 5开发实战》面向读者
需要支持嵌入式Linux、Mac OS X、Windows、Linux、Android、QNX、MeeGo、WebOS等多种平台的开发人员
使用高级GUI、OpenGL和OpenGL ES开发3D图像应用程序的人
开发支持多线程、多媒体、网络、XML、JavaScript应用程序的读者
利用开源网页浏览器引擎WebKit开发互联网应用程序的人
开发面向后端系统管理应用程序的读者
Content Description

Qt支持C++、Python、Ruby、Perl等多种编程语言,常规用户应用程序、多媒体、后端系统管理、汽车、国防、家电、移动设备等多个领域都在广泛应用Qt。本书在全面阐述Qt基本功能的基础上,对新增的功能和服务进行了重点介绍。同时运用大量示例,集中讲解了应用程序的开发方法、技巧和必需的Qt API。读者通过实际动手操作能够迅速获得业务中的相关知识与经验,本书非常适合利用高级GUI和OpenGL ES开发3D图像应用程序的人阅读。
Author Description

金大(臣尔),计算机通信与安全专业硕士,曾开发计算机网络及安全相关软件、基于嵌入式的影像处理、Automotive、HTML5、文件系统应用软件等各类软件,目前关注面向多媒体计算环境用户的UX框架,并研究大量相关主题。著有《Qt实战编程》《MeeGo编程完美指南》等,现在负责维护Qt开发人员社区网站。
Catalogue

第1章概述1
第2章有用的工具和qmake6
2.1Qt Creator IDE6
2.2Qt Assistant14
2.3Qt Designer15
2.4qmake16
第3章GUI设计与制作19
3.1基础控件19
3.1.1QCheckBox和QButtonGroup22
3.1.2QComboBox25
3.1.3QCommandLinkButton26
3.1.4QDate类和QDateEdit控件27
3.1.5QTime类和QTimeEdit控件30
3.1.6QDateTime类和QDateTimeEdit控件33
3.1.7QDial35
3.1.8QSpinBox和QDoubleSpinBox 36
3.1.9QPushButton和QFocusFrame39
3.1.10QFontComboBox 41
3.1.11QLabel和QLCDNumber43
3.1.12QLineEdit45
3.1.13QMenu和QMenuBar 47
3.1.14QProgressBar50
3.1.15QRadioButton51
3.1.16QScrollArea52
3.1.17QScrollBar53
3.1.18QSizeGrip55
3.1.19QSlider57
3.1.20QTabWidget 58
3.1.21QToolBar和QAction 60
3.1.22QWidget 62
3.1.23QTabBar 67
3.1.24QToolBox 68
3.1.25QToolButton 69
3.2布局管理器 70
3.3高级控件 73
3.3.1QColumnView 74
3.3.2QDataWidgetMapper 75
3.3.3QDesktopWidget 77
3.3.4QCalendarWidget 79
3.4使用Designer构建GUI 81
3.4.1控件和信号槽使用示例 84
3.4.2Calculator Form示例 86
3.5对话框 88
3.5.1普通对话框 88
3.5.2用户自定义对话框 97
3.6主窗口 98
3.7模型/视图结构和数据绑定控件 101
3.7.1模型/视图结构 102
3.7.2使用模型类和视图控件 103
3.8用户自定义控件和插件 107
3.8.1实现用户自定义控件 109
3.8.2插件制作及布局 118
第4章信号与槽 128
第5章数据类型和有用的数据操作类 131
5.1比较和判断变量的函数 133
5.2数据类 136
5.3容器类 154
5.4字符串类 159
第6章文件输入输出163
第7章图形171
7.1使用QPainter类的图形171
7.1.1QPainter的基本绘图172
7.1.2渐变179
7.1.3转换182
7.1.4组合184
7.2图形视图框架185
7.2.1图形视图架构187
7.2.2图形视图的坐标190
7.2.3图形视图的主要特点191
7.2.4事件处理193
7.2.5用户自定义QGraphicsItem 194
7.2.6QGraphicsEffect 197
7.3使用Qt OpenGL模块的3D 图形202
7.3.1用于渲染3D图形的QGLWidget类203
7.3.2Hello OpenGL示例206
7.3.3使用硬盘加速器的2D图形渲染212
7.3.4QPainter类的复绘218
7.4可缩放向量图形224
第8章动画框架和状态机227
8.1动画框架和类228
8.2动画和状态机235
第9章线程238
9.1QThread类242
9.2多线程编程244
9.3线程等待条件247
9.4使用信号量进行同步249
9.5使用QtConcurrent的多线程252
第10章容器类和迭代器类254
10.1Java风格的迭代器模式255
10.2STL风格的迭代器模式257
10.3使用foreach关键字访问迭代器259
第11章XML261
11.1使用数据流的XML数据处理263
11.2文档对象模型(DOM) 266
11.3SAX模式269
第12章数据传输和网络编程273
12.1网络273
12.1.1使用QTcpSocket和QTcpServer进行TCP编程277
12.1.2使用QUdpSocket的UDP 285
12.1.3主机名和DNS查询291
12.1.4HTTP协议297
12.1.5承载管理306
12.1.6基于服务器端/客户端的聊天示例307
12.2QtWebKit314
12.2.1QtWebKit 模块提供的类316
12.2.2DOM 查询323
12.2.3QtWebKit模块环境下的JQuery应用325
12.2.4QtWebKit和QObject模型间的网桥330
12.2.5混合客户端应用程序示例336
12.3进程间通信339
12.3.1TCP/IP340
12.3.2共享内存341
12.3.3D-Bus协议346
12.3.4QProcess353
第13章多媒体355
13.1音频组件356
13.2视频组件359
13.3camera组件362
13.4收音机组件364
第14章数据库365
14.1数据库和SQL简介367
14.2关联和支持数据库的驱动369
14.3使用SQL语句的数据库查询377
14.4Model类383
14.5列表视图应用386
14.6SQL 记录文件字段和GUI 控件映射388
14.7Cached列表示例392
14.8Drill Down示例395
第15章Qt测试框架405
15.1单元测试409
15.2数据驱动测试410
15.3模拟GUI事件412
15.4GUI事件重复测试414
15.5基准测试415
第16章Qt Quick与QML418
16.1Qt Quick项目创建和有用的工具419
16.2基本类型和扩展数据类型421
16.3对象427
16.3.1类型428
16.3.2定义项目属性433
16.3.3Repeater和Loader436
16.3.4转换437
16.4用户输入和事件处理438
16.5项目定位 444
16.6State与Transition 446
16.7动画 450
16.8数据的显示 456
16.9模块化编程 461
16.10图形效果 466
16.11有用的QML类型 489
16.12Canvas 492
16.13集成QML和C++ 495
16.14多媒体 500
第17章Qt应用程序的发布 504
17.1多种平台下Qt应用程序的发布 504
17.1.1Unix和Linux 504
17.1.2Windows 505
17.1.3Mac OS X 506
17.1.4Android平台Qt应用程序的发布 507
Introduction

Qt是一个跨平台的应用程序开发框架,支持嵌入式Linux、Mac OS X、Windows、Linux、Android、QNX、MeeGo、WebOS、Symbian等多个平台。例如,在嵌入式Linux平台中开发的应用程序源代码——除平台附属部分外——可完全适用于Windows、Android、QNX等多种平台。
Qt支持C++、Python、Ruby、Perl等多种编程语言,全球有近40万Qt开发人员在多种计算环境中开发各类软件。因此,常规用户应用程序、多媒体、后端系统管理、汽车、国防、家电、移动设备等多个领域都在广泛应用Qt。
近年来,开发环境中充斥着各种平台,在这种条件下开发可支持多平台的应用程序并非易事。例如,如果要开发一种可同时适用于Android和iPhone这两种不同移动设备平台的应用程序,就需要投入大量时间。
但若使用Qt则可以开发出一种不改变源代码亦可适用于多种平台的应用程序,这样可大大缩短应用程序的开发时间。因此,我认为Qt是一个可适应突变的市场环境,并具有强大竞争力的应用程序开发框架。
父母的爱是培养优秀子女的基础,各位读者就是我的衣食父母。因此,我要向一直喜爱我的读者致以最诚挚的感谢。希望本书可以给各位读者带来些许帮助。同时,向促成本书出版的出版社负责人员致以衷心的感谢。
金大(臣尔) 敬上

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book