forked from mirrors/gecko-dev
		
	 680815cd6e
			
		
	
	
		680815cd6e
		
	
	
	
	
		
			
			This patch was generated automatically by the "modeline.py" script, available here: https://github.com/amccreight/moz-source-tools/blob/master/modeline.py For every file that is modified in this patch, the changes are as follows: (1) The patch changes the file to use the exact C++ mode lines from the Mozilla coding style guide, available here: https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Coding_Style#Mode_Line (2) The patch deletes any blank lines between the mode line & the MPL boilerplate comment. (3) If the file previously had the mode lines and MPL boilerplate in a single contiguous C++ comment, then the patch splits them into separate C++ comments, to match the boilerplate in the coding style. MozReview-Commit-ID: EuRsDue63tK --HG-- extra : rebase_source : 3356d4b80ff6213935192e87cdbc9103fec6084c
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- 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
 | |
|  * 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/. */
 | |
| 
 | |
| /* constants for frame state bits and a type to store them in a uint64_t */
 | |
| 
 | |
| #include "nsFrameState.h"
 | |
| 
 | |
| #include "nsBlockFrame.h"
 | |
| #include "nsBoxFrame.h"
 | |
| #include "nsBulletFrame.h"
 | |
| #include "nsFlexContainerFrame.h"
 | |
| #include "nsGridContainerFrame.h"
 | |
| #include "nsGfxScrollFrame.h"
 | |
| #include "nsIFrame.h"
 | |
| #include "nsSVGDisplayableFrame.h"
 | |
| #include "nsImageFrame.h"
 | |
| #include "nsInlineFrame.h"
 | |
| #include "nsPlaceholderFrame.h"
 | |
| #include "nsRubyTextFrame.h"
 | |
| #include "nsRubyTextContainerFrame.h"
 | |
| #include "nsSVGContainerFrame.h"
 | |
| #include "nsTableCellFrame.h"
 | |
| #include "nsTableRowFrame.h"
 | |
| #include "nsTableRowGroupFrame.h"
 | |
| #include "nsTextFrame.h"
 | |
| 
 | |
| namespace mozilla {
 | |
| 
 | |
| #ifdef DEBUG
 | |
| nsCString
 | |
| GetFrameState(nsIFrame* aFrame)
 | |
| {
 | |
|   nsCString result;
 | |
|   AutoTArray<const char*,3> groups;
 | |
| 
 | |
|   nsFrameState state = aFrame->GetStateBits();
 | |
| 
 | |
|   if (state == nsFrameState(0)) {
 | |
|     result.Assign('0');
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
| #define FRAME_STATE_GROUP(name_, class_)                                      \
 | |
|   {                                                                           \
 | |
|     class_* frame = do_QueryFrame(aFrame);                                    \
 | |
|     if (frame && (groups.IsEmpty() || strcmp(groups.LastElement(), #name_))) {\
 | |
|       groups.AppendElement(#name_);                                           \
 | |
|     }                                                                         \
 | |
|   }
 | |
| #define FRAME_STATE_BIT(group_, value_, name_)                                \
 | |
|   if ((state & NS_FRAME_STATE_BIT(value_)) && groups.Contains(#group_)) {     \
 | |
|     if (!result.IsEmpty()) {                                                  \
 | |
|       result.InsertLiteral(" | ", 0);                                         \
 | |
|     }                                                                         \
 | |
|     result.InsertLiteral(#name_, 0);                                          \
 | |
|     state = state & ~NS_FRAME_STATE_BIT(value_);                              \
 | |
|   }
 | |
| #include "nsFrameStateBits.h"
 | |
| #undef FRAME_STATE_GROUP
 | |
| #undef FRAME_STATE_BIT
 | |
| 
 | |
|   if (state) {
 | |
|     result.AppendPrintf(" | 0x%0" PRIx64, static_cast<uint64_t>(state));
 | |
|   }
 | |
| 
 | |
|   return result;
 | |
| }
 | |
| 
 | |
| void
 | |
| PrintFrameState(nsIFrame* aFrame)
 | |
| {
 | |
|   printf("%s\n", GetFrameState(aFrame).get());
 | |
| }
 | |
| #endif
 | |
| 
 | |
| } // namespace mozilla
 |