mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:42:43 +00:00 
			
		
		
		
	 aa15bf81e4
			
		
	
	
		aa15bf81e4
		
	
	
	
	
		
			
			This sets the stage so that DisplaySettings can configure the screen layout and set various screen resolutions in one go. It also allows for an easy "atomic" revert of the previous settings.
		
			
				
	
	
		
			121 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| compile_gml(FontPickerDialog.gml FontPickerDialogGML.h font_picker_dialog_gml)
 | |
| compile_gml(FilePickerDialog.gml FilePickerDialogGML.h file_picker_dialog_gml)
 | |
| 
 | |
| set(SOURCES
 | |
|     AboutDialog.cpp
 | |
|     AbstractButton.cpp
 | |
|     AbstractScrollableWidget.cpp
 | |
|     AbstractSlider.cpp
 | |
|     AbstractTableView.cpp
 | |
|     AbstractView.cpp
 | |
|     Action.cpp
 | |
|     ActionGroup.cpp
 | |
|     Application.cpp
 | |
|     AutocompleteProvider.cpp
 | |
|     BoxLayout.cpp
 | |
|     Breadcrumbbar.cpp
 | |
|     Button.cpp
 | |
|     Calendar.cpp
 | |
|     CheckBox.cpp
 | |
|     Clipboard.cpp
 | |
|     ColorInput.cpp
 | |
|     ColorPicker.cpp
 | |
|     ColumnsView.cpp
 | |
|     CommonLocationsProvider.cpp
 | |
|     ComboBox.cpp
 | |
|     Command.cpp
 | |
|     Desktop.cpp
 | |
|     Dialog.cpp
 | |
|     DisplayLink.cpp
 | |
|     DragOperation.cpp
 | |
|     EditingEngine.cpp
 | |
|     EmojiInputDialog.cpp
 | |
|     Event.cpp
 | |
|     FileIconProvider.cpp
 | |
|     FilePicker.cpp
 | |
|     FilePickerDialogGML.h
 | |
|     FileSystemModel.cpp
 | |
|     FilteringProxyModel.cpp
 | |
|     FontPicker.cpp
 | |
|     FontPickerDialogGML.h
 | |
|     Frame.cpp
 | |
|     GMLFormatter.cpp
 | |
|     GMLLexer.cpp
 | |
|     GMLParser.cpp
 | |
|     GMLSyntaxHighlighter.cpp
 | |
|     GroupBox.cpp
 | |
|     HeaderView.cpp
 | |
|     INILexer.cpp
 | |
|     INISyntaxHighlighter.cpp
 | |
|     Icon.cpp
 | |
|     IconView.cpp
 | |
|     ImageWidget.cpp
 | |
|     InputBox.cpp
 | |
|     JsonArrayModel.cpp
 | |
|     Label.cpp
 | |
|     Layout.cpp
 | |
|     LazyWidget.cpp
 | |
|     LinkLabel.cpp
 | |
|     ListView.cpp
 | |
|     Menu.cpp
 | |
|     Menubar.cpp
 | |
|     MenuItem.cpp
 | |
|     MessageBox.cpp
 | |
|     Model.cpp
 | |
|     ModelIndex.cpp
 | |
|     ModelSelection.cpp
 | |
|     MultiView.cpp
 | |
|     Notification.cpp
 | |
|     OpacitySlider.cpp
 | |
|     Painter.cpp
 | |
|     ProcessChooser.cpp
 | |
|     Progressbar.cpp
 | |
|     RadioButton.cpp
 | |
|     RegularEditingEngine.cpp
 | |
|     ResizeCorner.cpp
 | |
|     RunningProcessesModel.cpp
 | |
|     ScreenLayout.cpp
 | |
|     ScrollableContainerWidget.cpp
 | |
|     Scrollbar.cpp
 | |
|     SeparatorWidget.cpp
 | |
|     Shortcut.cpp
 | |
|     Slider.cpp
 | |
|     SortingProxyModel.cpp
 | |
|     SpinBox.cpp
 | |
|     Splitter.cpp
 | |
|     StackWidget.cpp
 | |
|     Statusbar.cpp
 | |
|     TabWidget.cpp
 | |
|     TableView.cpp
 | |
|     TextBox.cpp
 | |
|     TextDocument.cpp
 | |
|     TextEditor.cpp
 | |
|     Toolbar.cpp
 | |
|     ToolbarContainer.cpp
 | |
|     TreeView.cpp
 | |
|     UndoStack.cpp
 | |
|     Variant.cpp
 | |
|     VimEditingEngine.cpp
 | |
|     Widget.cpp
 | |
|     Window.cpp
 | |
|     WindowServerConnection.cpp
 | |
|     WindowManagerServerConnection.cpp
 | |
|     Wizards/WizardDialog.cpp
 | |
|     Wizards/AbstractWizardPage.cpp
 | |
|     Wizards/CoverWizardPage.cpp
 | |
|     Wizards/WizardPage.cpp
 | |
| )
 | |
| 
 | |
| set(GENERATED_SOURCES
 | |
|     ../../Services/WindowServer/WindowClientEndpoint.h
 | |
|     ../../Services/WindowServer/WindowServerEndpoint.h
 | |
|     ../../Services/WindowServer/WindowManagerClientEndpoint.h
 | |
|     ../../Services/WindowServer/WindowManagerServerEndpoint.h
 | |
|     ../../Services/NotificationServer/NotificationClientEndpoint.h
 | |
|     ../../Services/NotificationServer/NotificationServerEndpoint.h
 | |
|     ../../Services/Clipboard/ClipboardClientEndpoint.h
 | |
|     ../../Services/Clipboard/ClipboardServerEndpoint.h
 | |
| )
 | |
| 
 | |
| serenity_lib(LibGUI gui)
 | |
| target_link_libraries(LibGUI LibCore LibGfx LibIPC LibThreading LibRegex LibSyntax)
 |