.dir.info
author Claus Gittinger <cg@exept.de>
Fri, 01 Sep 2017 14:30:38 +0200
changeset 6202 3b9b166e5fc1
parent 172 b9dd802b1357
permissions -rw-r--r--
#REFACTORING by cg class: TextView added: #compareAgainst:name: #compareAgainst:named: #compareWithClipboard #compareWithFile #openFileBrowserOnFileNamed: #openFileBrowserOnIt #openWorkspaceWithIt

This directory contains the high level view (widget) stuff. 
They are compiled by stc into the library 'libwidg' to be
linked to your application and to smalltalk itself.

All user interface elements (Scrollbar, TextViews, Button etc.)
are found here. 
Use of these classes requires that 'libview' is also loaded into 
the system.

Depending on the configuration and capabilities of your Operating-
System, the resulting classlibrary is either:

        libwidg.a      - an archive

        libwidg.obj    - a prelinked object library

        libwidg.so     - a shared object

the library includes init code (libwidg_Init) for all of its components.


Things you can do here:

    make                compile all classes, producing libwidg

    make objs           compile all required object files

    make install        compile all and install in DESTLIBDIR

    make qinstall       only install - assumes binaries are up-to-date 

    make check          syntax check only over all .st files

    make <file>.o       compile <file>.st to object-file

    make <file>.c       compile <file>.st to c intermediate

    make clean

    make clobber