Removed dependency in `stx:libtool2` jv stx-8.0.0
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 26 Jun 2018 09:35:02 +0100
branchjv
changeset 6361 599f4560a907
parent 6360 1091acf82a3e
child 6367 ced1d9fb356c
Removed dependency in `stx:libtool2` ...in order to break circular dependency `stx:libhtml` -> `stx:libwidg` -> `stx:libtool2` -> `stx:libhtml`. Besides, less dependencies are always better.
DialogBox.st
Make.proto
Make.spec
Makefile.init
abbrev.stc
bc.mak
bmake.bat
libInit.cc
mingwmake.bat
stx_libwidg.st
vcmake.bat
--- a/DialogBox.st	Sun Dec 10 00:04:50 2017 +0000
+++ b/DialogBox.st	Tue Jun 26 09:35:02 2018 +0100
@@ -1,6 +1,7 @@
 "
  COPYRIGHT (c) 1994 by Claus Gittinger
-	      All Rights Reserved
+ COPYRIGHT (c) 2018 Jan Vrany
+              All Rights Reserved
 
  This software is furnished under a license and may be used
  only in accordance with the terms of that license and with the
@@ -29,7 +30,8 @@
 copyright
 "
  COPYRIGHT (c) 1994 by Claus Gittinger
-	      All Rights Reserved
+ COPYRIGHT (c) 2018 Jan Vrany
+              All Rights Reserved
 
  This software is furnished under a license and may be used
  only in accordance with the terms of that license and with the
@@ -3202,13 +3204,20 @@
         whenBoxCreatedEvaluate:[:box |
             |editButton paintButton copyButton|
             "/ UserPreferences current useNewFileDialog ifFalse:[
-                editButton := Button label:(resources string:'Edit').
-                editButton
-                    action:[
-                        box hide; destroy.
-                        ImageEditor openOnImage:anImage.
-                    ].
-                box addButton:editButton.
+                
+                "/ ImageEditor is in stx:libtool2, use it only if available
+                "/ to avoid dependency on stx:libtool2
+                (Smalltalk hasClassNamed: #ImageEditor) ifTrue:[
+                    editButton := Button label:(resources string:'Edit').
+                    editButton
+                        action:[
+                            box hide; destroy.
+                            "/ Use Smalltalk at: to avoid dependency on
+                            "/ ImageEditor package.
+                            (Smalltalk at:#ImageEditor) openOnImage:anImage.
+                        ].
+                    box addButton:editButton.
+                ].
 
                 paintButton := Button label:(resources string:'OS Editor').
                 paintButton
@@ -3241,6 +3250,8 @@
         default:'screen.png' 
         pattern:'*.png' 
     "
+
+    "Modified: / 26-06-2018 / 09:30:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 requestFileNameForSave:titleString
@@ -6817,6 +6828,7 @@
     "
 ! !
 
+
 !DialogBox methodsFor:'accessing-behavior'!
 
 abortAction:aBlock
@@ -10648,6 +10660,11 @@
 
 version_CVS
     ^ '$Header$'
+!
+
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
 ! !
 
 
--- a/Make.proto	Sun Dec 10 00:04:50 2017 +0000
+++ b/Make.proto	Tue Jun 26 09:35:02 2018 +0100
@@ -1,205 +1,205 @@
-# $Header$
-#
-# DO NOT EDIT
-# automagically generated from the projectDefinition: stx_libwidg.
-#
-# Warning: once you modify this file, do not rerun
-# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
-#
-# The Makefile as generated by this Make.proto supports the following targets:
-#    make         - compile all st-files to a classLib
-#    make clean   - clean all temp files
-#    make clobber - clean all
-#
-# This file contains definitions for Unix based platforms.
-# It shares common definitions with the win32-make in Make.spec.
-
-#
-# position (of this package) in directory hierarchy:
-# (must point to ST/X top directory, for tools and includes)
-TOP=..
-INCLUDE_TOP=$(TOP)/..
-
-# subdirectories where targets are to be made:
-SUBDIRS=
-
-
-# subdirectories where Makefiles are to be made:
-# (only define if different from SUBDIRS)
-# ALLSUBDIRS=
-
-REQUIRED_SUPPORT_DIRS=
-
-# if your embedded C code requires any system includes,
-# add the path(es) here:,
-# ********** OPTIONAL: MODIFY the next lines ***
-# LOCALINCLUDES=-Ifoo -Ibar
-LOCALINCLUDES= -I$(INCLUDE_TOP)/stx/goodies/regex -I$(INCLUDE_TOP)/stx/libbasic -I$(INCLUDE_TOP)/stx/libbasic2 -I$(INCLUDE_TOP)/stx/libbasic3 -I$(INCLUDE_TOP)/stx/libtool2 -I$(INCLUDE_TOP)/stx/libui -I$(INCLUDE_TOP)/stx/libview -I$(INCLUDE_TOP)/stx/libview2
-
-
-# if you need any additional defines for embedded C code,
-# add them here:,
-# ********** OPTIONAL: MODIFY the next lines ***
-# LOCALDEFINES=-Dfoo -Dbar -DDEBUG
-LOCALDEFINES=
-
-LIBNAME=libstx_libwidg
-STCLOCALOPT='-package=$(PACKAGE)' -I. $(LOCALINCLUDES) $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) -headerDir=. $(COMMONSYMBOLS) -varPrefix=$(LIBNAME)
-
-
-# ********** OPTIONAL: MODIFY the next line ***
-# additional C-libraries that should be pre-linked with the class-objects
-LD_OBJ_LIBS=
-LOCAL_SHARED_LIBS=
-
-
-# ********** OPTIONAL: MODIFY the next line ***
-# additional C targets or libraries should be added below
-LOCAL_EXTRA_TARGETS=
-
-OBJS= $(COMMON_OBJS) $(UNIX_OBJS)
-
-
-
-all:: preMake classLibRule postMake
-
-pre_objs::  
-
-
-
-
-
-
-# Enforce recompilation of package definition class if Mercurial working
-# copy state changes. Together with --guessVersion it ensures that package
-# definition class always contains correct binary revision string.
-ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo -n '**NOHG**'))
-stx_libwidg.$(O): $(shell hg root)/.hg/dirstate
-endif
-
-
-
-
-# run default testsuite for this package
-test: $(TOP)/goodies/builder/reports
-	$(MAKE) -C $(TOP)/goodies/builder/reports -f Makefile.init
-	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
-
-
-
-# add more install actions here
-install::
-
-# add more install actions for aux-files (resources) here
-installAux::
-
-# add more preMake actions here
-preMake::
-
-# add more postMake actions here
-postMake:: cleanjunk
-
-# build all mandatory prerequisite packages (containing superclasses) for this package
-prereq:
-	cd ../libbasic && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-	cd ../libbasic2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-	cd ../libview && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-	cd ../libview2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-
-
-
-# build all packages containing referenced classes for this package
-# they are not needed to compile the package (but later, to load it)
-references:
-
-
-cleanjunk::
-	-rm -f *.s *.s2
-
-clean::
-	-rm -f *.o *.H
-
-clobber:: clean
-	-rm -f *.so *.dll
-
-
-# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
-$(OUTDIR)ButtonController.$(O) ButtonController.$(C) ButtonController.$(H): ButtonController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(STCHDR)
-$(OUTDIR)CodeViewTheme.$(O) CodeViewTheme.$(C) CodeViewTheme.$(H): CodeViewTheme.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
-$(OUTDIR)DialogBox.$(O) DialogBox.$(C) DialogBox.$(H): DialogBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)EditTextViewCompletionSupport.$(O) EditTextViewCompletionSupport.$(C) EditTextViewCompletionSupport.$(H): EditTextViewCompletionSupport.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
-$(OUTDIR)EnterFieldGroup.$(O) EnterFieldGroup.$(C) EnterFieldGroup.$(H): EnterFieldGroup.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
-$(OUTDIR)FramedBox.$(O) FramedBox.$(C) FramedBox.$(H): FramedBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
-$(OUTDIR)GenericToolbarIconLibrary.$(O) GenericToolbarIconLibrary.$(C) GenericToolbarIconLibrary.$(H): GenericToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
-$(OUTDIR)Label.$(O) Label.$(C) Label.$(H): Label.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)ListView.$(O) ListView.$(C) ListView.$(H): ListView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)ListViewController.$(O) ListViewController.$(C) ListViewController.$(H): ListViewController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(STCHDR)
-$(OUTDIR)MenuEvent.$(O) MenuEvent.$(C) MenuEvent.$(H): MenuEvent.st $(INCLUDE_TOP)/stx/libbasic/Message.$(H) $(INCLUDE_TOP)/stx/libbasic/MessageSend.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Event.$(H) $(INCLUDE_TOP)/stx/libview/WidgetEvent.$(H) $(INCLUDE_TOP)/stx/libview/WindowEvent.$(H) $(STCHDR)
-$(OUTDIR)ObjectView.$(O) ObjectView.$(C) ObjectView.$(H): ObjectView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)PanelView.$(O) PanelView.$(C) PanelView.$(H): PanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
-$(OUTDIR)PopUpMenu.$(O) PopUpMenu.$(C) PopUpMenu.$(H): PopUpMenu.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/PopUpView.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)PullDownMenu.$(O) PullDownMenu.$(C) PullDownMenu.$(H): PullDownMenu.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)RadioButtonGroup.$(O) RadioButtonGroup.$(C) RadioButtonGroup.$(H): RadioButtonGroup.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libview2/ValueHolder.$(H) $(INCLUDE_TOP)/stx/libview2/ValueModel.$(H) $(STCHDR)
-$(OUTDIR)ScrollBar.$(O) ScrollBar.$(C) ScrollBar.$(H): ScrollBar.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
-$(OUTDIR)ScrollableView.$(O) ScrollableView.$(C) ScrollableView.$(H): ScrollableView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
-$(OUTDIR)Scroller.$(O) Scroller.$(C) Scroller.$(H): Scroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
-$(OUTDIR)SelectionInList.$(O) SelectionInList.$(C) SelectionInList.$(H): SelectionInList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libview2/ValueHolder.$(H) $(INCLUDE_TOP)/stx/libview2/ValueModel.$(H) $(STCHDR)
-$(OUTDIR)VariablePanel.$(O) VariablePanel.$(C) VariablePanel.$(H): VariablePanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
-$(OUTDIR)VariablePanelController.$(O) VariablePanelController.$(C) VariablePanelController.$(H): VariablePanelController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(STCHDR)
-$(OUTDIR)stx_libwidg.$(O) stx_libwidg.$(C) stx_libwidg.$(H): stx_libwidg.st $(INCLUDE_TOP)/stx/libbasic/LibraryDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/ProjectDefinition.$(H) $(STCHDR)
-$(OUTDIR)Button.$(O) Button.$(C) Button.$(H): Button.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
-$(OUTDIR)CheckLabel.$(O) CheckLabel.$(C) CheckLabel.$(H): CheckLabel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
-$(OUTDIR)DragRectangleController.$(O) DragRectangleController.$(C) DragRectangleController.$(H): DragRectangleController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(STCHDR)
-$(OUTDIR)EnterBox.$(O) EnterBox.$(C) EnterBox.$(H): EnterBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
-$(OUTDIR)FontPanel.$(O) FontPanel.$(C) FontPanel.$(H): FontPanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
-$(OUTDIR)HVScrollableView.$(O) HVScrollableView.$(C) HVScrollableView.$(H): HVScrollableView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/ScrollableView.$(H) $(STCHDR)
-$(OUTDIR)HorizontalPanelView.$(O) HorizontalPanelView.$(C) HorizontalPanelView.$(H): HorizontalPanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/PanelView.$(H) $(STCHDR)
-$(OUTDIR)HorizontalScrollBar.$(O) HorizontalScrollBar.$(C) HorizontalScrollBar.$(H): HorizontalScrollBar.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/ScrollBar.$(H) $(STCHDR)
-$(OUTDIR)HorizontalScroller.$(O) HorizontalScroller.$(C) HorizontalScroller.$(H): HorizontalScroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Scroller.$(H) $(STCHDR)
-$(OUTDIR)InfoBox.$(O) InfoBox.$(C) InfoBox.$(H): InfoBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
-$(OUTDIR)MiniScroller.$(O) MiniScroller.$(C) MiniScroller.$(H): MiniScroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Scroller.$(H) $(STCHDR)
-$(OUTDIR)MultiColumnPanelView.$(O) MultiColumnPanelView.$(C) MultiColumnPanelView.$(H): MultiColumnPanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/PanelView.$(H) $(STCHDR)
-$(OUTDIR)MultiSelectionInList.$(O) MultiSelectionInList.$(C) MultiSelectionInList.$(H): MultiSelectionInList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libview2/ValueHolder.$(H) $(INCLUDE_TOP)/stx/libview2/ValueModel.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInList.$(H) $(STCHDR)
-$(OUTDIR)OptionBox.$(O) OptionBox.$(C) OptionBox.$(H): OptionBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
-$(OUTDIR)PopUpListController.$(O) PopUpListController.$(C) PopUpListController.$(H): PopUpListController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(STCHDR)
-$(OUTDIR)SelectionInListView.$(O) SelectionInListView.$(C) SelectionInListView.$(H): SelectionInListView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(STCHDR)
-$(OUTDIR)SequenceView.$(O) SequenceView.$(C) SequenceView.$(H): SequenceView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/ScrollableView.$(H) $(STCHDR)
-$(OUTDIR)TextView.$(O) TextView.$(C) TextView.$(H): TextView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(STCHDR)
-$(OUTDIR)ToggleController.$(O) ToggleController.$(C) ToggleController.$(H): ToggleController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(STCHDR)
-$(OUTDIR)VariableHorizontalPanel.$(O) VariableHorizontalPanel.$(C) VariableHorizontalPanel.$(H): VariableHorizontalPanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanel.$(H) $(STCHDR)
-$(OUTDIR)VariableHorizontalPanelController.$(O) VariableHorizontalPanelController.$(C) VariableHorizontalPanelController.$(H): VariableHorizontalPanelController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanelController.$(H) $(STCHDR)
-$(OUTDIR)VariableVerticalPanel.$(O) VariableVerticalPanel.$(C) VariableVerticalPanel.$(H): VariableVerticalPanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanel.$(H) $(STCHDR)
-$(OUTDIR)VariableVerticalPanelController.$(O) VariableVerticalPanelController.$(C) VariableVerticalPanelController.$(H): VariableVerticalPanelController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanelController.$(H) $(STCHDR)
-$(OUTDIR)VerticalPanelView.$(O) VerticalPanelView.$(C) VerticalPanelView.$(H): VerticalPanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/PanelView.$(H) $(STCHDR)
-$(OUTDIR)WorkspaceCompletionSupport.$(O) WorkspaceCompletionSupport.$(C) WorkspaceCompletionSupport.$(H): WorkspaceCompletionSupport.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextViewCompletionSupport.$(H) $(STCHDR)
-$(OUTDIR)XPToolbarIconLibrary.$(O) XPToolbarIconLibrary.$(C) XPToolbarIconLibrary.$(H): XPToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)ArrowButton.$(O) ArrowButton.$(C) ArrowButton.$(H): ArrowButton.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
-$(OUTDIR)EditTextView.$(O) EditTextView.$(C) EditTextView.$(H): EditTextView.st $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Notification.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/Query.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
-$(OUTDIR)EnterBox2.$(O) EnterBox2.$(C) EnterBox2.$(H): EnterBox2.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(STCHDR)
-$(OUTDIR)FileSelectionList.$(O) FileSelectionList.$(C) FileSelectionList.$(H): FileSelectionList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInListView.$(H) $(STCHDR)
-$(OUTDIR)HorizontalMiniScroller.$(O) HorizontalMiniScroller.$(C) HorizontalMiniScroller.$(H): HorizontalMiniScroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/MiniScroller.$(H) $(INCLUDE_TOP)/stx/libwidg/Scroller.$(H) $(STCHDR)
-$(OUTDIR)ListSelectionBox.$(O) ListSelectionBox.$(C) ListSelectionBox.$(H): ListSelectionBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(STCHDR)
-$(OUTDIR)MacOSXToolbarIconLibrary.$(O) MacOSXToolbarIconLibrary.$(C) MacOSXToolbarIconLibrary.$(H): MacOSXToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)MenuView.$(O) MenuView.$(C) MenuView.$(H): MenuView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInListView.$(H) $(STCHDR)
-$(OUTDIR)PopUpList.$(O) PopUpList.$(C) PopUpList.$(H): PopUpList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
-$(OUTDIR)RadioButtonController.$(O) RadioButtonController.$(C) RadioButtonController.$(H): RadioButtonController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(INCLUDE_TOP)/stx/libwidg/ToggleController.$(H) $(STCHDR)
-$(OUTDIR)Toggle.$(O) Toggle.$(C) Toggle.$(H): Toggle.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
-$(OUTDIR)VistaToolbarIconLibrary.$(O) VistaToolbarIconLibrary.$(C) VistaToolbarIconLibrary.$(H): VistaToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)WarningBox.$(O) WarningBox.$(C) WarningBox.$(H): WarningBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/InfoBox.$(H) $(STCHDR)
-$(OUTDIR)AdwaitaToolbarIconLibrary.$(O) AdwaitaToolbarIconLibrary.$(C) AdwaitaToolbarIconLibrary.$(H): AdwaitaToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)CheckToggle.$(O) CheckToggle.$(C) CheckToggle.$(H): CheckToggle.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(INCLUDE_TOP)/stx/libwidg/Toggle.$(H) $(STCHDR)
-$(OUTDIR)ClickMenuView.$(O) ClickMenuView.$(C) ClickMenuView.$(H): ClickMenuView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/MenuView.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInListView.$(H) $(STCHDR)
-$(OUTDIR)EditField.$(O) EditField.$(C) EditField.$(H): EditField.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
-$(OUTDIR)FileSelectionBox.$(O) FileSelectionBox.$(C) FileSelectionBox.$(H): FileSelectionBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(INCLUDE_TOP)/stx/libwidg/ListSelectionBox.$(H) $(STCHDR)
-$(OUTDIR)MacOSX2ToolbarIconLibrary.$(O) MacOSX2ToolbarIconLibrary.$(C) MacOSX2ToolbarIconLibrary.$(H): MacOSX2ToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/MacOSXToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)RadioButton.$(O) RadioButton.$(C) RadioButton.$(H): RadioButton.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(INCLUDE_TOP)/stx/libwidg/Toggle.$(H) $(STCHDR)
-$(OUTDIR)TextCollector.$(O) TextCollector.$(C) TextCollector.$(H): TextCollector.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
-$(OUTDIR)Windows8ToolbarIconLibrary.$(O) Windows8ToolbarIconLibrary.$(C) Windows8ToolbarIconLibrary.$(H): Windows8ToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)YesNoBox.$(O) YesNoBox.$(C) YesNoBox.$(H): YesNoBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/InfoBox.$(H) $(INCLUDE_TOP)/stx/libwidg/WarningBox.$(H) $(STCHDR)
-$(OUTDIR)FileSaveBox.$(O) FileSaveBox.$(C) FileSaveBox.$(H): FileSaveBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(INCLUDE_TOP)/stx/libwidg/FileSelectionBox.$(H) $(INCLUDE_TOP)/stx/libwidg/ListSelectionBox.$(H) $(STCHDR)
-$(OUTDIR)Workspace.$(O) Workspace.$(C) Workspace.$(H): Workspace.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextCollector.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
-$(OUTDIR)CodeView.$(O) CodeView.$(C) CodeView.$(H): CodeView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextCollector.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(INCLUDE_TOP)/stx/libwidg/Workspace.$(H) $(STCHDR)
-$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Dictionary.$(H) $(INCLUDE_TOP)/stx/libbasic/IdentityDictionary.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/Set.$(H) $(INCLUDE_TOP)/stx/libbasic/UserPreferences.$(H) $(STCHDR)
-
-# ENDMAKEDEPEND --- do not remove this line
-
+# $Header$
+#
+# DO NOT EDIT
+# automagically generated from the projectDefinition: stx_libwidg.
+#
+# Warning: once you modify this file, do not rerun
+# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
+#
+# The Makefile as generated by this Make.proto supports the following targets:
+#    make         - compile all st-files to a classLib
+#    make clean   - clean all temp files
+#    make clobber - clean all
+#
+# This file contains definitions for Unix based platforms.
+# It shares common definitions with the win32-make in Make.spec.
+
+#
+# position (of this package) in directory hierarchy:
+# (must point to ST/X top directory, for tools and includes)
+TOP=..
+INCLUDE_TOP=$(TOP)/..
+
+# subdirectories where targets are to be made:
+SUBDIRS=
+
+
+# subdirectories where Makefiles are to be made:
+# (only define if different from SUBDIRS)
+# ALLSUBDIRS=
+
+REQUIRED_SUPPORT_DIRS=
+
+# if your embedded C code requires any system includes,
+# add the path(es) here:,
+# ********** OPTIONAL: MODIFY the next lines ***
+# LOCALINCLUDES=-Ifoo -Ibar
+LOCALINCLUDES= -I$(INCLUDE_TOP)/stx/goodies/regex -I$(INCLUDE_TOP)/stx/libbasic -I$(INCLUDE_TOP)/stx/libbasic2 -I$(INCLUDE_TOP)/stx/libbasic3 -I$(INCLUDE_TOP)/stx/libui -I$(INCLUDE_TOP)/stx/libview -I$(INCLUDE_TOP)/stx/libview2
+
+
+# if you need any additional defines for embedded C code,
+# add them here:,
+# ********** OPTIONAL: MODIFY the next lines ***
+# LOCALDEFINES=-Dfoo -Dbar -DDEBUG
+LOCALDEFINES=
+
+LIBNAME=libstx_libwidg
+STCLOCALOPT='-package=$(PACKAGE)' -I. $(LOCALINCLUDES) $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) -headerDir=. $(COMMONSYMBOLS) -varPrefix=$(LIBNAME)
+
+
+# ********** OPTIONAL: MODIFY the next line ***
+# additional C-libraries that should be pre-linked with the class-objects
+LD_OBJ_LIBS=
+LOCAL_SHARED_LIBS=
+
+
+# ********** OPTIONAL: MODIFY the next line ***
+# additional C targets or libraries should be added below
+LOCAL_EXTRA_TARGETS=
+
+OBJS= $(COMMON_OBJS) $(UNIX_OBJS)
+
+
+
+all:: preMake classLibRule postMake
+
+pre_objs::  
+
+
+
+
+
+
+# Enforce recompilation of package definition class if Mercurial working
+# copy state changes. Together with --guessVersion it ensures that package
+# definition class always contains correct binary revision string.
+ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo -n '**NOHG**'))
+stx_libwidg.$(O): $(shell hg root)/.hg/dirstate
+endif
+
+
+
+
+# run default testsuite for this package
+test: $(TOP)/goodies/builder/reports
+	$(MAKE) -C $(TOP)/goodies/builder/reports -f Makefile.init
+	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
+
+
+
+# add more install actions here
+install::
+
+# add more install actions for aux-files (resources) here
+installAux::
+
+# add more preMake actions here
+preMake::
+
+# add more postMake actions here
+postMake:: cleanjunk
+
+# build all mandatory prerequisite packages (containing superclasses) for this package
+prereq:
+	cd ../libbasic && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+	cd ../libbasic2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+	cd ../libview && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+	cd ../libview2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+
+
+
+# build all packages containing referenced classes for this package
+# they are not needed to compile the package (but later, to load it)
+references:
+
+
+cleanjunk::
+	-rm -f *.s *.s2
+
+clean::
+	-rm -f *.o *.H
+
+clobber:: clean
+	-rm -f *.so *.dll
+
+
+# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
+$(OUTDIR)ButtonController.$(O) ButtonController.$(C) ButtonController.$(H): ButtonController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(STCHDR)
+$(OUTDIR)CodeViewTheme.$(O) CodeViewTheme.$(C) CodeViewTheme.$(H): CodeViewTheme.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
+$(OUTDIR)DialogBox.$(O) DialogBox.$(C) DialogBox.$(H): DialogBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)EditTextViewCompletionSupport.$(O) EditTextViewCompletionSupport.$(C) EditTextViewCompletionSupport.$(H): EditTextViewCompletionSupport.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
+$(OUTDIR)EnterFieldGroup.$(O) EnterFieldGroup.$(C) EnterFieldGroup.$(H): EnterFieldGroup.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
+$(OUTDIR)FramedBox.$(O) FramedBox.$(C) FramedBox.$(H): FramedBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
+$(OUTDIR)GenericToolbarIconLibrary.$(O) GenericToolbarIconLibrary.$(C) GenericToolbarIconLibrary.$(H): GenericToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
+$(OUTDIR)Label.$(O) Label.$(C) Label.$(H): Label.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)ListView.$(O) ListView.$(C) ListView.$(H): ListView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)ListViewController.$(O) ListViewController.$(C) ListViewController.$(H): ListViewController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(STCHDR)
+$(OUTDIR)MenuEvent.$(O) MenuEvent.$(C) MenuEvent.$(H): MenuEvent.st $(INCLUDE_TOP)/stx/libbasic/Message.$(H) $(INCLUDE_TOP)/stx/libbasic/MessageSend.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Event.$(H) $(INCLUDE_TOP)/stx/libview/WidgetEvent.$(H) $(INCLUDE_TOP)/stx/libview/WindowEvent.$(H) $(STCHDR)
+$(OUTDIR)ObjectView.$(O) ObjectView.$(C) ObjectView.$(H): ObjectView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)PanelView.$(O) PanelView.$(C) PanelView.$(H): PanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
+$(OUTDIR)PopUpMenu.$(O) PopUpMenu.$(C) PopUpMenu.$(H): PopUpMenu.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/PopUpView.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)PullDownMenu.$(O) PullDownMenu.$(C) PullDownMenu.$(H): PullDownMenu.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)RadioButtonGroup.$(O) RadioButtonGroup.$(C) RadioButtonGroup.$(H): RadioButtonGroup.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libview2/ValueHolder.$(H) $(INCLUDE_TOP)/stx/libview2/ValueModel.$(H) $(STCHDR)
+$(OUTDIR)ScrollBar.$(O) ScrollBar.$(C) ScrollBar.$(H): ScrollBar.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
+$(OUTDIR)ScrollableView.$(O) ScrollableView.$(C) ScrollableView.$(H): ScrollableView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
+$(OUTDIR)Scroller.$(O) Scroller.$(C) Scroller.$(H): Scroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(STCHDR)
+$(OUTDIR)SelectionInList.$(O) SelectionInList.$(C) SelectionInList.$(H): SelectionInList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libview2/ValueHolder.$(H) $(INCLUDE_TOP)/stx/libview2/ValueModel.$(H) $(STCHDR)
+$(OUTDIR)VariablePanel.$(O) VariablePanel.$(C) VariablePanel.$(H): VariablePanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(STCHDR)
+$(OUTDIR)VariablePanelController.$(O) VariablePanelController.$(C) VariablePanelController.$(H): VariablePanelController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(STCHDR)
+$(OUTDIR)stx_libwidg.$(O) stx_libwidg.$(C) stx_libwidg.$(H): stx_libwidg.st $(INCLUDE_TOP)/stx/libbasic/LibraryDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/ProjectDefinition.$(H) $(STCHDR)
+$(OUTDIR)Button.$(O) Button.$(C) Button.$(H): Button.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
+$(OUTDIR)CheckLabel.$(O) CheckLabel.$(C) CheckLabel.$(H): CheckLabel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
+$(OUTDIR)DragRectangleController.$(O) DragRectangleController.$(C) DragRectangleController.$(H): DragRectangleController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(STCHDR)
+$(OUTDIR)EnterBox.$(O) EnterBox.$(C) EnterBox.$(H): EnterBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
+$(OUTDIR)FontPanel.$(O) FontPanel.$(C) FontPanel.$(H): FontPanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
+$(OUTDIR)HVScrollableView.$(O) HVScrollableView.$(C) HVScrollableView.$(H): HVScrollableView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/ScrollableView.$(H) $(STCHDR)
+$(OUTDIR)HorizontalPanelView.$(O) HorizontalPanelView.$(C) HorizontalPanelView.$(H): HorizontalPanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/PanelView.$(H) $(STCHDR)
+$(OUTDIR)HorizontalScrollBar.$(O) HorizontalScrollBar.$(C) HorizontalScrollBar.$(H): HorizontalScrollBar.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/ScrollBar.$(H) $(STCHDR)
+$(OUTDIR)HorizontalScroller.$(O) HorizontalScroller.$(C) HorizontalScroller.$(H): HorizontalScroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Scroller.$(H) $(STCHDR)
+$(OUTDIR)InfoBox.$(O) InfoBox.$(C) InfoBox.$(H): InfoBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
+$(OUTDIR)MiniScroller.$(O) MiniScroller.$(C) MiniScroller.$(H): MiniScroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Scroller.$(H) $(STCHDR)
+$(OUTDIR)MultiColumnPanelView.$(O) MultiColumnPanelView.$(C) MultiColumnPanelView.$(H): MultiColumnPanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/PanelView.$(H) $(STCHDR)
+$(OUTDIR)MultiSelectionInList.$(O) MultiSelectionInList.$(C) MultiSelectionInList.$(H): MultiSelectionInList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libview2/ValueHolder.$(H) $(INCLUDE_TOP)/stx/libview2/ValueModel.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInList.$(H) $(STCHDR)
+$(OUTDIR)OptionBox.$(O) OptionBox.$(C) OptionBox.$(H): OptionBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(STCHDR)
+$(OUTDIR)PopUpListController.$(O) PopUpListController.$(C) PopUpListController.$(H): PopUpListController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(STCHDR)
+$(OUTDIR)SelectionInListView.$(O) SelectionInListView.$(C) SelectionInListView.$(H): SelectionInListView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(STCHDR)
+$(OUTDIR)SequenceView.$(O) SequenceView.$(C) SequenceView.$(H): SequenceView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/ScrollableView.$(H) $(STCHDR)
+$(OUTDIR)TextView.$(O) TextView.$(C) TextView.$(H): TextView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(STCHDR)
+$(OUTDIR)ToggleController.$(O) ToggleController.$(C) ToggleController.$(H): ToggleController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(STCHDR)
+$(OUTDIR)VariableHorizontalPanel.$(O) VariableHorizontalPanel.$(C) VariableHorizontalPanel.$(H): VariableHorizontalPanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanel.$(H) $(STCHDR)
+$(OUTDIR)VariableHorizontalPanelController.$(O) VariableHorizontalPanelController.$(C) VariableHorizontalPanelController.$(H): VariableHorizontalPanelController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanelController.$(H) $(STCHDR)
+$(OUTDIR)VariableVerticalPanel.$(O) VariableVerticalPanel.$(C) VariableVerticalPanel.$(H): VariableVerticalPanel.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanel.$(H) $(STCHDR)
+$(OUTDIR)VariableVerticalPanelController.$(O) VariableVerticalPanelController.$(C) VariableVerticalPanelController.$(H): VariableVerticalPanelController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/VariablePanelController.$(H) $(STCHDR)
+$(OUTDIR)VerticalPanelView.$(O) VerticalPanelView.$(C) VerticalPanelView.$(H): VerticalPanelView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libwidg/PanelView.$(H) $(STCHDR)
+$(OUTDIR)WorkspaceCompletionSupport.$(O) WorkspaceCompletionSupport.$(C) WorkspaceCompletionSupport.$(H): WorkspaceCompletionSupport.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextViewCompletionSupport.$(H) $(STCHDR)
+$(OUTDIR)XPToolbarIconLibrary.$(O) XPToolbarIconLibrary.$(C) XPToolbarIconLibrary.$(H): XPToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)ArrowButton.$(O) ArrowButton.$(C) ArrowButton.$(H): ArrowButton.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
+$(OUTDIR)EditTextView.$(O) EditTextView.$(C) EditTextView.$(H): EditTextView.st $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Notification.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/Query.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
+$(OUTDIR)EnterBox2.$(O) EnterBox2.$(C) EnterBox2.$(H): EnterBox2.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(STCHDR)
+$(OUTDIR)FileSelectionList.$(O) FileSelectionList.$(C) FileSelectionList.$(H): FileSelectionList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInListView.$(H) $(STCHDR)
+$(OUTDIR)HorizontalMiniScroller.$(O) HorizontalMiniScroller.$(C) HorizontalMiniScroller.$(H): HorizontalMiniScroller.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/MiniScroller.$(H) $(INCLUDE_TOP)/stx/libwidg/Scroller.$(H) $(STCHDR)
+$(OUTDIR)ListSelectionBox.$(O) ListSelectionBox.$(C) ListSelectionBox.$(H): ListSelectionBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(STCHDR)
+$(OUTDIR)MacOSXToolbarIconLibrary.$(O) MacOSXToolbarIconLibrary.$(C) MacOSXToolbarIconLibrary.$(H): MacOSXToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)MenuView.$(O) MenuView.$(C) MenuView.$(H): MenuView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInListView.$(H) $(STCHDR)
+$(OUTDIR)PopUpList.$(O) PopUpList.$(C) PopUpList.$(H): PopUpList.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
+$(OUTDIR)RadioButtonController.$(O) RadioButtonController.$(C) RadioButtonController.$(H): RadioButtonController.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/Controller.$(H) $(INCLUDE_TOP)/stx/libwidg/ButtonController.$(H) $(INCLUDE_TOP)/stx/libwidg/ToggleController.$(H) $(STCHDR)
+$(OUTDIR)Toggle.$(O) Toggle.$(C) Toggle.$(H): Toggle.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(STCHDR)
+$(OUTDIR)VistaToolbarIconLibrary.$(O) VistaToolbarIconLibrary.$(C) VistaToolbarIconLibrary.$(H): VistaToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)WarningBox.$(O) WarningBox.$(C) WarningBox.$(H): WarningBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/InfoBox.$(H) $(STCHDR)
+$(OUTDIR)AdwaitaToolbarIconLibrary.$(O) AdwaitaToolbarIconLibrary.$(C) AdwaitaToolbarIconLibrary.$(H): AdwaitaToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)CheckToggle.$(O) CheckToggle.$(C) CheckToggle.$(H): CheckToggle.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(INCLUDE_TOP)/stx/libwidg/Toggle.$(H) $(STCHDR)
+$(OUTDIR)ClickMenuView.$(O) ClickMenuView.$(C) ClickMenuView.$(H): ClickMenuView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/MenuView.$(H) $(INCLUDE_TOP)/stx/libwidg/SelectionInListView.$(H) $(STCHDR)
+$(OUTDIR)EditField.$(O) EditField.$(C) EditField.$(H): EditField.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
+$(OUTDIR)FileSelectionBox.$(O) FileSelectionBox.$(C) FileSelectionBox.$(H): FileSelectionBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(INCLUDE_TOP)/stx/libwidg/ListSelectionBox.$(H) $(STCHDR)
+$(OUTDIR)MacOSX2ToolbarIconLibrary.$(O) MacOSX2ToolbarIconLibrary.$(C) MacOSX2ToolbarIconLibrary.$(H): MacOSX2ToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/MacOSXToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)RadioButton.$(O) RadioButton.$(C) RadioButton.$(H): RadioButton.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/Button.$(H) $(INCLUDE_TOP)/stx/libwidg/Label.$(H) $(INCLUDE_TOP)/stx/libwidg/Toggle.$(H) $(STCHDR)
+$(OUTDIR)TextCollector.$(O) TextCollector.$(C) TextCollector.$(H): TextCollector.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
+$(OUTDIR)Windows8ToolbarIconLibrary.$(O) Windows8ToolbarIconLibrary.$(C) Windows8ToolbarIconLibrary.$(H): Windows8ToolbarIconLibrary.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg/GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)/stx/libwidg/XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)YesNoBox.$(O) YesNoBox.$(C) YesNoBox.$(H): YesNoBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/InfoBox.$(H) $(INCLUDE_TOP)/stx/libwidg/WarningBox.$(H) $(STCHDR)
+$(OUTDIR)FileSaveBox.$(O) FileSaveBox.$(C) FileSaveBox.$(H): FileSaveBox.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/ModalBox.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/StandardSystemView.$(H) $(INCLUDE_TOP)/stx/libview/TopView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/DialogBox.$(H) $(INCLUDE_TOP)/stx/libwidg/EnterBox.$(H) $(INCLUDE_TOP)/stx/libwidg/FileSelectionBox.$(H) $(INCLUDE_TOP)/stx/libwidg/ListSelectionBox.$(H) $(STCHDR)
+$(OUTDIR)Workspace.$(O) Workspace.$(C) Workspace.$(H): Workspace.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextCollector.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(STCHDR)
+$(OUTDIR)CodeView.$(O) CodeView.$(C) CodeView.$(H): CodeView.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview/DisplaySurface.$(H) $(INCLUDE_TOP)/stx/libview/GraphicsMedium.$(H) $(INCLUDE_TOP)/stx/libview/SimpleView.$(H) $(INCLUDE_TOP)/stx/libview/View.$(H) $(INCLUDE_TOP)/stx/libwidg/EditTextView.$(H) $(INCLUDE_TOP)/stx/libwidg/ListView.$(H) $(INCLUDE_TOP)/stx/libwidg/TextCollector.$(H) $(INCLUDE_TOP)/stx/libwidg/TextView.$(H) $(INCLUDE_TOP)/stx/libwidg/Workspace.$(H) $(STCHDR)
+$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Dictionary.$(H) $(INCLUDE_TOP)/stx/libbasic/IdentityDictionary.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/Set.$(H) $(INCLUDE_TOP)/stx/libbasic/UserPreferences.$(H) $(STCHDR)
+
+# ENDMAKEDEPEND --- do not remove this line
+
--- a/Make.spec	Sun Dec 10 00:04:50 2017 +0000
+++ b/Make.spec	Tue Jun 26 09:35:02 2018 +0100
@@ -1,212 +1,212 @@
-# $Header$
-#
-# DO NOT EDIT
-# automagically generated from the projectDefinition: stx_libwidg.
-#
-# Warning: once you modify this file, do not rerun
-# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
-#
-# This file contains specifications which are common to all platforms.
-#
-
-# Do NOT CHANGE THESE DEFINITIONS
-# (otherwise, ST/X will have a hard time to find out the packages location from its packageID,
-#  to find the source code of a class and to find the library for a package)
-MODULE=stx
-MODULE_DIR=libwidg
-PACKAGE=$(MODULE):$(MODULE_DIR)
-
-
-# Argument(s) to the stc compiler (stc --usage).
-#  -headerDir=. : create header files locally
-#                (if removed, they will be created as common
-#  -Pxxx       : defines the package
-#  -Zxxx       : a prefix for variables within the classLib
-#  -Dxxx       : defines passed to CC for inline C-code
-#  -Ixxx       : include path passed to CC for inline C-code
-#  +optspace   : optimized for space
-#  +optspace2  : optimized more for space
-#  +optspace3  : optimized even more for space
-#  +optinline  : generate inline code for some ST constructs
-#  +inlineNew  : additionally inline new
-#  +inlineMath : additionally inline some floatPnt math stuff
-#
-# ********** OPTIONAL: MODIFY the next line(s) ***
-# STCLOCALOPTIMIZATIONS=+optinline +inlineNew
-# STCLOCALOPTIMIZATIONS=+optspace3
-STCLOCALOPTIMIZATIONS=+optinline
-
-
-# Argument(s) to the stc compiler (stc --usage).
-#  -warn            : no warnings
-#  -warnNonStandard : no warnings about ST/X extensions
-#  -warnEOLComments : no warnings about EOL comment extension
-#  -warnPrivacy     : no warnings about privateClass extension
-#  -warnUnused      : no warnings about unused variables
-#
-# ********** OPTIONAL: MODIFY the next line(s) ***
-# STCWARNINGS=-warn
-# STCWARNINGS=-warnNonStandard
-# STCWARNINGS=-warnEOLComments
-STCWARNINGS=-warnNonStandard -warnUnused
-
-COMMON_CLASSES= \
-	ButtonController \
-	CodeViewTheme \
-	DialogBox \
-	EditTextViewCompletionSupport \
-	EnterFieldGroup \
-	FramedBox \
-	GenericToolbarIconLibrary \
-	Label \
-	ListView \
-	ListViewController \
-	MenuEvent \
-	ObjectView \
-	PanelView \
-	PopUpMenu \
-	PullDownMenu \
-	RadioButtonGroup \
-	ScrollBar \
-	ScrollableView \
-	Scroller \
-	SelectionInList \
-	VariablePanel \
-	VariablePanelController \
-	stx_libwidg \
-	Button \
-	CheckLabel \
-	DragRectangleController \
-	EnterBox \
-	FontPanel \
-	HVScrollableView \
-	HorizontalPanelView \
-	HorizontalScrollBar \
-	HorizontalScroller \
-	InfoBox \
-	MiniScroller \
-	MultiColumnPanelView \
-	MultiSelectionInList \
-	OptionBox \
-	PopUpListController \
-	SelectionInListView \
-	SequenceView \
-	TextView \
-	ToggleController \
-	VariableHorizontalPanel \
-	VariableHorizontalPanelController \
-	VariableVerticalPanel \
-	VariableVerticalPanelController \
-	VerticalPanelView \
-	WorkspaceCompletionSupport \
-	XPToolbarIconLibrary \
-	ArrowButton \
-	EditTextView \
-	EnterBox2 \
-	FileSelectionList \
-	HorizontalMiniScroller \
-	ListSelectionBox \
-	MacOSXToolbarIconLibrary \
-	MenuView \
-	PopUpList \
-	RadioButtonController \
-	Toggle \
-	VistaToolbarIconLibrary \
-	WarningBox \
-	AdwaitaToolbarIconLibrary \
-	CheckToggle \
-	ClickMenuView \
-	EditField \
-	FileSelectionBox \
-	MacOSX2ToolbarIconLibrary \
-	RadioButton \
-	TextCollector \
-	Windows8ToolbarIconLibrary \
-	YesNoBox \
-	FileSaveBox \
-	Workspace \
-	CodeView \
-
-
-
-
-COMMON_OBJS= \
-    $(OUTDIR)ButtonController.$(O) \
-    $(OUTDIR)CodeViewTheme.$(O) \
-    $(OUTDIR)DialogBox.$(O) \
-    $(OUTDIR)EditTextViewCompletionSupport.$(O) \
-    $(OUTDIR)EnterFieldGroup.$(O) \
-    $(OUTDIR)FramedBox.$(O) \
-    $(OUTDIR)GenericToolbarIconLibrary.$(O) \
-    $(OUTDIR)Label.$(O) \
-    $(OUTDIR)ListView.$(O) \
-    $(OUTDIR)ListViewController.$(O) \
-    $(OUTDIR)MenuEvent.$(O) \
-    $(OUTDIR)ObjectView.$(O) \
-    $(OUTDIR)PanelView.$(O) \
-    $(OUTDIR)PopUpMenu.$(O) \
-    $(OUTDIR)PullDownMenu.$(O) \
-    $(OUTDIR)RadioButtonGroup.$(O) \
-    $(OUTDIR)ScrollBar.$(O) \
-    $(OUTDIR)ScrollableView.$(O) \
-    $(OUTDIR)Scroller.$(O) \
-    $(OUTDIR)SelectionInList.$(O) \
-    $(OUTDIR)VariablePanel.$(O) \
-    $(OUTDIR)VariablePanelController.$(O) \
-    $(OUTDIR)stx_libwidg.$(O) \
-    $(OUTDIR)Button.$(O) \
-    $(OUTDIR)CheckLabel.$(O) \
-    $(OUTDIR)DragRectangleController.$(O) \
-    $(OUTDIR)EnterBox.$(O) \
-    $(OUTDIR)FontPanel.$(O) \
-    $(OUTDIR)HVScrollableView.$(O) \
-    $(OUTDIR)HorizontalPanelView.$(O) \
-    $(OUTDIR)HorizontalScrollBar.$(O) \
-    $(OUTDIR)HorizontalScroller.$(O) \
-    $(OUTDIR)InfoBox.$(O) \
-    $(OUTDIR)MiniScroller.$(O) \
-    $(OUTDIR)MultiColumnPanelView.$(O) \
-    $(OUTDIR)MultiSelectionInList.$(O) \
-    $(OUTDIR)OptionBox.$(O) \
-    $(OUTDIR)PopUpListController.$(O) \
-    $(OUTDIR)SelectionInListView.$(O) \
-    $(OUTDIR)SequenceView.$(O) \
-    $(OUTDIR)TextView.$(O) \
-    $(OUTDIR)ToggleController.$(O) \
-    $(OUTDIR)VariableHorizontalPanel.$(O) \
-    $(OUTDIR)VariableHorizontalPanelController.$(O) \
-    $(OUTDIR)VariableVerticalPanel.$(O) \
-    $(OUTDIR)VariableVerticalPanelController.$(O) \
-    $(OUTDIR)VerticalPanelView.$(O) \
-    $(OUTDIR)WorkspaceCompletionSupport.$(O) \
-    $(OUTDIR)XPToolbarIconLibrary.$(O) \
-    $(OUTDIR)ArrowButton.$(O) \
-    $(OUTDIR)EditTextView.$(O) \
-    $(OUTDIR)EnterBox2.$(O) \
-    $(OUTDIR)FileSelectionList.$(O) \
-    $(OUTDIR)HorizontalMiniScroller.$(O) \
-    $(OUTDIR)ListSelectionBox.$(O) \
-    $(OUTDIR)MacOSXToolbarIconLibrary.$(O) \
-    $(OUTDIR)MenuView.$(O) \
-    $(OUTDIR)PopUpList.$(O) \
-    $(OUTDIR)RadioButtonController.$(O) \
-    $(OUTDIR)Toggle.$(O) \
-    $(OUTDIR)VistaToolbarIconLibrary.$(O) \
-    $(OUTDIR)WarningBox.$(O) \
-    $(OUTDIR)AdwaitaToolbarIconLibrary.$(O) \
-    $(OUTDIR)CheckToggle.$(O) \
-    $(OUTDIR)ClickMenuView.$(O) \
-    $(OUTDIR)EditField.$(O) \
-    $(OUTDIR)FileSelectionBox.$(O) \
-    $(OUTDIR)MacOSX2ToolbarIconLibrary.$(O) \
-    $(OUTDIR)RadioButton.$(O) \
-    $(OUTDIR)TextCollector.$(O) \
-    $(OUTDIR)Windows8ToolbarIconLibrary.$(O) \
-    $(OUTDIR)YesNoBox.$(O) \
-    $(OUTDIR)FileSaveBox.$(O) \
-    $(OUTDIR)Workspace.$(O) \
-    $(OUTDIR)CodeView.$(O) \
-    $(OUTDIR)extensions.$(O) \
-
-
-
+# $Header$
+#
+# DO NOT EDIT
+# automagically generated from the projectDefinition: stx_libwidg.
+#
+# Warning: once you modify this file, do not rerun
+# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
+#
+# This file contains specifications which are common to all platforms.
+#
+
+# Do NOT CHANGE THESE DEFINITIONS
+# (otherwise, ST/X will have a hard time to find out the packages location from its packageID,
+#  to find the source code of a class and to find the library for a package)
+MODULE=stx
+MODULE_DIR=libwidg
+PACKAGE=$(MODULE):$(MODULE_DIR)
+
+
+# Argument(s) to the stc compiler (stc --usage).
+#  -headerDir=. : create header files locally
+#                (if removed, they will be created as common
+#  -Pxxx       : defines the package
+#  -Zxxx       : a prefix for variables within the classLib
+#  -Dxxx       : defines passed to CC for inline C-code
+#  -Ixxx       : include path passed to CC for inline C-code
+#  +optspace   : optimized for space
+#  +optspace2  : optimized more for space
+#  +optspace3  : optimized even more for space
+#  +optinline  : generate inline code for some ST constructs
+#  +inlineNew  : additionally inline new
+#  +inlineMath : additionally inline some floatPnt math stuff
+#
+# ********** OPTIONAL: MODIFY the next line(s) ***
+# STCLOCALOPTIMIZATIONS=+optinline +inlineNew
+# STCLOCALOPTIMIZATIONS=+optspace3
+STCLOCALOPTIMIZATIONS=+optinline
+
+
+# Argument(s) to the stc compiler (stc --usage).
+#  -warn            : no warnings
+#  -warnNonStandard : no warnings about ST/X extensions
+#  -warnEOLComments : no warnings about EOL comment extension
+#  -warnPrivacy     : no warnings about privateClass extension
+#  -warnUnused      : no warnings about unused variables
+#
+# ********** OPTIONAL: MODIFY the next line(s) ***
+# STCWARNINGS=-warn
+# STCWARNINGS=-warnNonStandard
+# STCWARNINGS=-warnEOLComments
+STCWARNINGS=-warnNonStandard -warnUnused
+
+COMMON_CLASSES= \
+	ButtonController \
+	CodeViewTheme \
+	DialogBox \
+	EditTextViewCompletionSupport \
+	EnterFieldGroup \
+	FramedBox \
+	GenericToolbarIconLibrary \
+	Label \
+	ListView \
+	ListViewController \
+	MenuEvent \
+	ObjectView \
+	PanelView \
+	PopUpMenu \
+	PullDownMenu \
+	RadioButtonGroup \
+	ScrollBar \
+	ScrollableView \
+	Scroller \
+	SelectionInList \
+	VariablePanel \
+	VariablePanelController \
+	stx_libwidg \
+	Button \
+	CheckLabel \
+	DragRectangleController \
+	EnterBox \
+	FontPanel \
+	HVScrollableView \
+	HorizontalPanelView \
+	HorizontalScrollBar \
+	HorizontalScroller \
+	InfoBox \
+	MiniScroller \
+	MultiColumnPanelView \
+	MultiSelectionInList \
+	OptionBox \
+	PopUpListController \
+	SelectionInListView \
+	SequenceView \
+	TextView \
+	ToggleController \
+	VariableHorizontalPanel \
+	VariableHorizontalPanelController \
+	VariableVerticalPanel \
+	VariableVerticalPanelController \
+	VerticalPanelView \
+	WorkspaceCompletionSupport \
+	XPToolbarIconLibrary \
+	ArrowButton \
+	EditTextView \
+	EnterBox2 \
+	FileSelectionList \
+	HorizontalMiniScroller \
+	ListSelectionBox \
+	MacOSXToolbarIconLibrary \
+	MenuView \
+	PopUpList \
+	RadioButtonController \
+	Toggle \
+	VistaToolbarIconLibrary \
+	WarningBox \
+	AdwaitaToolbarIconLibrary \
+	CheckToggle \
+	ClickMenuView \
+	EditField \
+	FileSelectionBox \
+	MacOSX2ToolbarIconLibrary \
+	RadioButton \
+	TextCollector \
+	Windows8ToolbarIconLibrary \
+	YesNoBox \
+	FileSaveBox \
+	Workspace \
+	CodeView \
+
+
+
+
+COMMON_OBJS= \
+    $(OUTDIR)ButtonController.$(O) \
+    $(OUTDIR)CodeViewTheme.$(O) \
+    $(OUTDIR)DialogBox.$(O) \
+    $(OUTDIR)EditTextViewCompletionSupport.$(O) \
+    $(OUTDIR)EnterFieldGroup.$(O) \
+    $(OUTDIR)FramedBox.$(O) \
+    $(OUTDIR)GenericToolbarIconLibrary.$(O) \
+    $(OUTDIR)Label.$(O) \
+    $(OUTDIR)ListView.$(O) \
+    $(OUTDIR)ListViewController.$(O) \
+    $(OUTDIR)MenuEvent.$(O) \
+    $(OUTDIR)ObjectView.$(O) \
+    $(OUTDIR)PanelView.$(O) \
+    $(OUTDIR)PopUpMenu.$(O) \
+    $(OUTDIR)PullDownMenu.$(O) \
+    $(OUTDIR)RadioButtonGroup.$(O) \
+    $(OUTDIR)ScrollBar.$(O) \
+    $(OUTDIR)ScrollableView.$(O) \
+    $(OUTDIR)Scroller.$(O) \
+    $(OUTDIR)SelectionInList.$(O) \
+    $(OUTDIR)VariablePanel.$(O) \
+    $(OUTDIR)VariablePanelController.$(O) \
+    $(OUTDIR)stx_libwidg.$(O) \
+    $(OUTDIR)Button.$(O) \
+    $(OUTDIR)CheckLabel.$(O) \
+    $(OUTDIR)DragRectangleController.$(O) \
+    $(OUTDIR)EnterBox.$(O) \
+    $(OUTDIR)FontPanel.$(O) \
+    $(OUTDIR)HVScrollableView.$(O) \
+    $(OUTDIR)HorizontalPanelView.$(O) \
+    $(OUTDIR)HorizontalScrollBar.$(O) \
+    $(OUTDIR)HorizontalScroller.$(O) \
+    $(OUTDIR)InfoBox.$(O) \
+    $(OUTDIR)MiniScroller.$(O) \
+    $(OUTDIR)MultiColumnPanelView.$(O) \
+    $(OUTDIR)MultiSelectionInList.$(O) \
+    $(OUTDIR)OptionBox.$(O) \
+    $(OUTDIR)PopUpListController.$(O) \
+    $(OUTDIR)SelectionInListView.$(O) \
+    $(OUTDIR)SequenceView.$(O) \
+    $(OUTDIR)TextView.$(O) \
+    $(OUTDIR)ToggleController.$(O) \
+    $(OUTDIR)VariableHorizontalPanel.$(O) \
+    $(OUTDIR)VariableHorizontalPanelController.$(O) \
+    $(OUTDIR)VariableVerticalPanel.$(O) \
+    $(OUTDIR)VariableVerticalPanelController.$(O) \
+    $(OUTDIR)VerticalPanelView.$(O) \
+    $(OUTDIR)WorkspaceCompletionSupport.$(O) \
+    $(OUTDIR)XPToolbarIconLibrary.$(O) \
+    $(OUTDIR)ArrowButton.$(O) \
+    $(OUTDIR)EditTextView.$(O) \
+    $(OUTDIR)EnterBox2.$(O) \
+    $(OUTDIR)FileSelectionList.$(O) \
+    $(OUTDIR)HorizontalMiniScroller.$(O) \
+    $(OUTDIR)ListSelectionBox.$(O) \
+    $(OUTDIR)MacOSXToolbarIconLibrary.$(O) \
+    $(OUTDIR)MenuView.$(O) \
+    $(OUTDIR)PopUpList.$(O) \
+    $(OUTDIR)RadioButtonController.$(O) \
+    $(OUTDIR)Toggle.$(O) \
+    $(OUTDIR)VistaToolbarIconLibrary.$(O) \
+    $(OUTDIR)WarningBox.$(O) \
+    $(OUTDIR)AdwaitaToolbarIconLibrary.$(O) \
+    $(OUTDIR)CheckToggle.$(O) \
+    $(OUTDIR)ClickMenuView.$(O) \
+    $(OUTDIR)EditField.$(O) \
+    $(OUTDIR)FileSelectionBox.$(O) \
+    $(OUTDIR)MacOSX2ToolbarIconLibrary.$(O) \
+    $(OUTDIR)RadioButton.$(O) \
+    $(OUTDIR)TextCollector.$(O) \
+    $(OUTDIR)Windows8ToolbarIconLibrary.$(O) \
+    $(OUTDIR)YesNoBox.$(O) \
+    $(OUTDIR)FileSaveBox.$(O) \
+    $(OUTDIR)Workspace.$(O) \
+    $(OUTDIR)CodeView.$(O) \
+    $(OUTDIR)extensions.$(O) \
+
+
+
--- a/Makefile.init	Sun Dec 10 00:04:50 2017 +0000
+++ b/Makefile.init	Tue Jun 26 09:35:02 2018 +0100
@@ -1,27 +1,27 @@
-#
-# DO NOT EDIT
-#
-# make uses this file (Makefile) only, if there is no
-# file named "makefile" (lower-case m) in the same directory.
-# My only task is to generate the real makefile and call make again.
-# Thereafter, I am no longer used and needed.
-#
-# MACOSX caveat:
-#   as filenames are not case sensitive (in a default setup),
-#   we cannot use the above trick. Therefore, this file is now named
-#   "Makefile.init", and you have to execute "make -f Makefile.init" to
-#   get the initial makefile.  This is now also done by the toplevel CONFIG
-#   script.
-
-.PHONY: run
-
-run: makefile
-	$(MAKE) -f makefile
-
-#only needed for the definition of $(TOP)
-include Make.proto
-
-makefile: mf
-
-mf:
-	$(TOP)/rules/stmkmf
+#
+# DO NOT EDIT
+#
+# make uses this file (Makefile) only, if there is no
+# file named "makefile" (lower-case m) in the same directory.
+# My only task is to generate the real makefile and call make again.
+# Thereafter, I am no longer used and needed.
+#
+# MACOSX caveat:
+#   as filenames are not case sensitive (in a default setup),
+#   we cannot use the above trick. Therefore, this file is now named
+#   "Makefile.init", and you have to execute "make -f Makefile.init" to
+#   get the initial makefile.  This is now also done by the toplevel CONFIG
+#   script.
+
+.PHONY: run
+
+run: makefile
+	$(MAKE) -f makefile
+
+#only needed for the definition of $(TOP)
+include Make.proto
+
+makefile: mf
+
+mf:
+	$(TOP)/rules/stmkmf
--- a/abbrev.stc	Sun Dec 10 00:04:50 2017 +0000
+++ b/abbrev.stc	Tue Jun 26 09:35:02 2018 +0100
@@ -1,78 +1,78 @@
-# automagically generated by the project definition
-# this file is needed for stc to be able to compile modules independently.
-# it provides information about a classes filename, category and especially namespace.
-ButtonController ButtonController stx:libwidg 'Interface-Support-Controllers' 0
-CodeViewTheme CodeViewTheme stx:libwidg 'Views-Text-Theme' 0
-DialogBox DialogBox stx:libwidg 'Views-DialogBoxes' 2
-EditTextViewCompletionSupport EditTextViewCompletionSupport stx:libwidg 'Views-Text' 0
-EnterFieldGroup EnterFieldGroup stx:libwidg 'Interface-Support' 0
-FramedBox FramedBox stx:libwidg 'Views-Layout' 2
-GenericToolbarIconLibrary GenericToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-Label Label stx:libwidg 'Views-Layout' 2
-ListView ListView stx:libwidg 'Views-Text' 2
-ListViewController ListViewController stx:libwidg 'Interface-Support' 0
-MenuEvent MenuEvent stx:libwidg 'Views-Menus' 0
-ObjectView ObjectView stx:libwidg 'Views-Basic' 2
-PanelView PanelView stx:libwidg 'Views-Layout' 2
-PopUpMenu PopUpMenu stx:libwidg 'Views-Menus' 2
-PullDownMenu PullDownMenu stx:libwidg 'Views-Menus' 2
-RadioButtonGroup RadioButtonGroup stx:libwidg 'Views-Support' 0
-ScrollBar ScrollBar stx:libwidg 'Views-Interactors' 2
-ScrollableView ScrollableView stx:libwidg 'Views-Basic' 2
-Scroller Scroller stx:libwidg 'Views-Interactors' 2
-SelectionInList SelectionInList stx:libwidg 'Interface-Support-Models' 0
-VariablePanel VariablePanel stx:libwidg 'Views-Layout' 2
-VariablePanelController VariablePanelController stx:libwidg 'Interface-Support-Controllers' 0
-stx_libwidg stx_libwidg stx:libwidg '* Projects & Packages *' 3
-Button Button stx:libwidg 'Views-Interactors' 2
-CheckLabel CheckLabel stx:libwidg 'Views-Layout' 2
-DragRectangleController DragRectangleController stx:libwidg 'Interface-Support-Controllers' 0
-EnterBox EnterBox stx:libwidg 'Views-DialogBoxes' 2
-FontPanel FontPanel stx:libwidg 'Views-DialogBoxes' 2
-HVScrollableView HVScrollableView stx:libwidg 'Views-Basic' 2
-HorizontalPanelView HorizontalPanelView stx:libwidg 'Views-Layout' 2
-HorizontalScrollBar HorizontalScrollBar stx:libwidg 'Views-Interactors' 2
-HorizontalScroller HorizontalScroller stx:libwidg 'Views-Interactors' 2
-InfoBox InfoBox stx:libwidg 'Views-DialogBoxes' 2
-MiniScroller MiniScroller stx:libwidg 'Views-Interactors' 2
-MultiColumnPanelView MultiColumnPanelView stx:libwidg 'Views-Layout' 2
-MultiSelectionInList MultiSelectionInList stx:libwidg 'Interface-Support-Models' 0
-OptionBox OptionBox stx:libwidg 'Views-DialogBoxes' 2
-PopUpListController PopUpListController stx:libwidg 'Interface-Support-Controllers' 0
-SelectionInListView SelectionInListView stx:libwidg 'Views-Lists' 2
-SequenceView SequenceView stx:libwidg 'Views-Lists' 2
-TextView TextView stx:libwidg 'Views-Text' 2
-ToggleController ToggleController stx:libwidg 'Interface-Support-Controllers' 0
-VariableHorizontalPanel VariableHorizontalPanel stx:libwidg 'Views-Layout' 2
-VariableHorizontalPanelController VariableHorizontalPanelController stx:libwidg 'Interface-Support-Controllers' 0
-VariableVerticalPanel VariableVerticalPanel stx:libwidg 'Views-Layout' 2
-VariableVerticalPanelController VariableVerticalPanelController stx:libwidg 'Interface-Support-Controllers' 0
-VerticalPanelView VerticalPanelView stx:libwidg 'Views-Layout' 2
-WorkspaceCompletionSupport WorkspaceCompletionSupport stx:libwidg 'Interface-Smalltalk' 0
-XPToolbarIconLibrary XPToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-ArrowButton ArrowButton stx:libwidg 'Views-Interactors' 2
-EditTextView EditTextView stx:libwidg 'Views-Text' 2
-EnterBox2 EnterBox2 stx:libwidg 'Views-DialogBoxes' 2
-FileSelectionList FileSelectionList stx:libwidg 'Views-Lists' 2
-HorizontalMiniScroller HorizontalMiniScroller stx:libwidg 'Views-Interactors' 2
-ListSelectionBox ListSelectionBox stx:libwidg 'Views-DialogBoxes' 2
-MacOSXToolbarIconLibrary MacOSXToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-MenuView MenuView stx:libwidg 'Views-Menus' 2
-PopUpList PopUpList stx:libwidg 'Views-Interactors' 2
-RadioButtonController RadioButtonController stx:libwidg 'Interface-Support-Controllers' 0
-Toggle Toggle stx:libwidg 'Views-Interactors' 2
-VistaToolbarIconLibrary VistaToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-WarningBox WarningBox stx:libwidg 'Views-DialogBoxes' 2
-AdwaitaToolbarIconLibrary AdwaitaToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-CheckToggle CheckToggle stx:libwidg 'Views-Interactors' 2
-ClickMenuView ClickMenuView stx:libwidg 'Views-Menus' 2
-EditField EditField stx:libwidg 'Views-Text' 2
-FileSelectionBox FileSelectionBox stx:libwidg 'Views-DialogBoxes' 2
-MacOSX2ToolbarIconLibrary MacOSX2ToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-RadioButton RadioButton stx:libwidg 'Views-Interactors' 2
-TextCollector TextCollector stx:libwidg 'Views-Text' 2
-Windows8ToolbarIconLibrary Windows8ToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
-YesNoBox YesNoBox stx:libwidg 'Views-DialogBoxes' 2
-FileSaveBox FileSaveBox stx:libwidg 'Views-DialogBoxes' 2
-Workspace Workspace stx:libwidg 'Interface-Smalltalk' 2
-CodeView CodeView stx:libwidg 'Views-Text' 2
+# automagically generated by the project definition
+# this file is needed for stc to be able to compile modules independently.
+# it provides information about a classes filename, category and especially namespace.
+ButtonController ButtonController stx:libwidg 'Interface-Support-Controllers' 0
+CodeViewTheme CodeViewTheme stx:libwidg 'Views-Text-Theme' 0
+DialogBox DialogBox stx:libwidg 'Views-DialogBoxes' 2
+EditTextViewCompletionSupport EditTextViewCompletionSupport stx:libwidg 'Views-Text' 0
+EnterFieldGroup EnterFieldGroup stx:libwidg 'Interface-Support' 0
+FramedBox FramedBox stx:libwidg 'Views-Layout' 2
+GenericToolbarIconLibrary GenericToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+Label Label stx:libwidg 'Views-Layout' 2
+ListView ListView stx:libwidg 'Views-Text' 2
+ListViewController ListViewController stx:libwidg 'Interface-Support' 0
+MenuEvent MenuEvent stx:libwidg 'Views-Menus' 0
+ObjectView ObjectView stx:libwidg 'Views-Basic' 2
+PanelView PanelView stx:libwidg 'Views-Layout' 2
+PopUpMenu PopUpMenu stx:libwidg 'Views-Menus' 2
+PullDownMenu PullDownMenu stx:libwidg 'Views-Menus' 2
+RadioButtonGroup RadioButtonGroup stx:libwidg 'Views-Support' 0
+ScrollBar ScrollBar stx:libwidg 'Views-Interactors' 2
+ScrollableView ScrollableView stx:libwidg 'Views-Basic' 2
+Scroller Scroller stx:libwidg 'Views-Interactors' 2
+SelectionInList SelectionInList stx:libwidg 'Interface-Support-Models' 0
+VariablePanel VariablePanel stx:libwidg 'Views-Layout' 2
+VariablePanelController VariablePanelController stx:libwidg 'Interface-Support-Controllers' 0
+stx_libwidg stx_libwidg stx:libwidg '* Projects & Packages *' 3
+Button Button stx:libwidg 'Views-Interactors' 2
+CheckLabel CheckLabel stx:libwidg 'Views-Layout' 2
+DragRectangleController DragRectangleController stx:libwidg 'Interface-Support-Controllers' 0
+EnterBox EnterBox stx:libwidg 'Views-DialogBoxes' 2
+FontPanel FontPanel stx:libwidg 'Views-DialogBoxes' 2
+HVScrollableView HVScrollableView stx:libwidg 'Views-Basic' 2
+HorizontalPanelView HorizontalPanelView stx:libwidg 'Views-Layout' 2
+HorizontalScrollBar HorizontalScrollBar stx:libwidg 'Views-Interactors' 2
+HorizontalScroller HorizontalScroller stx:libwidg 'Views-Interactors' 2
+InfoBox InfoBox stx:libwidg 'Views-DialogBoxes' 2
+MiniScroller MiniScroller stx:libwidg 'Views-Interactors' 2
+MultiColumnPanelView MultiColumnPanelView stx:libwidg 'Views-Layout' 2
+MultiSelectionInList MultiSelectionInList stx:libwidg 'Interface-Support-Models' 0
+OptionBox OptionBox stx:libwidg 'Views-DialogBoxes' 2
+PopUpListController PopUpListController stx:libwidg 'Interface-Support-Controllers' 0
+SelectionInListView SelectionInListView stx:libwidg 'Views-Lists' 2
+SequenceView SequenceView stx:libwidg 'Views-Lists' 2
+TextView TextView stx:libwidg 'Views-Text' 2
+ToggleController ToggleController stx:libwidg 'Interface-Support-Controllers' 0
+VariableHorizontalPanel VariableHorizontalPanel stx:libwidg 'Views-Layout' 2
+VariableHorizontalPanelController VariableHorizontalPanelController stx:libwidg 'Interface-Support-Controllers' 0
+VariableVerticalPanel VariableVerticalPanel stx:libwidg 'Views-Layout' 2
+VariableVerticalPanelController VariableVerticalPanelController stx:libwidg 'Interface-Support-Controllers' 0
+VerticalPanelView VerticalPanelView stx:libwidg 'Views-Layout' 2
+WorkspaceCompletionSupport WorkspaceCompletionSupport stx:libwidg 'Interface-Smalltalk' 0
+XPToolbarIconLibrary XPToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+ArrowButton ArrowButton stx:libwidg 'Views-Interactors' 2
+EditTextView EditTextView stx:libwidg 'Views-Text' 2
+EnterBox2 EnterBox2 stx:libwidg 'Views-DialogBoxes' 2
+FileSelectionList FileSelectionList stx:libwidg 'Views-Lists' 2
+HorizontalMiniScroller HorizontalMiniScroller stx:libwidg 'Views-Interactors' 2
+ListSelectionBox ListSelectionBox stx:libwidg 'Views-DialogBoxes' 2
+MacOSXToolbarIconLibrary MacOSXToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+MenuView MenuView stx:libwidg 'Views-Menus' 2
+PopUpList PopUpList stx:libwidg 'Views-Interactors' 2
+RadioButtonController RadioButtonController stx:libwidg 'Interface-Support-Controllers' 0
+Toggle Toggle stx:libwidg 'Views-Interactors' 2
+VistaToolbarIconLibrary VistaToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+WarningBox WarningBox stx:libwidg 'Views-DialogBoxes' 2
+AdwaitaToolbarIconLibrary AdwaitaToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+CheckToggle CheckToggle stx:libwidg 'Views-Interactors' 2
+ClickMenuView ClickMenuView stx:libwidg 'Views-Menus' 2
+EditField EditField stx:libwidg 'Views-Text' 2
+FileSelectionBox FileSelectionBox stx:libwidg 'Views-DialogBoxes' 2
+MacOSX2ToolbarIconLibrary MacOSX2ToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+RadioButton RadioButton stx:libwidg 'Views-Interactors' 2
+TextCollector TextCollector stx:libwidg 'Views-Text' 2
+Windows8ToolbarIconLibrary Windows8ToolbarIconLibrary stx:libwidg 'Interface-Smalltalk' 0
+YesNoBox YesNoBox stx:libwidg 'Views-DialogBoxes' 2
+FileSaveBox FileSaveBox stx:libwidg 'Views-DialogBoxes' 2
+Workspace Workspace stx:libwidg 'Interface-Smalltalk' 2
+CodeView CodeView stx:libwidg 'Views-Text' 2
--- a/bc.mak	Sun Dec 10 00:04:50 2017 +0000
+++ b/bc.mak	Tue Jun 26 09:35:02 2018 +0100
@@ -1,163 +1,163 @@
-# $Header$
-#
-# DO NOT EDIT
-# automagically generated from the projectDefinition: stx_libwidg.
-#
-# Warning: once you modify this file, do not rerun
-# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
-#
-# Notice, that the name bc.mak is historical (from times, when only borland c was supported).
-# This file contains make rules for the win32 platform using either borland-bcc or visual-c.
-# It shares common definitions with the unix-make in Make.spec.
-# The bc.mak supports the following targets:
-#    bmake         - compile all st-files to a classLib (dll)
-#    bmake clean   - clean all temp files
-#    bmake clobber - clean all
-#
-# Historic Note:
-#  this used to contain only rules to make with borland
-#    (called via bmake, by "make.exe -f bc.mak")
-#  this has changed; it is now also possible to build using microsoft visual c
-#    (called via vcmake, by "make.exe -f bc.mak -DUSEVC")
-#
-TOP=..
-INCLUDE_TOP=$(TOP)\..
-
-
-# see stdHeader_bc for LIBWIDG_BASE
-LIB_BASE=$(LIBWIDG_BASE)
-
-
-!INCLUDE $(TOP)\rules\stdHeader_bc
-
-!INCLUDE Make.spec
-
-LIBNAME=libstx_libwidg
-MODULE_PATH=libwidg
-RESFILES=stx_libwidgWINrc.$(RES)
-
-
-
-LOCALINCLUDES= -I$(INCLUDE_TOP)\stx\goodies\regex -I$(INCLUDE_TOP)\stx\libbasic -I$(INCLUDE_TOP)\stx\libbasic2 -I$(INCLUDE_TOP)\stx\libbasic3 -I$(INCLUDE_TOP)\stx\libtool2 -I$(INCLUDE_TOP)\stx\libui -I$(INCLUDE_TOP)\stx\libview -I$(INCLUDE_TOP)\stx\libview2
-LOCALDEFINES=
-
-STCLOCALOPT=-package=$(PACKAGE) -I. $(LOCALINCLUDES) -headerDir=. $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) $(COMMONSYMBOLS) -varPrefix=$(LIBNAME)
-LOCALLIBS=
-
-OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
-
-ALL::  classLibRule
-
-classLibRule: $(OUTDIR) $(OUTDIR)$(LIBNAME).dll
-
-!INCLUDE $(TOP)\rules\stdRules_bc
-
-# build all mandatory prerequisite packages (containing superclasses) for this package
-prereq:
-	pushd ..\libbasic & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-	pushd ..\libbasic2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-	pushd ..\libview & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-	pushd ..\libview2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
-
-
-
-
-
-
-
-test: $(TOP)\goodies\builder\reports\NUL
-	pushd $(TOP)\goodies\builder\reports & $(MAKE_BAT)
-	$(TOP)\goodies\builder\reports\report-runner.bat -D . -r Builder::TestReport -p $(PACKAGE)
-        
-clean::
-	-del *.$(CSUFFIX)
-
-
-# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
-$(OUTDIR)ButtonController.$(O) ButtonController.$(C) ButtonController.$(H): ButtonController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(STCHDR)
-$(OUTDIR)CodeViewTheme.$(O) CodeViewTheme.$(C) CodeViewTheme.$(H): CodeViewTheme.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
-$(OUTDIR)DialogBox.$(O) DialogBox.$(C) DialogBox.$(H): DialogBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)EditTextViewCompletionSupport.$(O) EditTextViewCompletionSupport.$(C) EditTextViewCompletionSupport.$(H): EditTextViewCompletionSupport.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
-$(OUTDIR)EnterFieldGroup.$(O) EnterFieldGroup.$(C) EnterFieldGroup.$(H): EnterFieldGroup.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
-$(OUTDIR)FramedBox.$(O) FramedBox.$(C) FramedBox.$(H): FramedBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
-$(OUTDIR)GenericToolbarIconLibrary.$(O) GenericToolbarIconLibrary.$(C) GenericToolbarIconLibrary.$(H): GenericToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
-$(OUTDIR)Label.$(O) Label.$(C) Label.$(H): Label.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)ListView.$(O) ListView.$(C) ListView.$(H): ListView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)ListViewController.$(O) ListViewController.$(C) ListViewController.$(H): ListViewController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(STCHDR)
-$(OUTDIR)MenuEvent.$(O) MenuEvent.$(C) MenuEvent.$(H): MenuEvent.st $(INCLUDE_TOP)\stx\libbasic\Message.$(H) $(INCLUDE_TOP)\stx\libbasic\MessageSend.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Event.$(H) $(INCLUDE_TOP)\stx\libview\WidgetEvent.$(H) $(INCLUDE_TOP)\stx\libview\WindowEvent.$(H) $(STCHDR)
-$(OUTDIR)ObjectView.$(O) ObjectView.$(C) ObjectView.$(H): ObjectView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)PanelView.$(O) PanelView.$(C) PanelView.$(H): PanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
-$(OUTDIR)PopUpMenu.$(O) PopUpMenu.$(C) PopUpMenu.$(H): PopUpMenu.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\PopUpView.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)PullDownMenu.$(O) PullDownMenu.$(C) PullDownMenu.$(H): PullDownMenu.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)RadioButtonGroup.$(O) RadioButtonGroup.$(C) RadioButtonGroup.$(H): RadioButtonGroup.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview2\Model.$(H) $(INCLUDE_TOP)\stx\libview2\ValueHolder.$(H) $(INCLUDE_TOP)\stx\libview2\ValueModel.$(H) $(STCHDR)
-$(OUTDIR)ScrollBar.$(O) ScrollBar.$(C) ScrollBar.$(H): ScrollBar.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
-$(OUTDIR)ScrollableView.$(O) ScrollableView.$(C) ScrollableView.$(H): ScrollableView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
-$(OUTDIR)Scroller.$(O) Scroller.$(C) Scroller.$(H): Scroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
-$(OUTDIR)SelectionInList.$(O) SelectionInList.$(C) SelectionInList.$(H): SelectionInList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview2\Model.$(H) $(INCLUDE_TOP)\stx\libview2\ValueHolder.$(H) $(INCLUDE_TOP)\stx\libview2\ValueModel.$(H) $(STCHDR)
-$(OUTDIR)VariablePanel.$(O) VariablePanel.$(C) VariablePanel.$(H): VariablePanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
-$(OUTDIR)VariablePanelController.$(O) VariablePanelController.$(C) VariablePanelController.$(H): VariablePanelController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(STCHDR)
-$(OUTDIR)stx_libwidg.$(O) stx_libwidg.$(C) stx_libwidg.$(H): stx_libwidg.st $(INCLUDE_TOP)\stx\libbasic\LibraryDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProjectDefinition.$(H) $(STCHDR)
-$(OUTDIR)Button.$(O) Button.$(C) Button.$(H): Button.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
-$(OUTDIR)CheckLabel.$(O) CheckLabel.$(C) CheckLabel.$(H): CheckLabel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
-$(OUTDIR)DragRectangleController.$(O) DragRectangleController.$(C) DragRectangleController.$(H): DragRectangleController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(STCHDR)
-$(OUTDIR)EnterBox.$(O) EnterBox.$(C) EnterBox.$(H): EnterBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
-$(OUTDIR)FontPanel.$(O) FontPanel.$(C) FontPanel.$(H): FontPanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
-$(OUTDIR)HVScrollableView.$(O) HVScrollableView.$(C) HVScrollableView.$(H): HVScrollableView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\ScrollableView.$(H) $(STCHDR)
-$(OUTDIR)HorizontalPanelView.$(O) HorizontalPanelView.$(C) HorizontalPanelView.$(H): HorizontalPanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\PanelView.$(H) $(STCHDR)
-$(OUTDIR)HorizontalScrollBar.$(O) HorizontalScrollBar.$(C) HorizontalScrollBar.$(H): HorizontalScrollBar.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\ScrollBar.$(H) $(STCHDR)
-$(OUTDIR)HorizontalScroller.$(O) HorizontalScroller.$(C) HorizontalScroller.$(H): HorizontalScroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Scroller.$(H) $(STCHDR)
-$(OUTDIR)InfoBox.$(O) InfoBox.$(C) InfoBox.$(H): InfoBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
-$(OUTDIR)MiniScroller.$(O) MiniScroller.$(C) MiniScroller.$(H): MiniScroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Scroller.$(H) $(STCHDR)
-$(OUTDIR)MultiColumnPanelView.$(O) MultiColumnPanelView.$(C) MultiColumnPanelView.$(H): MultiColumnPanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\PanelView.$(H) $(STCHDR)
-$(OUTDIR)MultiSelectionInList.$(O) MultiSelectionInList.$(C) MultiSelectionInList.$(H): MultiSelectionInList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview2\Model.$(H) $(INCLUDE_TOP)\stx\libview2\ValueHolder.$(H) $(INCLUDE_TOP)\stx\libview2\ValueModel.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInList.$(H) $(STCHDR)
-$(OUTDIR)OptionBox.$(O) OptionBox.$(C) OptionBox.$(H): OptionBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
-$(OUTDIR)PopUpListController.$(O) PopUpListController.$(C) PopUpListController.$(H): PopUpListController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(STCHDR)
-$(OUTDIR)SelectionInListView.$(O) SelectionInListView.$(C) SelectionInListView.$(H): SelectionInListView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(STCHDR)
-$(OUTDIR)SequenceView.$(O) SequenceView.$(C) SequenceView.$(H): SequenceView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\ScrollableView.$(H) $(STCHDR)
-$(OUTDIR)TextView.$(O) TextView.$(C) TextView.$(H): TextView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(STCHDR)
-$(OUTDIR)ToggleController.$(O) ToggleController.$(C) ToggleController.$(H): ToggleController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(STCHDR)
-$(OUTDIR)VariableHorizontalPanel.$(O) VariableHorizontalPanel.$(C) VariableHorizontalPanel.$(H): VariableHorizontalPanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanel.$(H) $(STCHDR)
-$(OUTDIR)VariableHorizontalPanelController.$(O) VariableHorizontalPanelController.$(C) VariableHorizontalPanelController.$(H): VariableHorizontalPanelController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanelController.$(H) $(STCHDR)
-$(OUTDIR)VariableVerticalPanel.$(O) VariableVerticalPanel.$(C) VariableVerticalPanel.$(H): VariableVerticalPanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanel.$(H) $(STCHDR)
-$(OUTDIR)VariableVerticalPanelController.$(O) VariableVerticalPanelController.$(C) VariableVerticalPanelController.$(H): VariableVerticalPanelController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanelController.$(H) $(STCHDR)
-$(OUTDIR)VerticalPanelView.$(O) VerticalPanelView.$(C) VerticalPanelView.$(H): VerticalPanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\PanelView.$(H) $(STCHDR)
-$(OUTDIR)WorkspaceCompletionSupport.$(O) WorkspaceCompletionSupport.$(C) WorkspaceCompletionSupport.$(H): WorkspaceCompletionSupport.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextViewCompletionSupport.$(H) $(STCHDR)
-$(OUTDIR)XPToolbarIconLibrary.$(O) XPToolbarIconLibrary.$(C) XPToolbarIconLibrary.$(H): XPToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)ArrowButton.$(O) ArrowButton.$(C) ArrowButton.$(H): ArrowButton.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
-$(OUTDIR)EditTextView.$(O) EditTextView.$(C) EditTextView.$(H): EditTextView.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
-$(OUTDIR)EnterBox2.$(O) EnterBox2.$(C) EnterBox2.$(H): EnterBox2.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(STCHDR)
-$(OUTDIR)FileSelectionList.$(O) FileSelectionList.$(C) FileSelectionList.$(H): FileSelectionList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInListView.$(H) $(STCHDR)
-$(OUTDIR)HorizontalMiniScroller.$(O) HorizontalMiniScroller.$(C) HorizontalMiniScroller.$(H): HorizontalMiniScroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\MiniScroller.$(H) $(INCLUDE_TOP)\stx\libwidg\Scroller.$(H) $(STCHDR)
-$(OUTDIR)ListSelectionBox.$(O) ListSelectionBox.$(C) ListSelectionBox.$(H): ListSelectionBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(STCHDR)
-$(OUTDIR)MacOSXToolbarIconLibrary.$(O) MacOSXToolbarIconLibrary.$(C) MacOSXToolbarIconLibrary.$(H): MacOSXToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)MenuView.$(O) MenuView.$(C) MenuView.$(H): MenuView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInListView.$(H) $(STCHDR)
-$(OUTDIR)PopUpList.$(O) PopUpList.$(C) PopUpList.$(H): PopUpList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
-$(OUTDIR)RadioButtonController.$(O) RadioButtonController.$(C) RadioButtonController.$(H): RadioButtonController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(INCLUDE_TOP)\stx\libwidg\ToggleController.$(H) $(STCHDR)
-$(OUTDIR)Toggle.$(O) Toggle.$(C) Toggle.$(H): Toggle.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
-$(OUTDIR)VistaToolbarIconLibrary.$(O) VistaToolbarIconLibrary.$(C) VistaToolbarIconLibrary.$(H): VistaToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)WarningBox.$(O) WarningBox.$(C) WarningBox.$(H): WarningBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\InfoBox.$(H) $(STCHDR)
-$(OUTDIR)AdwaitaToolbarIconLibrary.$(O) AdwaitaToolbarIconLibrary.$(C) AdwaitaToolbarIconLibrary.$(H): AdwaitaToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)CheckToggle.$(O) CheckToggle.$(C) CheckToggle.$(H): CheckToggle.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(INCLUDE_TOP)\stx\libwidg\Toggle.$(H) $(STCHDR)
-$(OUTDIR)ClickMenuView.$(O) ClickMenuView.$(C) ClickMenuView.$(H): ClickMenuView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\MenuView.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInListView.$(H) $(STCHDR)
-$(OUTDIR)EditField.$(O) EditField.$(C) EditField.$(H): EditField.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
-$(OUTDIR)FileSelectionBox.$(O) FileSelectionBox.$(C) FileSelectionBox.$(H): FileSelectionBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(INCLUDE_TOP)\stx\libwidg\ListSelectionBox.$(H) $(STCHDR)
-$(OUTDIR)MacOSX2ToolbarIconLibrary.$(O) MacOSX2ToolbarIconLibrary.$(C) MacOSX2ToolbarIconLibrary.$(H): MacOSX2ToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\MacOSXToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)RadioButton.$(O) RadioButton.$(C) RadioButton.$(H): RadioButton.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(INCLUDE_TOP)\stx\libwidg\Toggle.$(H) $(STCHDR)
-$(OUTDIR)TextCollector.$(O) TextCollector.$(C) TextCollector.$(H): TextCollector.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
-$(OUTDIR)Windows8ToolbarIconLibrary.$(O) Windows8ToolbarIconLibrary.$(C) Windows8ToolbarIconLibrary.$(H): Windows8ToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
-$(OUTDIR)YesNoBox.$(O) YesNoBox.$(C) YesNoBox.$(H): YesNoBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\InfoBox.$(H) $(INCLUDE_TOP)\stx\libwidg\WarningBox.$(H) $(STCHDR)
-$(OUTDIR)FileSaveBox.$(O) FileSaveBox.$(C) FileSaveBox.$(H): FileSaveBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(INCLUDE_TOP)\stx\libwidg\FileSelectionBox.$(H) $(INCLUDE_TOP)\stx\libwidg\ListSelectionBox.$(H) $(STCHDR)
-$(OUTDIR)Workspace.$(O) Workspace.$(C) Workspace.$(H): Workspace.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextCollector.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
-$(OUTDIR)CodeView.$(O) CodeView.$(C) CodeView.$(H): CodeView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextCollector.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(INCLUDE_TOP)\stx\libwidg\Workspace.$(H) $(STCHDR)
-$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)\stx\libbasic\Collection.$(H) $(INCLUDE_TOP)\stx\libbasic\Dictionary.$(H) $(INCLUDE_TOP)\stx\libbasic\IdentityDictionary.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Set.$(H) $(INCLUDE_TOP)\stx\libbasic\UserPreferences.$(H) $(STCHDR)
-
-# ENDMAKEDEPEND --- do not remove this line
-
-# **Must be at end**
-
-# Enforce recompilation of package definition class if Mercurial working
-# copy state changes. Together with --guessVersion it ensures that package
-# definition class always contains correct binary revision string.
-!IFDEF HGROOT
-$(OUTDIR)stx_libwidg.$(O): $(HGROOT)\.hg\dirstate
-!ENDIF
+# $Header$
+#
+# DO NOT EDIT
+# automagically generated from the projectDefinition: stx_libwidg.
+#
+# Warning: once you modify this file, do not rerun
+# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
+#
+# Notice, that the name bc.mak is historical (from times, when only borland c was supported).
+# This file contains make rules for the win32 platform using either borland-bcc or visual-c.
+# It shares common definitions with the unix-make in Make.spec.
+# The bc.mak supports the following targets:
+#    bmake         - compile all st-files to a classLib (dll)
+#    bmake clean   - clean all temp files
+#    bmake clobber - clean all
+#
+# Historic Note:
+#  this used to contain only rules to make with borland
+#    (called via bmake, by "make.exe -f bc.mak")
+#  this has changed; it is now also possible to build using microsoft visual c
+#    (called via vcmake, by "make.exe -f bc.mak -DUSEVC")
+#
+TOP=..
+INCLUDE_TOP=$(TOP)\..
+
+
+# see stdHeader_bc for LIBWIDG_BASE
+LIB_BASE=$(LIBWIDG_BASE)
+
+
+!INCLUDE $(TOP)\rules\stdHeader_bc
+
+!INCLUDE Make.spec
+
+LIBNAME=libstx_libwidg
+MODULE_PATH=libwidg
+RESFILES=stx_libwidgWINrc.$(RES)
+
+
+
+LOCALINCLUDES= -I$(INCLUDE_TOP)\stx\goodies\regex -I$(INCLUDE_TOP)\stx\libbasic -I$(INCLUDE_TOP)\stx\libbasic2 -I$(INCLUDE_TOP)\stx\libbasic3 -I$(INCLUDE_TOP)\stx\libui -I$(INCLUDE_TOP)\stx\libview -I$(INCLUDE_TOP)\stx\libview2
+LOCALDEFINES=
+
+STCLOCALOPT=-package=$(PACKAGE) -I. $(LOCALINCLUDES) -headerDir=. $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) $(COMMONSYMBOLS) -varPrefix=$(LIBNAME)
+LOCALLIBS=
+
+OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
+
+ALL::  classLibRule
+
+classLibRule: $(OUTDIR) $(OUTDIR)$(LIBNAME).dll
+
+!INCLUDE $(TOP)\rules\stdRules_bc
+
+# build all mandatory prerequisite packages (containing superclasses) for this package
+prereq:
+	pushd ..\libbasic & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+	pushd ..\libbasic2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+	pushd ..\libview & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+	pushd ..\libview2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
+
+
+
+
+
+
+
+test: $(TOP)\goodies\builder\reports\NUL
+	pushd $(TOP)\goodies\builder\reports & $(MAKE_BAT)
+	$(TOP)\goodies\builder\reports\report-runner.bat -D . -r Builder::TestReport -p $(PACKAGE)
+        
+clean::
+	-del *.$(CSUFFIX)
+
+
+# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
+$(OUTDIR)ButtonController.$(O) ButtonController.$(C) ButtonController.$(H): ButtonController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(STCHDR)
+$(OUTDIR)CodeViewTheme.$(O) CodeViewTheme.$(C) CodeViewTheme.$(H): CodeViewTheme.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
+$(OUTDIR)DialogBox.$(O) DialogBox.$(C) DialogBox.$(H): DialogBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)EditTextViewCompletionSupport.$(O) EditTextViewCompletionSupport.$(C) EditTextViewCompletionSupport.$(H): EditTextViewCompletionSupport.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
+$(OUTDIR)EnterFieldGroup.$(O) EnterFieldGroup.$(C) EnterFieldGroup.$(H): EnterFieldGroup.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
+$(OUTDIR)FramedBox.$(O) FramedBox.$(C) FramedBox.$(H): FramedBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
+$(OUTDIR)GenericToolbarIconLibrary.$(O) GenericToolbarIconLibrary.$(C) GenericToolbarIconLibrary.$(H): GenericToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
+$(OUTDIR)Label.$(O) Label.$(C) Label.$(H): Label.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)ListView.$(O) ListView.$(C) ListView.$(H): ListView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)ListViewController.$(O) ListViewController.$(C) ListViewController.$(H): ListViewController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(STCHDR)
+$(OUTDIR)MenuEvent.$(O) MenuEvent.$(C) MenuEvent.$(H): MenuEvent.st $(INCLUDE_TOP)\stx\libbasic\Message.$(H) $(INCLUDE_TOP)\stx\libbasic\MessageSend.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Event.$(H) $(INCLUDE_TOP)\stx\libview\WidgetEvent.$(H) $(INCLUDE_TOP)\stx\libview\WindowEvent.$(H) $(STCHDR)
+$(OUTDIR)ObjectView.$(O) ObjectView.$(C) ObjectView.$(H): ObjectView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)PanelView.$(O) PanelView.$(C) PanelView.$(H): PanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
+$(OUTDIR)PopUpMenu.$(O) PopUpMenu.$(C) PopUpMenu.$(H): PopUpMenu.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\PopUpView.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)PullDownMenu.$(O) PullDownMenu.$(C) PullDownMenu.$(H): PullDownMenu.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)RadioButtonGroup.$(O) RadioButtonGroup.$(C) RadioButtonGroup.$(H): RadioButtonGroup.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview2\Model.$(H) $(INCLUDE_TOP)\stx\libview2\ValueHolder.$(H) $(INCLUDE_TOP)\stx\libview2\ValueModel.$(H) $(STCHDR)
+$(OUTDIR)ScrollBar.$(O) ScrollBar.$(C) ScrollBar.$(H): ScrollBar.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
+$(OUTDIR)ScrollableView.$(O) ScrollableView.$(C) ScrollableView.$(H): ScrollableView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
+$(OUTDIR)Scroller.$(O) Scroller.$(C) Scroller.$(H): Scroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(STCHDR)
+$(OUTDIR)SelectionInList.$(O) SelectionInList.$(C) SelectionInList.$(H): SelectionInList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview2\Model.$(H) $(INCLUDE_TOP)\stx\libview2\ValueHolder.$(H) $(INCLUDE_TOP)\stx\libview2\ValueModel.$(H) $(STCHDR)
+$(OUTDIR)VariablePanel.$(O) VariablePanel.$(C) VariablePanel.$(H): VariablePanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(STCHDR)
+$(OUTDIR)VariablePanelController.$(O) VariablePanelController.$(C) VariablePanelController.$(H): VariablePanelController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(STCHDR)
+$(OUTDIR)stx_libwidg.$(O) stx_libwidg.$(C) stx_libwidg.$(H): stx_libwidg.st $(INCLUDE_TOP)\stx\libbasic\LibraryDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProjectDefinition.$(H) $(STCHDR)
+$(OUTDIR)Button.$(O) Button.$(C) Button.$(H): Button.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
+$(OUTDIR)CheckLabel.$(O) CheckLabel.$(C) CheckLabel.$(H): CheckLabel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
+$(OUTDIR)DragRectangleController.$(O) DragRectangleController.$(C) DragRectangleController.$(H): DragRectangleController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(STCHDR)
+$(OUTDIR)EnterBox.$(O) EnterBox.$(C) EnterBox.$(H): EnterBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
+$(OUTDIR)FontPanel.$(O) FontPanel.$(C) FontPanel.$(H): FontPanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
+$(OUTDIR)HVScrollableView.$(O) HVScrollableView.$(C) HVScrollableView.$(H): HVScrollableView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\ScrollableView.$(H) $(STCHDR)
+$(OUTDIR)HorizontalPanelView.$(O) HorizontalPanelView.$(C) HorizontalPanelView.$(H): HorizontalPanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\PanelView.$(H) $(STCHDR)
+$(OUTDIR)HorizontalScrollBar.$(O) HorizontalScrollBar.$(C) HorizontalScrollBar.$(H): HorizontalScrollBar.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\ScrollBar.$(H) $(STCHDR)
+$(OUTDIR)HorizontalScroller.$(O) HorizontalScroller.$(C) HorizontalScroller.$(H): HorizontalScroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Scroller.$(H) $(STCHDR)
+$(OUTDIR)InfoBox.$(O) InfoBox.$(C) InfoBox.$(H): InfoBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
+$(OUTDIR)MiniScroller.$(O) MiniScroller.$(C) MiniScroller.$(H): MiniScroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Scroller.$(H) $(STCHDR)
+$(OUTDIR)MultiColumnPanelView.$(O) MultiColumnPanelView.$(C) MultiColumnPanelView.$(H): MultiColumnPanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\PanelView.$(H) $(STCHDR)
+$(OUTDIR)MultiSelectionInList.$(O) MultiSelectionInList.$(C) MultiSelectionInList.$(H): MultiSelectionInList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview2\Model.$(H) $(INCLUDE_TOP)\stx\libview2\ValueHolder.$(H) $(INCLUDE_TOP)\stx\libview2\ValueModel.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInList.$(H) $(STCHDR)
+$(OUTDIR)OptionBox.$(O) OptionBox.$(C) OptionBox.$(H): OptionBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(STCHDR)
+$(OUTDIR)PopUpListController.$(O) PopUpListController.$(C) PopUpListController.$(H): PopUpListController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(STCHDR)
+$(OUTDIR)SelectionInListView.$(O) SelectionInListView.$(C) SelectionInListView.$(H): SelectionInListView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(STCHDR)
+$(OUTDIR)SequenceView.$(O) SequenceView.$(C) SequenceView.$(H): SequenceView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\ScrollableView.$(H) $(STCHDR)
+$(OUTDIR)TextView.$(O) TextView.$(C) TextView.$(H): TextView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(STCHDR)
+$(OUTDIR)ToggleController.$(O) ToggleController.$(C) ToggleController.$(H): ToggleController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(STCHDR)
+$(OUTDIR)VariableHorizontalPanel.$(O) VariableHorizontalPanel.$(C) VariableHorizontalPanel.$(H): VariableHorizontalPanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanel.$(H) $(STCHDR)
+$(OUTDIR)VariableHorizontalPanelController.$(O) VariableHorizontalPanelController.$(C) VariableHorizontalPanelController.$(H): VariableHorizontalPanelController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanelController.$(H) $(STCHDR)
+$(OUTDIR)VariableVerticalPanel.$(O) VariableVerticalPanel.$(C) VariableVerticalPanel.$(H): VariableVerticalPanel.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanel.$(H) $(STCHDR)
+$(OUTDIR)VariableVerticalPanelController.$(O) VariableVerticalPanelController.$(C) VariableVerticalPanelController.$(H): VariableVerticalPanelController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\VariablePanelController.$(H) $(STCHDR)
+$(OUTDIR)VerticalPanelView.$(O) VerticalPanelView.$(C) VerticalPanelView.$(H): VerticalPanelView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libwidg\PanelView.$(H) $(STCHDR)
+$(OUTDIR)WorkspaceCompletionSupport.$(O) WorkspaceCompletionSupport.$(C) WorkspaceCompletionSupport.$(H): WorkspaceCompletionSupport.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextViewCompletionSupport.$(H) $(STCHDR)
+$(OUTDIR)XPToolbarIconLibrary.$(O) XPToolbarIconLibrary.$(C) XPToolbarIconLibrary.$(H): XPToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)ArrowButton.$(O) ArrowButton.$(C) ArrowButton.$(H): ArrowButton.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
+$(OUTDIR)EditTextView.$(O) EditTextView.$(C) EditTextView.$(H): EditTextView.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
+$(OUTDIR)EnterBox2.$(O) EnterBox2.$(C) EnterBox2.$(H): EnterBox2.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(STCHDR)
+$(OUTDIR)FileSelectionList.$(O) FileSelectionList.$(C) FileSelectionList.$(H): FileSelectionList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInListView.$(H) $(STCHDR)
+$(OUTDIR)HorizontalMiniScroller.$(O) HorizontalMiniScroller.$(C) HorizontalMiniScroller.$(H): HorizontalMiniScroller.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\MiniScroller.$(H) $(INCLUDE_TOP)\stx\libwidg\Scroller.$(H) $(STCHDR)
+$(OUTDIR)ListSelectionBox.$(O) ListSelectionBox.$(C) ListSelectionBox.$(H): ListSelectionBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(STCHDR)
+$(OUTDIR)MacOSXToolbarIconLibrary.$(O) MacOSXToolbarIconLibrary.$(C) MacOSXToolbarIconLibrary.$(H): MacOSXToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)MenuView.$(O) MenuView.$(C) MenuView.$(H): MenuView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInListView.$(H) $(STCHDR)
+$(OUTDIR)PopUpList.$(O) PopUpList.$(C) PopUpList.$(H): PopUpList.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
+$(OUTDIR)RadioButtonController.$(O) RadioButtonController.$(C) RadioButtonController.$(H): RadioButtonController.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\Controller.$(H) $(INCLUDE_TOP)\stx\libwidg\ButtonController.$(H) $(INCLUDE_TOP)\stx\libwidg\ToggleController.$(H) $(STCHDR)
+$(OUTDIR)Toggle.$(O) Toggle.$(C) Toggle.$(H): Toggle.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(STCHDR)
+$(OUTDIR)VistaToolbarIconLibrary.$(O) VistaToolbarIconLibrary.$(C) VistaToolbarIconLibrary.$(H): VistaToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)WarningBox.$(O) WarningBox.$(C) WarningBox.$(H): WarningBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\InfoBox.$(H) $(STCHDR)
+$(OUTDIR)AdwaitaToolbarIconLibrary.$(O) AdwaitaToolbarIconLibrary.$(C) AdwaitaToolbarIconLibrary.$(H): AdwaitaToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)CheckToggle.$(O) CheckToggle.$(C) CheckToggle.$(H): CheckToggle.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(INCLUDE_TOP)\stx\libwidg\Toggle.$(H) $(STCHDR)
+$(OUTDIR)ClickMenuView.$(O) ClickMenuView.$(C) ClickMenuView.$(H): ClickMenuView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\MenuView.$(H) $(INCLUDE_TOP)\stx\libwidg\SelectionInListView.$(H) $(STCHDR)
+$(OUTDIR)EditField.$(O) EditField.$(C) EditField.$(H): EditField.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
+$(OUTDIR)FileSelectionBox.$(O) FileSelectionBox.$(C) FileSelectionBox.$(H): FileSelectionBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(INCLUDE_TOP)\stx\libwidg\ListSelectionBox.$(H) $(STCHDR)
+$(OUTDIR)MacOSX2ToolbarIconLibrary.$(O) MacOSX2ToolbarIconLibrary.$(C) MacOSX2ToolbarIconLibrary.$(H): MacOSX2ToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\MacOSXToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)RadioButton.$(O) RadioButton.$(C) RadioButton.$(H): RadioButton.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\Button.$(H) $(INCLUDE_TOP)\stx\libwidg\Label.$(H) $(INCLUDE_TOP)\stx\libwidg\Toggle.$(H) $(STCHDR)
+$(OUTDIR)TextCollector.$(O) TextCollector.$(C) TextCollector.$(H): TextCollector.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
+$(OUTDIR)Windows8ToolbarIconLibrary.$(O) Windows8ToolbarIconLibrary.$(C) Windows8ToolbarIconLibrary.$(H): Windows8ToolbarIconLibrary.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libwidg\GenericToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\VistaToolbarIconLibrary.$(H) $(INCLUDE_TOP)\stx\libwidg\XPToolbarIconLibrary.$(H) $(STCHDR)
+$(OUTDIR)YesNoBox.$(O) YesNoBox.$(C) YesNoBox.$(H): YesNoBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\InfoBox.$(H) $(INCLUDE_TOP)\stx\libwidg\WarningBox.$(H) $(STCHDR)
+$(OUTDIR)FileSaveBox.$(O) FileSaveBox.$(C) FileSaveBox.$(H): FileSaveBox.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\ModalBox.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\StandardSystemView.$(H) $(INCLUDE_TOP)\stx\libview\TopView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\DialogBox.$(H) $(INCLUDE_TOP)\stx\libwidg\EnterBox.$(H) $(INCLUDE_TOP)\stx\libwidg\FileSelectionBox.$(H) $(INCLUDE_TOP)\stx\libwidg\ListSelectionBox.$(H) $(STCHDR)
+$(OUTDIR)Workspace.$(O) Workspace.$(C) Workspace.$(H): Workspace.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextCollector.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(STCHDR)
+$(OUTDIR)CodeView.$(O) CodeView.$(C) CodeView.$(H): CodeView.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libview\DisplaySurface.$(H) $(INCLUDE_TOP)\stx\libview\GraphicsMedium.$(H) $(INCLUDE_TOP)\stx\libview\SimpleView.$(H) $(INCLUDE_TOP)\stx\libview\View.$(H) $(INCLUDE_TOP)\stx\libwidg\EditTextView.$(H) $(INCLUDE_TOP)\stx\libwidg\ListView.$(H) $(INCLUDE_TOP)\stx\libwidg\TextCollector.$(H) $(INCLUDE_TOP)\stx\libwidg\TextView.$(H) $(INCLUDE_TOP)\stx\libwidg\Workspace.$(H) $(STCHDR)
+$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)\stx\libbasic\Collection.$(H) $(INCLUDE_TOP)\stx\libbasic\Dictionary.$(H) $(INCLUDE_TOP)\stx\libbasic\IdentityDictionary.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Set.$(H) $(INCLUDE_TOP)\stx\libbasic\UserPreferences.$(H) $(STCHDR)
+
+# ENDMAKEDEPEND --- do not remove this line
+
+# **Must be at end**
+
+# Enforce recompilation of package definition class if Mercurial working
+# copy state changes. Together with --guessVersion it ensures that package
+# definition class always contains correct binary revision string.
+!IFDEF HGROOT
+$(OUTDIR)stx_libwidg.$(O): $(HGROOT)\.hg\dirstate
+!ENDIF
--- a/bmake.bat	Sun Dec 10 00:04:50 2017 +0000
+++ b/bmake.bat	Tue Jun 26 09:35:02 2018 +0100
@@ -1,15 +1,15 @@
-@REM -------
-@REM make using Borland bcc32
-@REM type bmake, and wait...
-@REM do not edit - automatically generated from ProjectDefinition
-@REM -------
-@SET DEFINES=
-@REM Kludge got Mercurial, cannot be implemented in Borland make
-@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
-@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
-
-make.exe -N -f bc.mak  %DEFINES% %*
-
-
-
-
+@REM -------
+@REM make using Borland bcc32
+@REM type bmake, and wait...
+@REM do not edit - automatically generated from ProjectDefinition
+@REM -------
+@SET DEFINES=
+@REM Kludge got Mercurial, cannot be implemented in Borland make
+@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
+@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
+
+make.exe -N -f bc.mak  %DEFINES% %*
+
+
+
+
--- a/libInit.cc	Sun Dec 10 00:04:50 2017 +0000
+++ b/libInit.cc	Tue Jun 26 09:35:02 2018 +0100
@@ -1,186 +1,186 @@
-/*
- * $Header$
- *
- * DO NOT EDIT
- * automagically generated from the projectDefinition: stx_libwidg.
- */
-#define __INDIRECTVMINITCALLS__
-#include <stc.h>
-
-#ifdef WIN32
-# pragma codeseg INITCODE "INITCODE"
-#endif
-
-#if defined(INIT_TEXT_SECTION) || defined(DLL_EXPORT)
-DLL_EXPORT void _libstx_libwidg_Init() INIT_TEXT_SECTION;
-DLL_EXPORT void _libstx_libwidg_InitDefinition() INIT_TEXT_SECTION;
-#endif
-
-extern void _ButtonController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _CodeViewTheme_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _DialogBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _EditTextViewCompletionSupport_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _EnterFieldGroup_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _FramedBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _GenericToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _Label_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ListView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ListViewController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MenuEvent_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ObjectView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _PanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _PopUpMenu_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _PullDownMenu_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _RadioButtonGroup_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ScrollBar_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ScrollableView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _Scroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _SelectionInList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VariablePanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VariablePanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _stx_137libwidg_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _Button_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _CheckLabel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _DragRectangleController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _EnterBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _FontPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _HVScrollableView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _HorizontalPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _HorizontalScrollBar_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _HorizontalScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _InfoBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MiniScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MultiColumnPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MultiSelectionInList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _OptionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _PopUpListController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _SelectionInListView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _SequenceView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _TextView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ToggleController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VariableHorizontalPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VariableHorizontalPanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VariableVerticalPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VariableVerticalPanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VerticalPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _WorkspaceCompletionSupport_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _XPToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ArrowButton_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _EditTextView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _EnterBox2_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _FileSelectionList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _HorizontalMiniScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ListSelectionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MacOSXToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MenuView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _PopUpList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _RadioButtonController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _Toggle_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _VistaToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _WarningBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _AdwaitaToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _CheckToggle_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _ClickMenuView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _EditField_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _FileSelectionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _MacOSX2ToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _RadioButton_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _TextCollector_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _Windows8ToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _YesNoBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _FileSaveBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _Workspace_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-extern void _CodeView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-
-extern void _stx_137libwidg_extensions_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
-
-void _libstx_libwidg_InitDefinition(int pass, struct __vmData__ *__pRT__, OBJ snd)
-{
-  __BEGIN_PACKAGE2__("libstx_libwidg__DFN", _libstx_libwidg_InitDefinition, "stx:libwidg");
-    _stx_137libwidg_Init(pass,__pRT__,snd);
-
-  __END_PACKAGE__();
-}
-
-void _libstx_libwidg_Init(int pass, struct __vmData__ *__pRT__, OBJ snd)
-{
-  __BEGIN_PACKAGE2__("libstx_libwidg", _libstx_libwidg_Init, "stx:libwidg");
-    _ButtonController_Init(pass,__pRT__,snd);
-    _CodeViewTheme_Init(pass,__pRT__,snd);
-    _DialogBox_Init(pass,__pRT__,snd);
-    _EditTextViewCompletionSupport_Init(pass,__pRT__,snd);
-    _EnterFieldGroup_Init(pass,__pRT__,snd);
-    _FramedBox_Init(pass,__pRT__,snd);
-    _GenericToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _Label_Init(pass,__pRT__,snd);
-    _ListView_Init(pass,__pRT__,snd);
-    _ListViewController_Init(pass,__pRT__,snd);
-    _MenuEvent_Init(pass,__pRT__,snd);
-    _ObjectView_Init(pass,__pRT__,snd);
-    _PanelView_Init(pass,__pRT__,snd);
-    _PopUpMenu_Init(pass,__pRT__,snd);
-    _PullDownMenu_Init(pass,__pRT__,snd);
-    _RadioButtonGroup_Init(pass,__pRT__,snd);
-    _ScrollBar_Init(pass,__pRT__,snd);
-    _ScrollableView_Init(pass,__pRT__,snd);
-    _Scroller_Init(pass,__pRT__,snd);
-    _SelectionInList_Init(pass,__pRT__,snd);
-    _VariablePanel_Init(pass,__pRT__,snd);
-    _VariablePanelController_Init(pass,__pRT__,snd);
-    _stx_137libwidg_Init(pass,__pRT__,snd);
-    _Button_Init(pass,__pRT__,snd);
-    _CheckLabel_Init(pass,__pRT__,snd);
-    _DragRectangleController_Init(pass,__pRT__,snd);
-    _EnterBox_Init(pass,__pRT__,snd);
-    _FontPanel_Init(pass,__pRT__,snd);
-    _HVScrollableView_Init(pass,__pRT__,snd);
-    _HorizontalPanelView_Init(pass,__pRT__,snd);
-    _HorizontalScrollBar_Init(pass,__pRT__,snd);
-    _HorizontalScroller_Init(pass,__pRT__,snd);
-    _InfoBox_Init(pass,__pRT__,snd);
-    _MiniScroller_Init(pass,__pRT__,snd);
-    _MultiColumnPanelView_Init(pass,__pRT__,snd);
-    _MultiSelectionInList_Init(pass,__pRT__,snd);
-    _OptionBox_Init(pass,__pRT__,snd);
-    _PopUpListController_Init(pass,__pRT__,snd);
-    _SelectionInListView_Init(pass,__pRT__,snd);
-    _SequenceView_Init(pass,__pRT__,snd);
-    _TextView_Init(pass,__pRT__,snd);
-    _ToggleController_Init(pass,__pRT__,snd);
-    _VariableHorizontalPanel_Init(pass,__pRT__,snd);
-    _VariableHorizontalPanelController_Init(pass,__pRT__,snd);
-    _VariableVerticalPanel_Init(pass,__pRT__,snd);
-    _VariableVerticalPanelController_Init(pass,__pRT__,snd);
-    _VerticalPanelView_Init(pass,__pRT__,snd);
-    _WorkspaceCompletionSupport_Init(pass,__pRT__,snd);
-    _XPToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _ArrowButton_Init(pass,__pRT__,snd);
-    _EditTextView_Init(pass,__pRT__,snd);
-    _EnterBox2_Init(pass,__pRT__,snd);
-    _FileSelectionList_Init(pass,__pRT__,snd);
-    _HorizontalMiniScroller_Init(pass,__pRT__,snd);
-    _ListSelectionBox_Init(pass,__pRT__,snd);
-    _MacOSXToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _MenuView_Init(pass,__pRT__,snd);
-    _PopUpList_Init(pass,__pRT__,snd);
-    _RadioButtonController_Init(pass,__pRT__,snd);
-    _Toggle_Init(pass,__pRT__,snd);
-    _VistaToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _WarningBox_Init(pass,__pRT__,snd);
-    _AdwaitaToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _CheckToggle_Init(pass,__pRT__,snd);
-    _ClickMenuView_Init(pass,__pRT__,snd);
-    _EditField_Init(pass,__pRT__,snd);
-    _FileSelectionBox_Init(pass,__pRT__,snd);
-    _MacOSX2ToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _RadioButton_Init(pass,__pRT__,snd);
-    _TextCollector_Init(pass,__pRT__,snd);
-    _Windows8ToolbarIconLibrary_Init(pass,__pRT__,snd);
-    _YesNoBox_Init(pass,__pRT__,snd);
-    _FileSaveBox_Init(pass,__pRT__,snd);
-    _Workspace_Init(pass,__pRT__,snd);
-    _CodeView_Init(pass,__pRT__,snd);
-
-    _stx_137libwidg_extensions_Init(pass,__pRT__,snd);
-  __END_PACKAGE__();
-}
+/*
+ * $Header$
+ *
+ * DO NOT EDIT
+ * automagically generated from the projectDefinition: stx_libwidg.
+ */
+#define __INDIRECTVMINITCALLS__
+#include <stc.h>
+
+#ifdef WIN32
+# pragma codeseg INITCODE "INITCODE"
+#endif
+
+#if defined(INIT_TEXT_SECTION) || defined(DLL_EXPORT)
+DLL_EXPORT void _libstx_libwidg_Init() INIT_TEXT_SECTION;
+DLL_EXPORT void _libstx_libwidg_InitDefinition() INIT_TEXT_SECTION;
+#endif
+
+extern void _ButtonController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _CodeViewTheme_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _DialogBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _EditTextViewCompletionSupport_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _EnterFieldGroup_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _FramedBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _GenericToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _Label_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ListView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ListViewController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MenuEvent_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ObjectView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _PanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _PopUpMenu_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _PullDownMenu_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _RadioButtonGroup_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ScrollBar_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ScrollableView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _Scroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _SelectionInList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VariablePanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VariablePanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _stx_137libwidg_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _Button_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _CheckLabel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _DragRectangleController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _EnterBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _FontPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _HVScrollableView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _HorizontalPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _HorizontalScrollBar_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _HorizontalScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _InfoBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MiniScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MultiColumnPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MultiSelectionInList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _OptionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _PopUpListController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _SelectionInListView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _SequenceView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _TextView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ToggleController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VariableHorizontalPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VariableHorizontalPanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VariableVerticalPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VariableVerticalPanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VerticalPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _WorkspaceCompletionSupport_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _XPToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ArrowButton_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _EditTextView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _EnterBox2_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _FileSelectionList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _HorizontalMiniScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ListSelectionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MacOSXToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MenuView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _PopUpList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _RadioButtonController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _Toggle_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _VistaToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _WarningBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _AdwaitaToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _CheckToggle_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _ClickMenuView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _EditField_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _FileSelectionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _MacOSX2ToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _RadioButton_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _TextCollector_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _Windows8ToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _YesNoBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _FileSaveBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _Workspace_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _CodeView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+
+extern void _stx_137libwidg_extensions_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+
+void _libstx_libwidg_InitDefinition(int pass, struct __vmData__ *__pRT__, OBJ snd)
+{
+  __BEGIN_PACKAGE2__("libstx_libwidg__DFN", _libstx_libwidg_InitDefinition, "stx:libwidg");
+    _stx_137libwidg_Init(pass,__pRT__,snd);
+
+  __END_PACKAGE__();
+}
+
+void _libstx_libwidg_Init(int pass, struct __vmData__ *__pRT__, OBJ snd)
+{
+  __BEGIN_PACKAGE2__("libstx_libwidg", _libstx_libwidg_Init, "stx:libwidg");
+    _ButtonController_Init(pass,__pRT__,snd);
+    _CodeViewTheme_Init(pass,__pRT__,snd);
+    _DialogBox_Init(pass,__pRT__,snd);
+    _EditTextViewCompletionSupport_Init(pass,__pRT__,snd);
+    _EnterFieldGroup_Init(pass,__pRT__,snd);
+    _FramedBox_Init(pass,__pRT__,snd);
+    _GenericToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _Label_Init(pass,__pRT__,snd);
+    _ListView_Init(pass,__pRT__,snd);
+    _ListViewController_Init(pass,__pRT__,snd);
+    _MenuEvent_Init(pass,__pRT__,snd);
+    _ObjectView_Init(pass,__pRT__,snd);
+    _PanelView_Init(pass,__pRT__,snd);
+    _PopUpMenu_Init(pass,__pRT__,snd);
+    _PullDownMenu_Init(pass,__pRT__,snd);
+    _RadioButtonGroup_Init(pass,__pRT__,snd);
+    _ScrollBar_Init(pass,__pRT__,snd);
+    _ScrollableView_Init(pass,__pRT__,snd);
+    _Scroller_Init(pass,__pRT__,snd);
+    _SelectionInList_Init(pass,__pRT__,snd);
+    _VariablePanel_Init(pass,__pRT__,snd);
+    _VariablePanelController_Init(pass,__pRT__,snd);
+    _stx_137libwidg_Init(pass,__pRT__,snd);
+    _Button_Init(pass,__pRT__,snd);
+    _CheckLabel_Init(pass,__pRT__,snd);
+    _DragRectangleController_Init(pass,__pRT__,snd);
+    _EnterBox_Init(pass,__pRT__,snd);
+    _FontPanel_Init(pass,__pRT__,snd);
+    _HVScrollableView_Init(pass,__pRT__,snd);
+    _HorizontalPanelView_Init(pass,__pRT__,snd);
+    _HorizontalScrollBar_Init(pass,__pRT__,snd);
+    _HorizontalScroller_Init(pass,__pRT__,snd);
+    _InfoBox_Init(pass,__pRT__,snd);
+    _MiniScroller_Init(pass,__pRT__,snd);
+    _MultiColumnPanelView_Init(pass,__pRT__,snd);
+    _MultiSelectionInList_Init(pass,__pRT__,snd);
+    _OptionBox_Init(pass,__pRT__,snd);
+    _PopUpListController_Init(pass,__pRT__,snd);
+    _SelectionInListView_Init(pass,__pRT__,snd);
+    _SequenceView_Init(pass,__pRT__,snd);
+    _TextView_Init(pass,__pRT__,snd);
+    _ToggleController_Init(pass,__pRT__,snd);
+    _VariableHorizontalPanel_Init(pass,__pRT__,snd);
+    _VariableHorizontalPanelController_Init(pass,__pRT__,snd);
+    _VariableVerticalPanel_Init(pass,__pRT__,snd);
+    _VariableVerticalPanelController_Init(pass,__pRT__,snd);
+    _VerticalPanelView_Init(pass,__pRT__,snd);
+    _WorkspaceCompletionSupport_Init(pass,__pRT__,snd);
+    _XPToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _ArrowButton_Init(pass,__pRT__,snd);
+    _EditTextView_Init(pass,__pRT__,snd);
+    _EnterBox2_Init(pass,__pRT__,snd);
+    _FileSelectionList_Init(pass,__pRT__,snd);
+    _HorizontalMiniScroller_Init(pass,__pRT__,snd);
+    _ListSelectionBox_Init(pass,__pRT__,snd);
+    _MacOSXToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _MenuView_Init(pass,__pRT__,snd);
+    _PopUpList_Init(pass,__pRT__,snd);
+    _RadioButtonController_Init(pass,__pRT__,snd);
+    _Toggle_Init(pass,__pRT__,snd);
+    _VistaToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _WarningBox_Init(pass,__pRT__,snd);
+    _AdwaitaToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _CheckToggle_Init(pass,__pRT__,snd);
+    _ClickMenuView_Init(pass,__pRT__,snd);
+    _EditField_Init(pass,__pRT__,snd);
+    _FileSelectionBox_Init(pass,__pRT__,snd);
+    _MacOSX2ToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _RadioButton_Init(pass,__pRT__,snd);
+    _TextCollector_Init(pass,__pRT__,snd);
+    _Windows8ToolbarIconLibrary_Init(pass,__pRT__,snd);
+    _YesNoBox_Init(pass,__pRT__,snd);
+    _FileSaveBox_Init(pass,__pRT__,snd);
+    _Workspace_Init(pass,__pRT__,snd);
+    _CodeView_Init(pass,__pRT__,snd);
+
+    _stx_137libwidg_extensions_Init(pass,__pRT__,snd);
+  __END_PACKAGE__();
+}
--- a/mingwmake.bat	Sun Dec 10 00:04:50 2017 +0000
+++ b/mingwmake.bat	Tue Jun 26 09:35:02 2018 +0100
@@ -1,18 +1,18 @@
-@REM -------
-@REM make using mingw gnu compiler
-@REM type mingwmake, and wait...
-@REM do not edit - automatically generated from ProjectDefinition
-@REM -------
-@SET DEFINES=
-@REM Kludge got Mercurial, cannot be implemented in Borland make
-@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
-@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
-
-@pushd ..\rules
-@call find_mingw.bat
-@popd
-make.exe -N -f bc.mak %DEFINES% %USEMINGW_ARG% %*
-
-
-
-
+@REM -------
+@REM make using mingw gnu compiler
+@REM type mingwmake, and wait...
+@REM do not edit - automatically generated from ProjectDefinition
+@REM -------
+@SET DEFINES=
+@REM Kludge got Mercurial, cannot be implemented in Borland make
+@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
+@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
+
+@pushd ..\rules
+@call find_mingw.bat
+@popd
+make.exe -N -f bc.mak %DEFINES% %USEMINGW_ARG% %*
+
+
+
+
--- a/stx_libwidg.st	Sun Dec 10 00:04:50 2017 +0000
+++ b/stx_libwidg.st	Tue Jun 26 09:35:02 2018 +0100
@@ -1,6 +1,7 @@
 "
  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
  COPYRIGHT (c) 2015 Jan Vrany
+ COPYRIGHT (c) 2018 Jan Vrany
               All Rights Reserved
 
  This software is furnished under a license and may be used
@@ -27,6 +28,7 @@
 "
  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
  COPYRIGHT (c) 2015 Jan Vrany
+ COPYRIGHT (c) 2018 Jan Vrany
               All Rights Reserved
 
  This software is furnished under a license and may be used
@@ -157,9 +159,10 @@
         #'stx:goodies/regex'    "Regex::RxMatcher - referenced by TextView>>openSearchBoxAndSearch"
         #'stx:libbasic2'    "ActorStream - referenced by TextCollector>>initialize"
         #'stx:libbasic3'    "MessageTally - referenced by Workspace>>spyOnIt"
-        #'stx:libtool2'    "ImageEditor - referenced by DialogBox class>>requestFileNameForImageSave:image:default:pattern:"
         #'stx:libui'    "ActionButtonSpec - referenced by Button>>specClass"
     )
+
+    "Modified: / 26-06-2018 / 09:30:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 subProjects
--- a/vcmake.bat	Sun Dec 10 00:04:50 2017 +0000
+++ b/vcmake.bat	Tue Jun 26 09:35:02 2018 +0100
@@ -1,22 +1,22 @@
-@REM -------
-@REM make using Microsoft Visual C compiler
-@REM type vcmake, and wait...
-@REM do not edit - automatically generated from ProjectDefinition
-@REM -------
-
-@if not defined VSINSTALLDIR (
-    pushd ..\rules
-    call vcsetup.bat
-    popd
-)
-@SET DEFINES=
-@REM Kludge got Mercurial, cannot be implemented in Borland make
-@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
-@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
-
-
-make.exe -N -f bc.mak -DUSEVC=1 %DEFINES% %*
-
-
-
-
+@REM -------
+@REM make using Microsoft Visual C compiler
+@REM type vcmake, and wait...
+@REM do not edit - automatically generated from ProjectDefinition
+@REM -------
+
+@if not defined VSINSTALLDIR (
+    pushd ..\rules
+    call vcsetup.bat
+    popd
+)
+@SET DEFINES=
+@REM Kludge got Mercurial, cannot be implemented in Borland make
+@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
+@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
+
+
+make.exe -N -f bc.mak -DUSEVC=1 %DEFINES% %*
+
+
+
+