Skip to content

Commit 07e218f

Browse files
committed
Reorganized the folder based on folder layout of dbuskit.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/quartzcore/trunk@35144 72102866-910b-0410-8b05-ffd578937521
1 parent ea13ad3 commit 07e218f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+655
-65
lines changed

COPYING

+502
Large diffs are not rendered by default.

Documentation/GNUmakefile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# No documentation at this time

GNUmakefile

-60
This file was deleted.

GNUmakefile.postamble

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#
2+
# GNUmakefile.postamble for QuartzCore
3+
#
4+
5+
# Things to do before compiling
6+
# before-all::
7+
8+
# Things to do after compiling
9+
#after-all::
10+
11+
# Things to do before installing
12+
# before-install::
13+
14+
# Things to do after installing
15+
# after-install::
16+
17+
# Things to do before uninstalling
18+
# before-uninstall::
19+
20+
# Things to do after uninstalling
21+
# after-uninstall::
22+
23+
# Things to do before cleaning
24+
# before-clean::
25+
26+
# Things to do after cleaning
27+
after-clean::
28+
@-$(RM) config.make
29+
@-$(RM) Source/config.h
30+
31+
# Things to do before distcleaning
32+
# before-distclean::
33+
34+
# Things to do after distcleaning
35+
#after-distclean::
36+
# @-$(RM) config.log config.status config.make Source/config.h
37+
# @-$(RM) -rf autom4te.cache
38+
39+
# Things to do before checking
40+
# before-check::
41+
42+
# Things to do after checking
43+
# after-check::
44+
45+
46+
# Rule to generate configuration data:
47+
48+
#config.make: config.make.in Source/config.h.in
49+
# ./configure

GNUmakefile.preamble

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VERSION = 0.1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

CALayer.h renamed to Headers/CALayer.h

+17
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,23 @@ NSString *const kCATransition;
4646

4747
@interface CALayer : NSObject
4848
{
49+
id _delegate;
50+
id _contents;
51+
NSLayoutManager * _layoutManager;
52+
NSArray * _sublayers;
53+
CGRect _frame;
54+
CGRect _bounds;
55+
CGPoint _position;
56+
float _opacity;
57+
BOOL _opaque;
58+
BOOL _geometryFlipped;
59+
CGColorRef _backgroundColor;
60+
BOOL _masksToBounds;
61+
CGRect _contentsRect;
62+
BOOL _hidden;
63+
NSString * _contentsGravity;
64+
BOOL _needsDisplayOnBoundsChange;
65+
CGFloat _zPosition;
4966
}
5067

5168
+ (id)layer;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

INSTALL

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file will in future contain details on installing the library.

README

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
README
2+
======
3+
4+
This is GNUstep QuartzCore, an implementation of the Core Animation APIs
5+
intended for use with GNUstep.

CAAnimation.m renamed to Source/CAAnimation.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Boston, MA 02110-1301, USA.
2626
*/
2727

28-
#import "CAAnimation.h"
28+
#import "QuartzCore/CAAnimation.h"
2929

3030
NSString *const kCAAnimationDiscrete = @"CAAnimationDiscrete";
3131

CABase.m renamed to Source/CABase.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Boston, MA 02110-1301, USA.
2626
*/
2727

28-
#import "CABase.h"
28+
#import "QuartzCore/CABase.h"
2929
#import <sys/time.h>
3030

3131
CFTimeInterval CACurrentMediaTime(void)
File renamed without changes.
File renamed without changes.
File renamed without changes.

CALayer.m renamed to Source/CALayer.m

+19-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Boston, MA 02110-1301, USA.
2525
*/
2626

27-
#import "CALayer.h"
27+
#import "QuartzCore/CALayer.h"
2828

2929
NSString *const kCAGravityResize = @"CAGravityResize";
3030
NSString *const kCAGravityResizeAspect = @"CAGravityResizeAspect";
@@ -41,5 +41,23 @@
4141

4242
@implementation CALayer
4343

44+
@synthesize delegate=_delegate;
45+
@synthesize contents=_contents;
46+
@synthesize layoutManager=_layoutManager;
47+
@synthesize sublayers=_sublayers;
48+
@synthesize frame=_frame;
49+
@synthesize bounds=_bounds;
50+
@synthesize position=_position;
51+
@synthesize opacity=_opacity;
52+
@synthesize opaque=_opaque;
53+
@synthesize geometryFlipped=_geometryFlipped;
54+
@synthesize backgroundColor=_backgroundColor;
55+
@synthesize masksToBounds=_masksToBounds;
56+
@synthesize contentsRect=_contentsRect;
57+
@synthesize hidden=_hidden;
58+
@synthesize contentsGravity=_contentsGravity;
59+
@synthesize needsDisplayOnBoundsChange=_needsDisplayOnBoundsChange;
60+
@synthesize zPosition=_zPosition;
61+
4462
@end
4563

CAMediaTimingFunction.m renamed to Source/CAMediaTimingFunction.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
Boston, MA 02110-1301, USA.
2424
*/
2525

26-
#import "CAMediaTimingFunction.h"
26+
#import "QuartzCore/CAMediaTimingFunction.h"
2727

2828
@implementation CAMediaTimingFunction
2929

CARenderer.m renamed to Source/CARenderer.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Boston, MA 02110-1301, USA.
2626
*/
2727

28-
#import "CARenderer.h"
28+
#import "QuartzCore/CARenderer.h"
2929

3030
@implementation CARenderer
3131

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Source/GNUmakefile

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
ifeq ($(GNUSTEP_MAKEFILES),)
3+
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
4+
ifeq ($(GNUSTEP_MAKEFILES),)
5+
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
6+
endif
7+
endif
8+
9+
include $(GNUSTEP_MAKEFILES)/common.make
10+
#
11+
# Main framework
12+
#
13+
FRAMEWORK_NAME = QuartzCore
14+
15+
# Include configuration
16+
17+
-include ../config.make
18+
19+
QuartzCore_HEADER_FILES_DIR = ../Headers
20+
QuartzCore_HEADER_FILES = \
21+
CAAnimation.h \
22+
CABase.h \
23+
CADisplayLink.h \
24+
CAEAGLLayer.h \
25+
CAGradientLayer.h \
26+
CALayer.h \
27+
CAMediaTimingFunction.h \
28+
CAMediaTiming.h \
29+
CARenderer.h \
30+
CAReplicatorLayer.h \
31+
CAScrollLayer.h \
32+
CAShapeLayer.h \
33+
CATextLayer.h \
34+
CATiledLayer.h \
35+
CATransaction.h \
36+
CATransform3D.h \
37+
CATransformLayer.h \
38+
CAValueFunction.h \
39+
CoreAnimation.h \
40+
QuartzCore.h
41+
42+
QuartzCore_OBJC_FILES = $(wildcard *.m)
43+
44+
QuartzCore_OBJCFLAGS += $(WARN_FLAGS)
45+
# Treat warnings as errors unless someone chooses to ignore them.
46+
#ifneq ($(nonstrict), yes)
47+
#QuartzCore_OBJCFLAGS += -Werror
48+
#endif
49+
50+
-include ../GNUmakefile.preamble
51+
include $(GNUSTEP_MAKEFILES)/framework.make
52+
53+
-include GNUmakefile.postamble

Source/GNUmakefile.postamble

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
after-clean::
2+
@-$(RM) -rf Source/DBusKit.framework
3+
@-$(RM) -rf Source/derived_src

0 commit comments

Comments
 (0)