Show
Ignore:
Timestamp:
06/14/08 03:47:03 (7 months ago)
Author:
flynd
Message:

Updated to work with and take advantage of new group handling. Contact list model is now properly updated from signals when groups change.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/dialogs/editgrpdlg.h

    r6209 r6283  
    4242 
    4343private: 
     44  /** 
     45   * Get group id for group currently marked 
     46   * 
     47   * @return Group id for current group or zero if no group is marked 
     48   */ 
     49  unsigned short currentGroupId() const; 
     50 
     51  /** 
     52   * Set current group id in list 
     53   * 
     54   * @param groupId Id of group to make current 
     55   */ 
     56  void setCurrentGroupId(unsigned short groupId); 
     57 
     58  /** 
     59   * Move a group in the list 
     60   * 
     61   * @param delta Direction to move, positive for down 
     62   */ 
     63  void moveGroup(int delta); 
     64 
    4465  QListWidget* lstGroups; 
    4566  QGroupBox* grpGroups; 
     
    5879  InfoField* nfoNewUser; 
    5980 
    60   unsigned short m_nEditGrp; 
     81  unsigned short myEditGroupId; 
    6182 
    6283  void RefreshList();