diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-12-21 17:21:48 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-12-21 17:21:48 -0500 |
commit | ced5b819d74fa70fc2050b13749bfe1387340583 (patch) | |
tree | 1db75b29eabde12c9bf93108816f48370e1b7541 /indra/newview/llinventorymodel.h | |
parent | d1eb2948f8a65e6f7631d836b2367ebe435e1efa (diff) |
For EXT-3567: Folders should show as 'Loading...' when contents being fetched
Diffstat (limited to 'indra/newview/llinventorymodel.h')
-rw-r--r-- | indra/newview/llinventorymodel.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llinventorymodel.h b/indra/newview/llinventorymodel.h index 27bbca493d..28c51e97bc 100644 --- a/indra/newview/llinventorymodel.h +++ b/indra/newview/llinventorymodel.h @@ -516,6 +516,14 @@ public: // Add categories to a list to be fetched in bulk. static void bulkFetch(std::string url); + static bool libraryFetchStarted(); + static bool libraryFetchCompleted(); + static bool libraryFetchInProgress(); + + static bool myInventoryFetchStarted(); + static bool myInventoryFetchCompleted(); + static bool myInventoryFetchInProgress(); + private: static BOOL sMyInventoryFetchStarted; static BOOL sLibraryFetchStarted; @@ -525,6 +533,7 @@ private: // completing the fetch once per session should be sufficient static BOOL sBackgroundFetchActive; static S16 sBulkFetchCount; + }; // a special inventory model for the agent |