#include <QAPPLICATION> #include <QHBOXLAYOUT> #include <QSLIDER> #include <QSPINBOX> int main(int argc, char *argv[]) { QApplication app(argc, argv); QWidget *window = new QWidget; window->setWindowTitle("Enter Your Age"); QSpinBox *spinBox = new QSpinBox; QSlider *slider = new QSlider(Qt::Horizontal); spinBox->setRange(0,130); slider->setRange(0,130); QObject::connect(spinBox, SIGNAL(valueChanged(int)), slider, SLOT(setValue(int))); QObject::connect(slider, SIGNAL(valueChanged(int)), spinBox, SLOT(setValue(int))); spinBox->setValue(35); QHBoxLayout *layout = new QHBoxLayout; layout->addWidget(spinBox); layout->addWidget(slider); window->setLayout(layout); window->show(); return app.exec(); }
QHBoxLayout : 위젯들을 왼쪽에서 오른쪽으로 배열
QVBoxLayout : 웨젯들을 위에서 아래로 배열
출력 결과
참조 : Qt4를 이용한 C++ GUI 프로그래밍 2판
'Qt Programming' 카테고리의 다른 글
시그널/슬롯 (0) | 2011.02.22 |
---|---|
Qt프로그래밍으로의 첫걸음 (0) | 2011.02.13 |
Qt프로그래밍 개발툴 설치 (0) | 2011.02.13 |