gecko-dev/layout/xul/base/src/nsSliderFrame.h

179 lines
5.7 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 11:12:37 +00: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/. */
1999-04-20 21:39:52 +00:00
1999-04-20 21:43:09 +00:00
#ifndef nsSliderFrame_h__
#define nsSliderFrame_h__
1999-04-20 21:39:52 +00:00
#include "nsRepeatService.h"
2000-03-31 07:02:06 +00:00
#include "nsBoxFrame.h"
1999-04-20 21:39:52 +00:00
#include "prtypes.h"
#include "nsIAtom.h"
#include "nsCOMPtr.h"
#include "nsITimer.h"
#include "nsIDOMEventListener.h"
1999-04-20 21:39:52 +00:00
class nsString;
1999-08-19 22:16:23 +00:00
class nsITimer;
class nsSliderFrame;
1999-08-19 22:16:23 +00:00
nsIFrame* NS_NewSliderFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
1999-04-20 21:39:52 +00:00
class nsSliderMediator : public nsIDOMEventListener
{
public:
NS_DECL_ISUPPORTS
nsSliderFrame* mSlider;
nsSliderMediator(nsSliderFrame* aSlider) { mSlider = aSlider; }
virtual ~nsSliderMediator() {}
virtual void SetSlider(nsSliderFrame* aSlider) { mSlider = aSlider; }
NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent);
};
class nsSliderFrame : public nsBoxFrame
1999-04-20 21:39:52 +00:00
{
public:
NS_DECL_FRAMEARENA_HELPERS
friend class nsSliderMediator;
nsSliderFrame(nsIPresShell* aShell, nsStyleContext* aContext);
1999-08-19 22:16:23 +00:00
virtual ~nsSliderFrame();
1999-04-20 21:39:52 +00:00
#ifdef DEBUG
NS_IMETHOD GetFrameName(nsAString& aResult) const {
return MakeFrameName(NS_LITERAL_STRING("SliderFrame"), aResult);
1999-04-20 21:39:52 +00:00
}
#endif
virtual nsSize GetPrefSize(nsBoxLayoutState& aBoxLayoutState);
virtual nsSize GetMinSize(nsBoxLayoutState& aBoxLayoutState);
virtual nsSize GetMaxSize(nsBoxLayoutState& aBoxLayoutState);
NS_IMETHOD DoLayout(nsBoxLayoutState& aBoxLayoutState);
2000-03-31 07:02:06 +00:00
// nsIFrame overrides
NS_IMETHOD AppendFrames(ChildListID aListID,
nsFrameList& aFrameList);
NS_IMETHOD InsertFrames(ChildListID aListID,
nsIFrame* aPrevFrame,
nsFrameList& aFrameList);
NS_IMETHOD RemoveFrame(ChildListID aListID,
nsIFrame* aOldFrame);
virtual void DestroyFrom(nsIFrame* aDestructRoot);
1999-08-29 10:51:15 +00:00
NS_IMETHOD BuildDisplayListForChildren(nsDisplayListBuilder* aBuilder,
const nsRect& aDirtyRect,
const nsDisplayListSet& aLists);
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
const nsRect& aDirtyRect,
const nsDisplayListSet& aLists);
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
nsIAtom* aAttribute,
PRInt32 aModType);
NS_IMETHOD Init(nsIContent* aContent,
nsIFrame* aParent,
nsIFrame* asPrevInFlow);
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
nsGUIEvent* aEvent,
nsEventStatus* aEventStatus);
NS_IMETHOD SetInitialChildList(ChildListID aListID,
nsFrameList& aChildList);
2007-05-25 10:09:29 +00:00
virtual nsIAtom* GetType() const;
nsresult StartDrag(nsIDOMEvent* aEvent);
static PRInt32 GetCurrentPosition(nsIContent* content);
static PRInt32 GetMinPosition(nsIContent* content);
static PRInt32 GetMaxPosition(nsIContent* content);
static PRInt32 GetIncrement(nsIContent* content);
static PRInt32 GetPageIncrement(nsIContent* content);
static PRInt32 GetIntegerAttribute(nsIContent* content, nsIAtom* atom, PRInt32 defaultValue);
2000-03-31 07:02:06 +00:00
void EnsureOrient();
NS_IMETHOD HandlePress(nsPresContext* aPresContext,
1999-08-19 22:16:23 +00:00
nsGUIEvent * aEvent,
nsEventStatus* aEventStatus);
1999-08-19 22:16:23 +00:00
NS_IMETHOD HandleMultiplePress(nsPresContext* aPresContext,
nsGUIEvent * aEvent,
nsEventStatus* aEventStatus,
bool aControlHeld) { return NS_OK; }
1999-08-19 22:16:23 +00:00
NS_IMETHOD HandleDrag(nsPresContext* aPresContext,
nsGUIEvent * aEvent,
nsEventStatus* aEventStatus) { return NS_OK; }
NS_IMETHOD HandleRelease(nsPresContext* aPresContext,
1999-08-19 22:16:23 +00:00
nsGUIEvent * aEvent,
nsEventStatus* aEventStatus);
1999-08-19 22:16:23 +00:00
private:
bool GetScrollToClick();
nsIFrame* GetScrollbar();
2000-03-31 07:02:06 +00:00
void PageUpDown(nscoord change);
void SetCurrentThumbPosition(nsIContent* aScrollbar, nscoord aNewPos, bool aIsSmooth,
bool aImmediateRedraw, bool aMaySnap);
void SetCurrentPosition(nsIContent* aScrollbar, PRInt32 aNewPos, bool aIsSmooth,
bool aImmediateRedraw);
void SetCurrentPositionInternal(nsIContent* aScrollbar, PRInt32 pos,
bool aIsSmooth, bool aImmediateRedraw);
2007-05-25 10:09:29 +00:00
nsresult CurrentPositionChanged(nsPresContext* aPresContext,
bool aImmediateRedraw);
void DragThumb(bool aGrabMouseEvents);
void AddListener();
void RemoveListener();
bool isDraggingThumb();
void StartRepeat() {
nsRepeatService::GetInstance()->Start(Notify, this);
}
void StopRepeat() {
nsRepeatService::GetInstance()->Stop(Notify, this);
}
void Notify();
static void Notify(void* aData) {
(static_cast<nsSliderFrame*>(aData))->Notify();
}
nsPoint mDestinationPoint;
nsRefPtr<nsSliderMediator> mMediator;
float mRatio;
nscoord mDragStart;
nscoord mThumbStart;
1999-04-20 21:39:52 +00:00
1999-06-23 17:00:17 +00:00
PRInt32 mCurPos;
nscoord mChange;
// true if an attribute change has been caused by the user manipulating the
// slider. This allows notifications to tell how a slider's current position
// was changed.
bool mUserChanged;
static bool gMiddlePref;
static PRInt32 gSnapMultiplier;
1999-04-20 21:43:09 +00:00
}; // class nsSliderFrame
1999-04-20 21:39:52 +00:00
#endif