stx_goodies_libcairo.st
changeset 5 65635e9ef3e8
parent 4 0bf0d8b6f4c5
child 6 c1f387b40e3a
--- a/stx_goodies_libcairo.st	Thu Jul 10 21:14:16 2008 +0000
+++ b/stx_goodies_libcairo.st	Fri Jul 11 08:49:27 2008 +0000
@@ -7,14 +7,30 @@
 	category:'* Projects & Packages *'
 !
 
+
 !stx_goodies_libcairo class methodsFor:'description'!
 
+postLoadAction
+
+    "
+        self postLoadAction
+    "
+
+    OperatingSystem isUNIXlike ifTrue:
+        [ExternalLibraryFunction dllPath:
+            (ExternalLibraryFunction dllPath asOrderedCollection
+                add:'/usr/lib';
+                yourself)]
+
+    "Created: / 10-07-2008 / 23:27:14 / Jan Vrany <vranyj1@fel.cvut.cz>"
+!
+
 preRequisites
     ^ #(
         #'stx:libbasic'    "SharedPool - superclass of Cairo::Antialias "
     )
 
-    "Modified: / 10-07-2008 / 23:13:24 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Modified: / 11-07-2008 / 10:48:20 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
 !stx_goodies_libcairo class methodsFor:'description - contents'!
@@ -60,7 +76,7 @@
         #'stx_goodies_libcairo'
     )
 
-    "Modified: / 10-07-2008 / 23:13:23 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Modified: / 11-07-2008 / 10:48:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
 extensionMethodNames
@@ -73,12 +89,10 @@
         SimpleView cairoGraphicsContext
         SimpleView cairoSurface
         XWorkstation cairoSurfaceFor:
-        XWorkstation primScreenStructure
-        XWorkstation screenStructure
-        XWorkstation visualStructure
+        XWorkstation defaultVisual
     )
 
-    "Modified: / 10-07-2008 / 23:13:23 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Modified: / 11-07-2008 / 10:48:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
 !stx_goodies_libcairo class methodsFor:'description - project information'!
@@ -115,3 +129,8 @@
     "Created: / 10-07-2008 / 23:11:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
+!stx_goodies_libcairo class methodsFor:'documentation'!
+
+version
+    ^'$Id$'
+! !