4-09-2011

Short Description: Qt4 Port: (MRM) Slot List Dialog
Bug Number: n/a
Release notes (y/n): no
For Release Nums: 6.1

------------------------
Q3GUI/SlotListDlg.hpp
Q3GUI/SlotListDlg.cpp
Q3GUI/SlotListWidgets.ui
------------------------

Qt4 Port:
  Q3ListView     --> QTreeWidget : _slotListView
  Q3ListViewItem --> QTreeWidgetItem : class SlotListDlg::Item
  ... added QTreeWidgetItem::operator< definition for better sorting. 

Also, two uses of Q3FileDialog were ported QFileDialog making better
use of file access history, in methods:
  void SlotListDlg::loadHandler()
  void SlotListDlg::saveAsHandler()

Support for Account Slots has substantially been implemented, but the 
GUS Slot Selector is currently limited to only physical slots, based 
on this symbol:
  static const bool GUS_ALLOW_ACCOUNT_SLOTS (false);

Added column index symbols. (These had been hard-coded integers in code):
  static const int COL_OBJ_TYPE  (0);
  static const int COL_OBJ_NAME  (1);
  static const int COL_SLOT_NAME (2);

Added Object Type icons to the "Object Name" column.

---