- Game Programming Using Qt Beginner's Guide
- Witold Wysota Lorenz Haas
- 198字
- 2021-08-20 10:45:11
Conventions
You will also find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "This API is centered on QNetworkAccessManager
, which handles the complete communication between your game and the Internet."
A block of code is set as follows:
QNetworkRequest request; request.setUrl(QUrl("http://localhost/version.txt")); request.setHeader(QNetworkRequest::UserAgentHeader, "MyGame"); m_nam->get(request);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
void FileDownload::downloadFinished(QNetworkReply *reply) { const QByteArray content = reply->readAll(); m_edit->setPlainText(content); reply->deleteLater(); }
Any command-line input or output is written as follows:
git clone git://code.qt.io/qt/qt5.git cd qt5 perl init-repository
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "On the Select Destination Location screen, click on Next to accept the default destination."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- ASP.NET MVC4框架揭秘
- Mastering Spring MVC 4
- 機器人Python青少年編程開發實例
- Spring實戰(第5版)
- PostgreSQL Replication(Second Edition)
- Learning Unity 2D Game Development by Example
- Visualforce Developer’s guide
- iPhone應用開發從入門到精通
- 小程序,巧應用:微信小程序開發實戰(第2版)
- Python機器學習算法與應用
- Nagios Core Administration Cookbook(Second Edition)
- jQuery從入門到精通(微課精編版)
- AutoCAD基礎教程
- Clojure Web Development Essentials