mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-10-31 03:24:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			183 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			183 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // Define the standard order in which to include header files
 | |
| // All platform headers should be included before Scintilla headers
 | |
| // and each of these groups are then divided into directory groups.
 | |
| 
 | |
| // C standard library
 | |
| #include <stddef.h>
 | |
| #include <stdlib.h>
 | |
| #include <stdint.h>
 | |
| #include <string.h>
 | |
| #include <stdio.h>
 | |
| #include <stdarg.h>
 | |
| #include <time.h>
 | |
| #include <math.h>
 | |
| #include <assert.h>
 | |
| #include <ctype.h>
 | |
| #include <limits.h>
 | |
| 
 | |
| // C++ wrappers of C standard library
 | |
| #include <cstddef>
 | |
| #include <cstdlib>
 | |
| #include <cstdint>
 | |
| #include <cassert>
 | |
| #include <cstring>
 | |
| #include <cctype>
 | |
| #include <cstdio>
 | |
| #include <cstdarg>
 | |
| #include <ctime>
 | |
| #include <cmath>
 | |
| #include <climits>
 | |
| 
 | |
| // C++ standard library
 | |
| #include <stdexcept>
 | |
| #include <new>
 | |
| #include <utility>
 | |
| #include <tuple>
 | |
| #include <string>
 | |
| #include <string_view>
 | |
| #include <vector>
 | |
| #include <deque>
 | |
| #include <map>
 | |
| #include <set>
 | |
| #include <forward_list>
 | |
| #include <algorithm>
 | |
| #include <iterator>
 | |
| #include <functional>
 | |
| #include <memory>
 | |
| #include <numeric>
 | |
| #include <chrono>
 | |
| #include <regex>
 | |
| #include <iostream>
 | |
| #include <sstream>
 | |
| 
 | |
| // POSIX
 | |
| #include <sys/time.h>
 | |
| 
 | |
| // GTK+ headers
 | |
| #include <glib.h>
 | |
| #include <gmodule.h>
 | |
| #include <gdk/gdk.h>
 | |
| #include <gtk/gtk.h>
 | |
| #include <gdk/gdkkeysyms.h>
 | |
| #include <gdk/gdkwayland.h>
 | |
| #include <gtk/gtk-a11y.h>
 | |
| 
 | |
| // Windows headers
 | |
| #include <windows.h>
 | |
| #include <commctrl.h>
 | |
| #include <richedit.h>
 | |
| #include <windowsx.h>
 | |
| #include <zmouse.h>
 | |
| #include <ole2.h>
 | |
| #include <d2d1.h>
 | |
| #include <dwrite.h>
 | |
| 
 | |
| // Cocoa headers
 | |
| #include <Cocoa/Cocoa.h>
 | |
| #import <Foundation/NSGeometry.h>
 | |
| #import <QuartzCore/CAGradientLayer.h>
 | |
| #import <QuartzCore/CAAnimation.h>
 | |
| #import <QuartzCore/CATransaction.h>
 | |
| 
 | |
| // Scintilla headers
 | |
| 
 | |
| // Non-platform-specific headers
 | |
| 
 | |
| // include
 | |
| #include "Platform.h"
 | |
| 
 | |
| #include "Sci_Position.h"
 | |
| #include "ILoader.h"
 | |
| #include "ILexer.h"
 | |
| #include "Scintilla.h"
 | |
| #include "ScintillaWidget.h"
 | |
| 
 | |
| #include "SciLexer.h"
 | |
| 
 | |
| // lexlib
 | |
| #include "StringCopy.h"
 | |
| #include "PropSetSimple.h"
 | |
| #include "WordList.h"
 | |
| #include "LexAccessor.h"
 | |
| #include "Accessor.h"
 | |
| #include "StyleContext.h"
 | |
| #include "CharacterSet.h"
 | |
| #include "CharacterCategory.h"
 | |
| #include "LexerModule.h"
 | |
| #include "OptionSet.h"
 | |
| #include "SparseState.h"
 | |
| #include "SubStyles.h"
 | |
| #include "DefaultLexer.h"
 | |
| #include "LexerBase.h"
 | |
| #include "LexerSimple.h"
 | |
| #include "LexerNoExceptions.h"
 | |
| 
 | |
| // src
 | |
| #include "Catalogue.h"
 | |
| 
 | |
| #include "Position.h"
 | |
| #include "IntegerRectangle.h"
 | |
| #include "UniqueString.h"
 | |
| #include "SplitVector.h"
 | |
| #include "Partitioning.h"
 | |
| #include "RunStyles.h"
 | |
| #include "SparseVector.h"
 | |
| #include "ContractionState.h"
 | |
| #include "CellBuffer.h"
 | |
| #include "PerLine.h"
 | |
| #include "CallTip.h"
 | |
| #include "KeyMap.h"
 | |
| #include "Indicator.h"
 | |
| #include "XPM.h"
 | |
| #include "LineMarker.h"
 | |
| #include "Style.h"
 | |
| #include "ViewStyle.h"
 | |
| #include "CharClassify.h"
 | |
| #include "Decoration.h"
 | |
| #include "CaseFolder.h"
 | |
| #include "Document.h"
 | |
| #include "RESearch.h"
 | |
| #include "CaseConvert.h"
 | |
| #include "UniConversion.h"
 | |
| #include "DBCS.h"
 | |
| #include "Selection.h"
 | |
| #include "PositionCache.h"
 | |
| #include "FontQuality.h"
 | |
| #include "EditModel.h"
 | |
| #include "MarginView.h"
 | |
| #include "EditView.h"
 | |
| #include "Editor.h"
 | |
| #include "ElapsedPeriod.h"
 | |
| 
 | |
| #include "AutoComplete.h"
 | |
| #include "ScintillaBase.h"
 | |
| 
 | |
| #include "ExternalLexer.h"
 | |
| 
 | |
| // Platform-specific headers
 | |
| 
 | |
| // win32
 | |
| #include "PlatWin.h"
 | |
| #include "HanjaDic.h"
 | |
| #include "ScintillaWin.h"
 | |
| 
 | |
| // gtk
 | |
| #include "ScintillaGTK.h"
 | |
| #include "scintilla-marshal.h"
 | |
| #include "ScintillaGTKAccessible.h"
 | |
| #include "Converter.h"
 | |
| 
 | |
| // cocoa
 | |
| #include "QuartzTextStyle.h"
 | |
| #include "QuartzTextStyleAttribute.h"
 | |
| #include "QuartzTextLayout.h"
 | |
| #import "InfoBarCommunicator.h"
 | |
| #include "InfoBar.h"
 | |
| #import "ScintillaView.h"
 | |
| #import "ScintillaCocoa.h"
 | |
| #import "PlatCocoa.h"
 | |
| 
 | |
| // Catch testing framework
 | |
| #include "catch.hpp"
 | |
| 
 |