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

60 строки
1.7 KiB
C
Исходник Обычный вид История

2001-02-14 22:39:20 +03:00
/* -*- Mode: C++; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
2012-05-21 15:12:37 +04: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/. */
2001-02-14 22:39:20 +03:00
#ifndef nsTreeSelection_h__
#define nsTreeSelection_h__
2001-02-14 22:39:20 +03:00
#include "nsITreeSelection.h"
#include "nsITreeColumns.h"
2001-02-16 05:21:34 +03:00
#include "nsITimer.h"
#include "nsCycleCollectionParticipant.h"
#include "mozilla/Attributes.h"
2001-02-14 22:39:20 +03:00
class nsITreeBoxObject;
struct nsTreeRange;
2001-02-14 22:39:20 +03:00
class nsTreeSelection final : public nsINativeTreeSelection
2001-02-14 22:39:20 +03:00
{
public:
explicit nsTreeSelection(nsITreeBoxObject* aTree);
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS(nsTreeSelection)
NS_DECL_NSITREESELECTION
2001-02-14 22:39:20 +03:00
// nsINativeTreeSelection: Untrusted code can use us
NS_IMETHOD EnsureNative() override { return NS_OK; }
friend struct nsTreeRange;
2001-02-15 00:38:17 +03:00
2001-02-15 12:43:11 +03:00
protected:
~nsTreeSelection();
2001-02-15 12:43:11 +03:00
nsresult FireOnSelectHandler();
2001-02-16 05:21:34 +03:00
static void SelectCallback(nsITimer *aTimer, void *aClosure);
2001-02-15 12:43:11 +03:00
2001-02-14 22:39:20 +03:00
protected:
// Helper function to get the content node associated with mTree.
already_AddRefed<nsIContent> GetContent();
2001-02-14 22:39:20 +03:00
// Members
nsCOMPtr<nsITreeBoxObject> mTree; // The tree will hold on to us through the view and let go when it dies.
2001-02-14 22:44:38 +03: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.
nsCOMPtr<nsITreeColumn> mCurrentColumn;
int32_t mShiftSelectPivot; // Used when multiple SHIFT+selects are performed to pivot on.
2001-02-14 23:26:18 +03:00
nsTreeRange* mFirstRange; // Our list of ranges.
2001-02-16 05:21:34 +03:00
nsCOMPtr<nsITimer> mSelectTimer;
2001-02-14 22:39:20 +03:00
};
nsresult
NS_NewTreeSelection(nsITreeBoxObject* aTree, nsITreeSelection** aResult);
2001-02-14 22:39:20 +03:00
#endif