mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:32:44 +00:00 
			
		
		
		
	 6e19ab2bbc
			
		
	
	
		6e19ab2bbc
		
	
	
	
	
		
			
			We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			92 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Martin Falisse <mfalisse@outlook.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/CSS/Length.h>
 | |
| #include <LibWeb/Layout/BlockFormattingContext.h>
 | |
| #include <LibWeb/Layout/Box.h>
 | |
| #include <LibWeb/Layout/FormattingContext.h>
 | |
| 
 | |
| namespace Web::Layout {
 | |
| 
 | |
| class GridFormattingContext final : public BlockFormattingContext {
 | |
| public:
 | |
|     explicit GridFormattingContext(LayoutState&, BlockContainer const&, FormattingContext* parent);
 | |
|     ~GridFormattingContext();
 | |
| 
 | |
|     virtual void run(Box const&, LayoutMode, AvailableSpace const& available_space) override;
 | |
|     virtual float automatic_content_height() const override;
 | |
| 
 | |
| private:
 | |
|     float m_automatic_content_height { 0 };
 | |
|     bool is_auto_positioned_row(CSS::GridTrackPlacement const&, CSS::GridTrackPlacement const&) const;
 | |
|     bool is_auto_positioned_column(CSS::GridTrackPlacement const&, CSS::GridTrackPlacement const&) const;
 | |
|     bool is_auto_positioned_track(CSS::GridTrackPlacement const&, CSS::GridTrackPlacement const&) const;
 | |
| 
 | |
|     struct TemporaryTrack {
 | |
|         CSS::GridSize min_track_sizing_function;
 | |
|         CSS::GridSize max_track_sizing_function;
 | |
|         float base_size { 0 };
 | |
|         float growth_limit { 0 };
 | |
|         float space_to_distribute { 0 };
 | |
|         float planned_increase { 0 };
 | |
|         bool is_gap { false };
 | |
| 
 | |
|         TemporaryTrack(CSS::GridSize min_track_sizing_function, CSS::GridSize max_track_sizing_function)
 | |
|             : min_track_sizing_function(min_track_sizing_function)
 | |
|             , max_track_sizing_function(max_track_sizing_function)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         TemporaryTrack(CSS::GridSize track_sizing_function)
 | |
|             : min_track_sizing_function(track_sizing_function)
 | |
|             , max_track_sizing_function(track_sizing_function)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         TemporaryTrack(float size_in_px, bool is_gap)
 | |
|             : min_track_sizing_function(CSS::GridSize(CSS::Length(size_in_px, CSS::Length::Type::Px)))
 | |
|             , max_track_sizing_function(CSS::GridSize(CSS::Length(size_in_px, CSS::Length::Type::Px)))
 | |
|             , base_size(size_in_px)
 | |
|             , is_gap(is_gap)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         TemporaryTrack()
 | |
|             : min_track_sizing_function(CSS::GridSize::make_auto())
 | |
|             , max_track_sizing_function(CSS::GridSize::make_auto())
 | |
|         {
 | |
|         }
 | |
|     };
 | |
| 
 | |
|     Vector<TemporaryTrack> m_grid_rows;
 | |
|     Vector<TemporaryTrack> m_grid_columns;
 | |
| 
 | |
|     float get_free_space_x(AvailableSpace const& available_space);
 | |
|     float get_free_space_y(Box const&);
 | |
| 
 | |
|     int get_line_index_by_line_name(DeprecatedString const& line_name, CSS::GridTrackSizeList);
 | |
| };
 | |
| 
 | |
| class OccupationGrid {
 | |
| public:
 | |
|     OccupationGrid(int column_count, int row_count);
 | |
| 
 | |
|     void maybe_add_column(int needed_number_of_columns);
 | |
|     void maybe_add_row(int needed_number_of_rows);
 | |
|     void set_occupied(int column_start, int column_end, int row_start, int row_end);
 | |
|     void set_occupied(int column_index, int row_index);
 | |
| 
 | |
|     int column_count() { return static_cast<int>(m_occupation_grid[0].size()); }
 | |
|     int row_count() { return static_cast<int>(m_occupation_grid.size()); }
 | |
|     bool is_occupied(int column_index, int row_index);
 | |
| 
 | |
| private:
 | |
|     Vector<Vector<bool>> m_occupation_grid;
 | |
| };
 | |
| 
 | |
| }
 |