C++ GUI Programming with Qt 3 [Electronic resources]

Jasmin blanchette; Mark summerfield

نسخه متنی -صفحه : 140/ 67
نمايش فراداده

Chapter 10. Input/Output

Reading and Writing Binary Data

Reading and Writing Text

Handling Files and Directories

Inter-Process Communication

This chapter covers reading and writing files, traversing the file system, and interacting with external programs.

Qt's QDataStream and QTextStream classes make it simple to read and write files. These classes take care of issues such as byte ordering and text encodings, ensuring that Qt applications running on different platforms can read and write each other's files.

Many applications need to traverse directories or get information about a file. Qt's QDir and QFileInfo classes makes this possible.

In some situations, it is necessary to run external programs from within a GUI program. Qt's QProcess class allows us to execute external programs asynchronously, keeping the GUI responsive, with signals to tell us how the execution is progressing.