한국어
Qt
 

사용자로부터 콘솔창을 통해 입력받기 위한 예제소스코드이다.

#ifdef Q_OS_WIN
#include <QWinEventNotifier>
#include <windows.h>
#else
#include <QSocketNotifier>
#endif

#include <iostream>

class Console : public QObject
{
    Q_OBJECT
public:
    Console(QObject *parent = nullptr):QObject(parent){}

    void run()
    {
        std::cout << "Please input command." << std::endl;
        std::cout << "> " << std::flush;

#ifdef Q_OS_WIN
        m_notifier = new QWinEventNotifier(GetStdHandle(STD_INPUT_HANDLE));
        connect(m_notifier, &QWinEventNotifier::activated, [&](HANDLE) {
#else
        m_notifier = new QSocketNotifier(fileno(stdin), QSocketNotifier::Read, this);
        connect(m_notifier, &QSocketNotifier::activated, [&](int) {
#endif
            std::string line;
            std::getline(std::cin, line);
            if (std::cin.eof() || line == "quit") {
                std::cout << "Good bye!" << std::endl;
                emit quit();
            } else {
                std::cout << "Echo: " << line << std::endl;
                std::cout << "> " << std::flush;
            }
        });
    }

private slots:

signals:
    void quit();

private:
#ifdef Q_OS_WIN
    QWinEventNotifier *m_notifier;
#else
    QSocketNotifier *m_notifier;
#endif
};

 

main.cpp

#include <QCoreApplication>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    Console console;
    console.run();

    // quit 시그널을 수신하면 종료
    QObject::connect(&console, SIGNAL(quit()), &a, SLOT(quit()));

    return a.exec();
}

 

결과:
input_qt_app.png
번호 제목 글쓴이 날짜 조회 수
공지 Qt프로그래밍(QtQuick) Beginner를 위한 글 읽는 순서 운영자 2019.01.05 86161
119 Q_D매크로와 d-pointer file makersweb 2019.05.07 762
118 Qt기반의 오픈소스 프로젝트들 makersweb 2019.05.15 5457
117 QtSerialPort를 사용한 시리얼(Serial)통신 [3] makersweb 2019.05.21 11968
116 QML에서 멀티 스레드(multithreading) 프로그래밍 file makersweb 2019.05.25 2673
115 QtCreator Design으로 GUI만들기 (QML로 만드는 Hello World -2) [1] file makersweb 2019.05.26 14973
114 QtInstallerFramework로 온라인 설치프로그램(Online Installer)만드는 방법 [4] file makersweb 2019.05.28 6274
113 QML 강좌 - 동적 Listing (ListView) file makersweb 2019.06.01 10120
112 Qt Quick Controls 2사용 및 스타일 설정 file makersweb 2019.06.07 6281
111 Qt Creator에서 임베디드 장치로 deploy설정(Custom Process Step) file makersweb 2019.06.15 2206
110 QML, 이미지, 폰트등을 바이너리 리소스로 만들기 makersweb 2019.06.24 3525
109 Qt기반의 오픈소스 프로젝트들 - 2 운영자 2019.07.21 4018
108 [Qt] Google Play의 향후 요구 사항을 준수하는 방법 [2] j2doll 2019.07.29 977
107 [Qt News] Qt6 Git 개발 초기 단계 시작하기 j2doll 2019.08.02 2337
106 [Qt News] Qt 6 기술 비전 (Technical vision for Qt 6) [2] j2doll 2019.08.08 2121
105 열거형(enum)을 QML에서 사용하는 방법과 문자열(QString)로 얻기 makersweb 2019.08.20 3897
104 [Qt News] Qt for Python을 위한 기술 비전 j2doll 2019.08.20 1626
103 MCU용 Qt에 대해서 makersweb 2019.08.22 1923
102 QSocketNotifier로 파일 디스크립터의 활동감지 makersweb 2019.08.28 1735
101 C++로 구현된 모델을 QML의 ListView에서 참조 file makersweb 2019.09.07 4937
100 컨테이너에 적재된 객체를 편리하게 삭제하기 makersweb 2019.09.18 1670