그래픽 & 멀티미디어
예로 라벨위젯 같은 경우 화면에 보이거나 감추는 슬롯이 있고, 델파이의 Appliation 객제와 비슷한 qapp 는 프로그램을 종료하는 quit() 슬롯이 있습니다.
#include <qapplication.h> #define kor(str) QString::fromLocal8Bit(str) class TForm:public QWidget TForm::TForm() int main(int argc, char **argv) app.setMainWidget( &frm); return app.exec(); |
길게 말하기가 그래서 화면 토글이라고 했습니다. 버튼1 을 누르면 라벨을 감추고, 버튼2 를 누르면 다시 화면에 출력하도록 하는 예제입니다.
#include <qapplication.h> #define kor(str) QString::fromLocal8Bit(str) class TForm:public QWidget TForm::TForm() btnClose = new QPushButton( kor( "&Q) 종료!!"), this); int main(int argc, char **argv) app.setMainWidget( &frm); return app.exec(); |
태그: *QT *그래픽