diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/xul/templates/nsXULSortService.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/xul/templates/nsXULSortService.h')
-rw-r--r-- | dom/xul/templates/nsXULSortService.h | 187 |
1 files changed, 187 insertions, 0 deletions
diff --git a/dom/xul/templates/nsXULSortService.h b/dom/xul/templates/nsXULSortService.h new file mode 100644 index 000000000..306481e0d --- /dev/null +++ b/dom/xul/templates/nsXULSortService.h @@ -0,0 +1,187 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This Original Code has been modified by IBM Corporation. + * Modifications made by IBM described herein are + * Copyright (c) International Business Machines + * Corporation, 2000 + * + * Modifications to Mozilla code or documentation + * identified per MPL Section 3.3 + * + * Date Modified by Description of modification + * 03/27/2000 IBM Corp. Added PR_CALLBACK for Optlink + * use in OS2 + */ + +/* + This sort service is used to sort template built content or content by attribute. + */ + +#ifndef nsXULTemplateResultSetRDF_h +#define nsXULTemplateResultSetRDF_h + +#include "nsCOMPtr.h" +#include "nsCOMArray.h" +#include "nsTArray.h" +#include "nsIContent.h" +#include "nsIXULTemplateResult.h" +#include "nsIXULTemplateQueryProcessor.h" +#include "nsIXULSortService.h" +#include "nsCycleCollectionParticipant.h" + +enum nsSortState_direction { + nsSortState_descending, + nsSortState_ascending, + nsSortState_natural +}; + +// the sort state holds info about the current sort +struct nsSortState +{ + bool initialized; + MOZ_INIT_OUTSIDE_CTOR bool invertSort; + MOZ_INIT_OUTSIDE_CTOR bool inbetweenSeparatorSort; + MOZ_INIT_OUTSIDE_CTOR bool sortStaticsLast; + MOZ_INIT_OUTSIDE_CTOR bool isContainerRDFSeq; + + uint32_t sortHints; + + MOZ_INIT_OUTSIDE_CTOR nsSortState_direction direction; + nsAutoString sort; + nsCOMArray<nsIAtom> sortKeys; + + nsCOMPtr<nsIXULTemplateQueryProcessor> processor; + nsCOMPtr<nsIContent> lastContainer; + MOZ_INIT_OUTSIDE_CTOR bool lastWasFirst, lastWasLast; + + nsSortState() + : initialized(false), + isContainerRDFSeq(false), + sortHints(0) + { + } + void Traverse(nsCycleCollectionTraversalCallback &cb) const + { + cb.NoteXPCOMChild(processor); + cb.NoteXPCOMChild(lastContainer); + } +}; + +// information about a particular item to be sorted +struct contentSortInfo { + nsCOMPtr<nsIContent> content; + nsCOMPtr<nsIContent> parent; + nsCOMPtr<nsIXULTemplateResult> result; + void swap(contentSortInfo& other) + { + content.swap(other.content); + parent.swap(other.parent); + result.swap(other.result); + } +}; + +//////////////////////////////////////////////////////////////////////// +// ServiceImpl +// +// This is the sort service. +// +class XULSortServiceImpl : public nsIXULSortService +{ +protected: + XULSortServiceImpl(void) {} + virtual ~XULSortServiceImpl(void) {} + + friend nsresult NS_NewXULSortService(nsIXULSortService** mgr); + +private: + +public: + // nsISupports + NS_DECL_ISUPPORTS + + // nsISortService + NS_DECL_NSIXULSORTSERVICE + + /** + * Set sort and sortDirection attributes when a sort is done. + */ + void + SetSortHints(nsIContent *aNode, nsSortState* aSortState); + + /** + * Set sortActive and sortDirection attributes on a tree column when a sort + * is done. The column to change is the one with a sort attribute that + * matches the sort key. The sort attributes are removed from the other + * columns. + */ + void + SetSortColumnHints(nsIContent *content, + const nsAString &sortResource, + const nsAString &sortDirection); + + /** + * Determine the list of items which need to be sorted. This is determined + * in the following way: + * - for elements that have a content builder, get its list of generated + * results + * - otherwise, for trees, get the child treeitems + * - otherwise, get the direct children + */ + nsresult + GetItemsToSort(nsIContent *aContainer, + nsSortState* aSortState, + nsTArray<contentSortInfo>& aSortItems); + + /** + * Get the list of items to sort for template built content + */ + nsresult + GetTemplateItemsToSort(nsIContent* aContainer, + nsIXULTemplateBuilder* aBuilder, + nsSortState* aSortState, + nsTArray<contentSortInfo>& aSortItems); + + /** + * Sort a container using the supplied sort state details. + */ + nsresult + SortContainer(nsIContent *aContainer, nsSortState* aSortState); + + /** + * Given a list of sortable items, reverse the list. This is done + * when simply changing the sort direction for the same key. + */ + nsresult + InvertSortInfo(nsTArray<contentSortInfo>& aData, + int32_t aStart, int32_t aNumItems); + + /** + * Initialize sort information from attributes specified on the container, + * the sort key and sort direction. + * + * @param aRootElement the element that contains sort attributes + * @param aContainer the container to sort, usually equal to aRootElement + * @param aSortKey space separated list of sort keys + * @param aSortDirection direction to sort in + * @param aSortState structure filled in with sort data + */ + static nsresult + InitializeSortState(nsIContent* aRootElement, + nsIContent* aContainer, + const nsAString& aSortKey, + const nsAString& aSortDirection, + nsSortState* aSortState); + + /** + * Compares aLeft and aRight and returns < 0, 0, or > 0. The sort + * hints are checked for case matching and integer sorting. + */ + static int32_t CompareValues(const nsAString& aLeft, + const nsAString& aRight, + uint32_t aSortHints); +}; + +#endif |