X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fbufferview.h;h=26102fd256e66cd9ba2837c0acebef761104953a;hp=9877c0edf7c5aecc1d68ab48b322e496d0469459;hb=efee441a243efb88929e1e275d71ee27991bf074;hpb=b962956cd82ba1900cc6d3390b691b90401bc1b4 diff --git a/src/uisupport/bufferview.h b/src/uisupport/bufferview.h index 9877c0ed..26102fd2 100644 --- a/src/uisupport/bufferview.h +++ b/src/uisupport/bufferview.h @@ -93,7 +93,31 @@ private slots: void joinChannel(const QModelIndex &index); void toggleHeader(bool checked); + /** + * Expand all active networks and collapse inactive ones unless manually changed + * + * Applies to all networks. Shouldn't need called except during initialization. + */ + void setExpandedState(); + + /** + * Save the current display state of the given network + * + * Tracks expanded or collapsed and active or inactive. + * + * @see setExpandedState() + * @param[in] networkIdx QModelIndex of the root network to store + */ void storeExpandedState(const QModelIndex &networkIdx); + + /** + * Set the display state of the given network according to network status and manual changes + * + * Expands if active or previously expanded, collapses if inactive or previously collapsed. + * + * @see storeExpandedState() + * @param[in] networkIdx QModelIndex of the root network to update + */ void setExpandedState(const QModelIndex &networkIdx); void on_configChanged();