Advertisement
Guest User

Untitled

a guest
Dec 20th, 2016
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. QVBoxLayout* mainLayout = new QVBoxLayout(this);
  2. QScrollArea* scroll = new QScrollArea;
  3. mainLayout->addWidget(scroll);
  4.  
  5. QWidget* ScrollAreaWidgetContents = new QWidget(scroll);
  6. QGridLayout* ScrollLayout = new QGridLayout(ScrollAreaWidgetContents);
  7. QWidget* widget = new QWidget;
  8. ScrollLayout ->addWidget(widget);
  9.  
  10. QLabel* lbl = new QLabel;
  11. QFont font;
  12. font.setPixelSize(24);
  13. lbl->setFont(font);
  14. lbl->setText("Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diem nonummy nibh euismod tincidunt ut lacreet dolore magna aliguam erat volutpat.");
  15.  
  16. ScrollLayout->addWidget(lbl);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement