Beispiel #1
0
NS_IMETHODIMP
nsDeckFrame::AppendFrames(nsIAtom*        aListName,
                          nsFrameList&    aFrameList)
{
  CreateViewsForFrames(aFrameList);
  return nsBoxFrame::AppendFrames(aListName, aFrameList);
}
Beispiel #2
0
NS_IMETHODIMP
nsDeckFrame::SetInitialChildList(nsIAtom*        aListName,
                                 nsFrameList&    aChildList)
{
  CreateViewsForFrames(aChildList);
  return nsBoxFrame::SetInitialChildList(aListName, aChildList);
}
Beispiel #3
0
NS_IMETHODIMP
nsDeckFrame::AppendFrames(ChildListID     aListID,
                          nsFrameList&    aFrameList)
{
  CreateViewsForFrames(aFrameList);
  return nsBoxFrame::AppendFrames(aListID, aFrameList);
}
Beispiel #4
0
NS_IMETHODIMP
nsDeckFrame::SetInitialChildList(ChildListID     aListID,
                                 nsFrameList&    aChildList)
{
  CreateViewsForFrames(aChildList);
  return nsBoxFrame::SetInitialChildList(aListID, aChildList);
}
Beispiel #5
0
NS_IMETHODIMP
nsDeckFrame::InsertFrames(nsIAtom*        aListName,
                          nsIFrame*       aPrevFrame,
                          nsFrameList&    aFrameList)
{
  CreateViewsForFrames(aFrameList);
  return nsBoxFrame::InsertFrames(aListName, aPrevFrame, aFrameList);
}
Beispiel #6
0
NS_IMETHODIMP
nsDeckFrame::InsertFrames(ChildListID     aListID,
                          nsIFrame*       aPrevFrame,
                          nsFrameList&    aFrameList)
{
  CreateViewsForFrames(aFrameList);
  return nsBoxFrame::InsertFrames(aListID, aPrevFrame, aFrameList);
}