2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
#ifndef AccCollector_h_
|
|
|
|
#define AccCollector_h_
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
#include "filters.h"
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsTArray.h"
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
/**
|
|
|
|
* Collect accessible children complying with filter function. Provides quick
|
|
|
|
* access to accessible by index.
|
|
|
|
*/
|
|
|
|
class AccCollector
|
2010-05-20 00:40:25 -07:00
|
|
|
{
|
2010-06-21 06:08:27 -07:00
|
|
|
public:
|
|
|
|
AccCollector(nsAccessible* aRoot, filters::FilterFuncPtr aFilterFunc);
|
|
|
|
virtual ~AccCollector();
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
/**
|
|
|
|
* Return accessible count within the collection.
|
|
|
|
*/
|
|
|
|
PRUint32 Count();
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
/**
|
|
|
|
* Return an accessible from the collection at the given index.
|
|
|
|
*/
|
|
|
|
nsAccessible* GetAccessibleAt(PRUint32 aIndex);
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
/**
|
|
|
|
* Return index of the given accessible within the collection.
|
|
|
|
*/
|
2010-08-15 04:28:49 -07:00
|
|
|
virtual PRInt32 GetIndexAt(nsAccessible* aAccessible);
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Ensure accessible at the given index is stored and return it.
|
|
|
|
*/
|
|
|
|
nsAccessible* EnsureNGetObject(PRUint32 aIndex);
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
/**
|
|
|
|
* Ensure index for the given accessible is stored and return it.
|
|
|
|
*/
|
|
|
|
PRInt32 EnsureNGetIndex(nsAccessible* aAccessible);
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
/**
|
|
|
|
* Append the object to collection.
|
|
|
|
*/
|
|
|
|
virtual void AppendObject(nsAccessible* aAccessible);
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
filters::FilterFuncPtr mFilterFunc;
|
|
|
|
nsAccessible* mRoot;
|
2012-05-25 03:53:45 -07:00
|
|
|
PRUint32 mRootChildIdx;
|
2010-05-20 00:40:25 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
nsTArray<nsAccessible*> mObjects;
|
|
|
|
|
|
|
|
private:
|
|
|
|
AccCollector();
|
|
|
|
AccCollector(const AccCollector&);
|
|
|
|
AccCollector& operator =(const AccCollector&);
|
|
|
|
};
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
/**
|
|
|
|
* Collect embedded objects. Provide quick access to accessible by index and
|
|
|
|
* vice versa.
|
|
|
|
*/
|
|
|
|
class EmbeddedObjCollector : public AccCollector
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~EmbeddedObjCollector() { };
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual PRInt32 GetIndexAt(nsAccessible* aAccessible);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Make sure it's used by nsAccessible class only.
|
|
|
|
EmbeddedObjCollector(nsAccessible* aRoot) :
|
|
|
|
AccCollector(aRoot, filters::GetEmbeddedObject) { }
|
|
|
|
|
|
|
|
virtual void AppendObject(nsAccessible* aAccessible);
|
|
|
|
|
|
|
|
friend class nsAccessible;
|
|
|
|
};
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
#endif
|