Hi to all!

I need to develop an subclassed table widget, which will look something like that:
Qt Code:
  1. +===================================+
  2. + Coca Cola +
  3. + 1,50 EUR 002 3,00 EUR +
  4. + Sprite +
  5. + 1,30 EUR 010 13,00 EUR +
  6. + Cheeseburger with salad +
  7. + 3,80 EUR 004 15,20 EUR +
  8. + Beefstake with potato and salad +
  9. + 24,67 EUR 012 296,04 EUR +
  10. +===================================+
  11. + TOTAL: 327,24 EUR +
  12. +===================================+
To copy to clipboard, switch view to plain text mode 
The point is that every row consists of two lines, the upper one will hold merchandize name (solo column) and the lower one will consists of following fields in order:
  • price/merchandize unit (eur formatted, including euro sign
  • number of merchandize unit (formatted with leading 0)
  • price/unit*number of merchandize units (eur formatted, including euro sign)
  • at the end there will be total field

Does someone has any idea how to achieve that?!