| | 183 | |
| | 184 | /** |
| | 185 | * Signal emitted before a user is added |
| | 186 | * |
| | 187 | * @param group The affected group (always sent as this) |
| | 188 | * @param row Row number for the new user |
| | 189 | */ |
| | 190 | void beginInsert(ContactGroup* group, int row); |
| | 191 | |
| | 192 | /** |
| | 193 | * Signal emitted after a user has been added |
| | 194 | */ |
| | 195 | void endInsert(); |
| | 196 | |
| | 197 | /** |
| | 198 | * Signal emitted before a user is removed |
| | 199 | * |
| | 200 | * @param group The affected group (always sent as this) |
| | 201 | * @param row Row number for the user to be removed |
| | 202 | */ |
| | 203 | void beginRemove(ContactGroup* gorup, int row); |
| | 204 | |
| | 205 | /** |
| | 206 | * Segnal emitted after a user has been removed |
| | 207 | */ |
| | 208 | void endRemove(); |