C++ GUI Programming with Qt 3 [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

C++ GUI Programming with Qt 3 [Electronic resources] - نسخه متنی

Jasmin blanchette; Mark summerfield

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید










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.


/ 140