gecko-dev/layout/xul/tree/nsTreeSelection.h

60 lines
1.8 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
2012-05-21 11:12:37 +00:00
* 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/. */
2001-02-14 19:39:20 +00:00
#ifndef nsTreeSelection_h__
#define nsTreeSelection_h__
2001-02-14 19:39:20 +00:00
#include "nsITreeSelection.h"
2001-02-16 02:21:34 +00:00
#include "nsITimer.h"
#include "nsCycleCollectionParticipant.h"
#include "mozilla/Attributes.h"
2001-02-14 19:39:20 +00:00
class nsITreeBoxObject;
class nsTreeColumn;
struct nsTreeRange;
2001-02-14 19:39:20 +00:00
class nsTreeSelection final : public nsINativeTreeSelection
2001-02-14 19:39:20 +00:00
{
public:
explicit nsTreeSelection(nsITreeBoxObject* aTree);
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS(nsTreeSelection)
NS_DECL_NSITREESELECTION
2001-02-14 19:39:20 +00:00
// nsINativeTreeSelection: Untrusted code can use us
NS_IMETHOD EnsureNative() override { return NS_OK; }
friend struct nsTreeRange;
2001-02-14 21:38:17 +00:00
2001-02-15 09:43:11 +00:00
protected:
~nsTreeSelection();
2001-02-15 09:43:11 +00:00
nsresult FireOnSelectHandler();
2001-02-16 02:21:34 +00:00
static void SelectCallback(nsITimer *aTimer, void *aClosure);
2001-02-15 09:43:11 +00:00
2001-02-14 19:39:20 +00:00
protected:
// Helper function to get the content node associated with mTree.
already_AddRefed<nsIContent> GetContent();
2001-02-14 19:39:20 +00:00
// Members
nsCOMPtr<nsITreeBoxObject> mTree; // The tree will hold on to us through the view and let go when it dies.
2001-02-14 19:44:38 +00:00
bool mSuppressed; // Whether or not we should be firing onselect events.
int32_t mCurrentIndex; // The item to draw the rect around. The last one clicked, etc.
RefPtr<nsTreeColumn> mCurrentColumn;
int32_t mShiftSelectPivot; // Used when multiple SHIFT+selects are performed to pivot on.
2001-02-14 20:26:18 +00:00
nsTreeRange* mFirstRange; // Our list of ranges.
2001-02-16 02:21:34 +00:00
nsCOMPtr<nsITimer> mSelectTimer;
2001-02-14 19:39:20 +00:00
};
nsresult
NS_NewTreeSelection(nsITreeBoxObject* aTree, nsITreeSelection** aResult);
2001-02-14 19:39:20 +00:00
#endif