Cleanup app server directory a bit by creating a font and a decorator sub folder.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42483 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler
2011-07-25 04:31:54 +00:00
parent 418f391fb1
commit f4f30311aa
33 changed files with 34 additions and 13 deletions
@@ -4,6 +4,8 @@ UseLibraryHeaders agg lp_solve linprog ;
UsePrivateHeaders app graphics interface shared kernel ; UsePrivateHeaders app graphics interface shared kernel ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app decorator ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app font ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ;
UseFreeTypeHeaders ; UseFreeTypeHeaders ;
+1
View File
@@ -40,6 +40,7 @@
#include "DecorManager.h" #include "DecorManager.h"
#include "DesktopSettingsPrivate.h" #include "DesktopSettingsPrivate.h"
#include "DrawingEngine.h" #include "DrawingEngine.h"
#include "FontManager.h"
#include "HWInterface.h" #include "HWInterface.h"
#include "InputManager.h" #include "InputManager.h"
#include "Screen.h" #include "Screen.h"
-1
View File
@@ -17,7 +17,6 @@
#include <Point.h> #include <Point.h>
#include <View.h> // for B_FONT_ALL #include <View.h> // for B_FONT_ALL
#include "FontManager.h"
#include "ServerFont.h" #include "ServerFont.h"
#include "PatternHandler.h" #include "PatternHandler.h"
+27 -12
View File
@@ -8,6 +8,26 @@ UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ;
UseFreeTypeHeaders ; UseFreeTypeHeaders ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app decorator ] ;
local decorator_src =
DecorManager.cpp
Decorator.cpp
DefaultDecorator.cpp
DefaultWindowBehaviour.cpp
MagneticBorder.cpp
WindowBehaviour.cpp
;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app font ] ;
local font_src =
FontCache.cpp
FontCacheEntry.cpp
FontEngine.cpp
FontFamily.cpp
FontManager.cpp
FontStyle.cpp
;
Server app_server : Server app_server :
Angle.cpp Angle.cpp
AppServer.cpp AppServer.cpp
@@ -18,10 +38,6 @@ Server app_server :
CursorData.cpp CursorData.cpp
CursorManager.cpp CursorManager.cpp
CursorSet.cpp CursorSet.cpp
DecorManager.cpp
Decorator.cpp
DefaultDecorator.cpp
DefaultWindowBehaviour.cpp
Desktop.cpp Desktop.cpp
DesktopListener.cpp DesktopListener.cpp
DesktopSettings.cpp DesktopSettings.cpp
@@ -29,17 +45,10 @@ Server app_server :
DrawState.cpp DrawState.cpp
EventDispatcher.cpp EventDispatcher.cpp
EventStream.cpp EventStream.cpp
FontCache.cpp
FontCacheEntry.cpp
FontEngine.cpp
FontFamily.cpp
FontManager.cpp
FontStyle.cpp
HashTable.cpp HashTable.cpp
InputManager.cpp InputManager.cpp
IntPoint.cpp IntPoint.cpp
IntRect.cpp IntRect.cpp
MagneticBorder.cpp
MessageLooper.cpp MessageLooper.cpp
MultiLocker.cpp MultiLocker.cpp
OffscreenServerWindow.cpp OffscreenServerWindow.cpp
@@ -60,11 +69,13 @@ Server app_server :
View.cpp View.cpp
VirtualScreen.cpp VirtualScreen.cpp
Window.cpp Window.cpp
WindowBehaviour.cpp
WindowList.cpp WindowList.cpp
Workspace.cpp Workspace.cpp
WorkspacesView.cpp WorkspacesView.cpp
$(decorator_src)
$(font_src)
# libraries # libraries
: :
libtranslation.so libbe.so libbnetapi.so libtranslation.so libbe.so libbnetapi.so
@@ -74,4 +85,8 @@ Server app_server :
: app_server.rdef : app_server.rdef
; ;
SEARCH on [ FGristFiles $(decorator_src) ] = [ FDirName $(HAIKU_TOP) src servers app decorator ] ;
SEARCH on [ FGristFiles $(font_src) ] = [ FDirName $(HAIKU_TOP) src servers app font ] ;
SubInclude HAIKU_TOP src servers app drawing ; SubInclude HAIKU_TOP src servers app drawing ;
+1
View File
@@ -16,6 +16,7 @@
#include "DrawingEngine.h" #include "DrawingEngine.h"
#include "DrawState.h" #include "DrawState.h"
#include "FontManager.h"
#include "ServerApp.h" #include "ServerApp.h"
#include "ServerBitmap.h" #include "ServerBitmap.h"
#include "ServerFont.h" #include "ServerFont.h"
+1
View File
@@ -6,6 +6,7 @@ UsePrivateHeaders [ FDirName graphics common ] ;
UsePrivateSystemHeaders ; UsePrivateSystemHeaders ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app font ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter font_support ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter font_support ] ;
+1
View File
@@ -6,6 +6,7 @@ AddSubDirSupportedPlatforms libbe_test ;
UseLibraryHeaders agg ; UseLibraryHeaders agg ;
UsePrivateHeaders app graphics interface kernel shared ; UsePrivateHeaders app graphics interface kernel shared ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app font ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ;
UseFreeTypeHeaders ; UseFreeTypeHeaders ;
+1
View File
@@ -6,6 +6,7 @@ UsePrivateHeaders [ FDirName graphics common ] ;
UsePrivateSystemHeaders ; UsePrivateSystemHeaders ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app font ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ;
UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ; UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ;