Initial work on xft - added XftFontDescription
authorJan Vrany <jan.vrany@fit.cvut.cz>
Fri, 20 Dec 2013 11:07:56 +0100
changeset 6178 4befeedc4d5d
parent 6177 53a2b3f77dd3
child 6179 b2af8f1be089
Initial work on xft - added XftFontDescription
Make.proto
Make.spec
libInit.cc
stx_libview.st
--- a/Make.proto	Fri Dec 20 11:03:12 2013 +0100
+++ b/Make.proto	Fri Dec 20 11:07:56 2013 +0100
@@ -1,4 +1,4 @@
-# $Header: /cvs/stx/stx/libview/Make.proto,v 1.162 2013-11-25 10:51:46 cg Exp $
+# $Header: /cvs/stx/stx/libview/Make.proto,v 1.163 2013-12-20 10:07:56 vrany Exp $
 #
 # DO NOT EDIT
 # automagically generated from the projectDefinition: stx_libview at 2012-03-09 09:29:06.849.
@@ -50,7 +50,7 @@
 # ********** OPTIONAL: MODIFY the next line ***
 # additional C-libraries that should be pre-linked with the class-objects
 LD_OBJ_LIBS=
-LOCAL_SHARED_LIBS=
+LOCAL_SHARED_LIBS=$(LIB_XFT)
 
 
 # ********** OPTIONAL: MODIFY the next line ***
--- a/Make.spec	Fri Dec 20 11:03:12 2013 +0100
+++ b/Make.spec	Fri Dec 20 11:07:56 2013 +0100
@@ -1,4 +1,4 @@
-# $Header: /cvs/stx/stx/libview/Make.spec,v 1.54 2013-01-11 14:32:51 cg Exp $
+# $Header: /cvs/stx/stx/libview/Make.spec,v 1.55 2013-12-20 10:07:56 vrany Exp $
 #
 # DO NOT EDIT
 # automagically generated from the projectDefinition: stx_libview at 2012-03-09 09:29:06.457.
@@ -51,6 +51,7 @@
 
 UNIX_CLASSES= \
 	XEmbedContainerView \
+	XftFontDescription	\
 
 COMMON_CLASSES= \
 	FontDescription \
@@ -123,6 +124,7 @@
 
 UNIX_OBJS= \
     $(OUTDIR_SLASH)XEmbedContainerView.$(O) \
+    $(OUTDIR_SLASH)XftFontDescription.$(O) \
 
 COMMON_OBJS= \
     $(OUTDIR_SLASH)FontDescription.$(O) \
--- a/libInit.cc	Fri Dec 20 11:03:12 2013 +0100
+++ b/libInit.cc	Fri Dec 20 11:07:56 2013 +0100
@@ -1,5 +1,5 @@
 /*
- * $Header: /cvs/stx/stx/libview/libInit.cc,v 1.63 2012-03-09 08:29:42 stefan Exp $
+ * $Header: /cvs/stx/stx/libview/libInit.cc,v 1.64 2013-12-20 10:07:56 vrany Exp $
  *
  * DO NOT EDIT
  * automagically generated from the projectDefinition: stx_libview.
@@ -90,6 +90,7 @@
 _ModalBox_Init(pass,__pRT__,snd);
 #ifdef UNIX
 _XEmbedContainerView_Init(pass,__pRT__,snd);
+_XftFontDescription_Init(pass,__pRT__,snd);
 #endif /* UNIX */
 #ifdef WIN32
 _WinWorkstation_Init(pass,__pRT__,snd);
--- a/stx_libview.st	Fri Dec 20 11:03:12 2013 +0100
+++ b/stx_libview.st	Fri Dec 20 11:07:56 2013 +0100
@@ -386,6 +386,7 @@
         (XEmbedContainerView unix)
         XWorkstation
         GLXWorkstation
+	(XftFontDescription unix)
     )
 !
 
@@ -437,10 +438,10 @@
 !stx_libview class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/stx_libview.st,v 1.63 2013-03-13 16:04:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/stx_libview.st,v 1.64 2013-12-20 10:07:56 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/stx_libview.st,v 1.63 2013-03-13 16:04:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/stx_libview.st,v 1.64 2013-12-20 10:07:56 vrany Exp $'
 ! !