stx_libview.st
branchjv
changeset 8179 ced410b68993
parent 8079 1bd22a3d8b03
child 8180 25149dfd68e0
--- a/stx_libview.st	Tue Aug 15 14:54:58 2017 +0100
+++ b/stx_libview.st	Wed Sep 06 09:47:50 2017 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
               All Rights Reserved
@@ -49,8 +47,8 @@
     but instead provides a device- and operating system independent layer on top of which
     GUI frameworks can be built.
 
-    It currently supports X11 and Windows-API. 
-    Native OSX support may be an option if there is sufficient demand for it 
+    It currently supports X11 and Windows-API.
+    Native OSX support may be an option if there is sufficient demand for it
     (i.e. someone is willing to pay for its development).
 "
 ! !
@@ -75,7 +73,7 @@
 
      Default is true (compile such method) but if the repository is mirror of CVS and
      you want to merge back to CVS at some point, you may want to not compile them
-     to keep changes against CVS minimal. 
+     to keep changes against CVS minimal.
 
      If false, version_HG is compiled only in classes that has been modified
      and commited.
@@ -146,8 +144,6 @@
     ^ #(
         #'stx:libbasic2'    "UUID - referenced by DisplayRootView>>uuid"
     )
-
-    "Modified: / 31-01-2017 / 13:35:33 / stefan"
 !
 
 subProjects
@@ -189,7 +185,7 @@
 
 additionalDefinitions_make_dot_proto
     ^ '
-LOCAL_SHARED_LIBS=-L$(X_LIB_DIR) $(LIB_XEXT) $(LIB_XINERAMA) $(LIB_XFT) $(LIB_X) $(LIBRUN_LINK_LIB)
+LOCAL_SHARED_LIBS=-L$(X_LIB_DIR) $(LIB_GL) $(LIB_XEXT) $(LIB_XINERAMA) $(LIB_XFT) $(LIB_X) $(LIBRUN_LINK_LIB)
 '
 !
 
@@ -416,7 +412,6 @@
         Event
         (FcConstants unix)
         FontDescription
-        (GraphicsAttributes autoload)
         GraphicsContext
         GraphicsDevice
         GraphicsMedium
@@ -433,7 +428,6 @@
         Border
         ColorPalette
         CompoundFont
-        (ControllerWithMenu autoload)
         Depth16Image
         Depth1Image
         Depth24Image
@@ -453,16 +447,13 @@
         ImageBackground
         MacButtonBorder
         NoBackground
-        (RoundButtonBorder autoload)
         ScaleTransform
         SimpleBorder
         SolidBackground
         SynchronousWindowSensor
-        (TranslucentColor autoload)
         ViewStyle
         WindowEvent
         (XftFontDescription unix)
-        (AlphaMask autoload)
         DeviceWorkstation
         DisplayRootView
         FixedPalette
@@ -476,28 +467,28 @@
         XGraphicsContext
         FixedPaletteWithAlpha
         MonoMappedPalette
-        (NeXTWorkstation autoload)
         ShadowView
         View
         (XEmbedContainerView unix)
         (XWorkstation unix)
         (GLXWorkstation unix)
         TopView
-        (MDIChildView autoload)
         PopUpView
         StandardSystemView
         ModalBox
+        (RoundButtonBorder autoload)
+        (TranslucentColor autoload)
+        (AlphaMask autoload)
+        (MDIChildView autoload)
         (ControllerWithMenu autoload)
         (GraphicsAttributes autoload)
         (NeXTWorkstation autoload)
         (WinWorkstation win32)
     )
-
-    "Modified (format): / 31-01-2017 / 13:35:18 / stefan"
 !
 
 extensionMethodNames
-    "list class/selector pairs of extensions.
+    "lists the extension methods which are to be included in the project.
      Entries are 2-element array literals, consisting of class-name and selector.
      A correponding method with real names must be present in my concrete subclasses
      if it has extensions."
@@ -505,6 +496,7 @@
     ^ #(
         'ConfigurableFeatures class' hasFontConfig
         Object isColormap
+        Object isKeyboardMap
         'ConfigurableFeatures class' hasXFT
     )
 ! !
@@ -549,11 +541,11 @@
 
 version_CVS
     ^ '$Header$'
-    
+
 !
 
 version_HG
     ^ '$Changeset: <not expanded> $'
-    
+
 ! !