mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:12:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/Vector.h>
 | |
| 
 | |
| class History final {
 | |
| public:
 | |
|     void push(StringView history_item);
 | |
|     String current();
 | |
| 
 | |
|     void go_back();
 | |
|     void go_forward();
 | |
| 
 | |
|     bool can_go_back() { return m_current_history_item > 0; }
 | |
|     bool can_go_forward() { return m_current_history_item + 1 < static_cast<int>(m_items.size()); }
 | |
| 
 | |
|     void clear();
 | |
| 
 | |
| private:
 | |
|     Vector<String> m_items;
 | |
|     int m_current_history_item { -1 };
 | |
| };
 | 
