Porting C++ Builder to Qt [closed]

  • for TStatusBar, use QStatusBar
  • for TListBox, use QListBox (Q3ListBox in Qt4) or QListWidget
  • TStringGrid and TSpeedButton apparently have no equivalent. Use Qt demo software to see what Qt toolkit proposes and find what you are looking for.

For other classes (not mentioned by OP):

  • for TCheckBox, use QCheckBox
  • for TRadioButton, use QRadioButton
  • for TComboBox, use QComboBox

Leave a Comment