AminetAminet
Search:
84512 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/mui/MCC_Popph_Src.lha

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:V15.5 - Popup placeholder class (MUI)
Author:Marcin Orlowski <carlos at amiga.com.pl>
Uploader:Marcin Orlowski <carlos amiga com pl>
Type:dev/mui
Version:15.5
Replaces:dev/mui/MCC_Popph_Src.*
Architecture:m68k-amigaos
Www:http://amiga.com.pl/mcc/
Source:dev/mui/MCC_Popph_Src.lha
Date:2000-07-03
Download:http://aminet.net/dev/mui/MCC_Popph_Src.lha - View contents
Readme:http://aminet.net/dev/mui/MCC_Popph_Src.readme
Downloads:648

  Short
  -----------------------------------

  Popplaceholder class is a simple but useful class ;) Most applications
  are fully configurable nowadays, offering wide range of various
  parameters for further user modifications.  Not only functions options
  or forms of behaviour are configurable but often most of program
  strings can now be changed by the user.  The latter applies to
  internet (communication) related programs mostly, (e.g.  AmIRC,
  AmTelnet, YAM and so on...) which needs to send various string to
  other different people.  So they allow you to define e.g.  own welcome
  phrase or kick reason sentence.  Because e.g.  your welcome phrase for
  e.g.  John and phrase for Mary will differ only with the name, most of
  these strings uses so called placeholders, to describe varable,
  dynamically modified string part (e.g.  mentioned receipient name).
  For example "On %d, %u wrote:".  The "%d" and "%u" ares just the
  placeholders, program will replace on use by for instance mail date
  and the sender's name (of course placeholder can look like " at name" or
  "%{date}" or "my lovely grandma", but the idea behind remains).

  Unfortunately, most programs forces user to know what placeholder can
  be user where and which means what.  That's kinda user unfriendly
  (especially for beginners, or just-users).  Instead of forcing them to
  type placeholders by hand (in proper syntax!) it would be nicer to let
  them pick up what they want from the list of available items.  That
  both eliminates placeholder syntax problems (unless user 'fix' it
  later by hand of course) as well as disallows to use unsupported
  placeholder (the above exception applies of course).  And here comes
  Popplaceholder class.  It features the ordinary string gadget user can
  type own text in, but it also gives the popup listview, which holds
  all available placeholders.  User can easily select one from the list
  either by double click or by neat Drag&Drop.  See the example demo
  program for better picture of the class' features.


  Popplaceholder is freeware software, but it's copyrighted
  © 1999 by Marcin Orlowski <carlos at amiga.com.pl>

  PS: Yes, I know my english sucks ;)


  Software using this class:
  -----------------------------------

  - AmIRC 3
  - AmTelnet 2
  - OpenURL 3
  - Voyager 3
  - Golem

  Let me know about your!


  History
  -----------------------------------

  14.0 (Mon Jul 12 10:15:34 1999)
       - initial version

  14.1 (Mon Jul 12 13:09:21 1999)
       - Added MUIA_Poplaceholder_Copy attribute
       - now forwards all list object methods
         to internal pop up list, increasing
         flexibility

  14.2 (Tue Jul 13 19:35:58 1999)
       - shortened all these "MUIx_Popplaceholder_#?"
         to "MUIx_Popph_#?" for easier programming ;)
       - added Drag&Drop feature

  14.3 (Wed Jul 14 14:05:34 1999)
       - first public release
       - wrote autodocs
       - added support for existing string gadget
         replacements (the fallback scheme looks like:
         Textinput -> Betterstring -> original String)
       - MUIA_Popph_StringMaxLen is gettable now

  14.4 (oops, I forgot the datestamp)
       - added support for popup menu when Textinput
         subclass is used
       - added MUIA_Popph_ReplaceMode attribute

  14.5 (Sun Jul 25 19:58:25 1999)
       - Popplaceholder is now 2-in-1 custom class
         (poplaceholderstr.mcc is now useless and
         should be wiped out of your disks)
       - added some internal checks to avoid possible
         problems with tag/descriptions being longer
         than predefined max length
       - Popph object is no longer higher than highest
         object it uses
       - MUIA_Popph_StringType added
       - all TI/BS/String attrubutes are now forwarded
         to internal string object on OM_SET/OM_GET.
         Just talk to Popph as to string gadget
       - added PopAsl alike work mode

  14.6 (Tue Jul 27 16:09:44 1999)
       - MUIA_Version, MUIA_Revision are now supported
       - fixed bad enforcer hit "implemented" in 14.5
       - MUIA_Popph_Avoid added
       - added MUIA_Popph_StringObject, MUIA_Popph_ListObject

  14.7 (Tue Aug 31 10:28:35 1999)
       - all list methods and attributes are now forwarded
         to internal list object. Handle with care.
       - public release

  15.0 (Sat Nov 06 17:32:28 1999)
       - now handles the entry even it's incorrect (e.g.
         plain string, w/o separators etc) for easier
         debugging (and wider usage ;-)
       - added MUIA_Popph_PopCycleChain attribute on
         mouse lovers' request (reported by Grzegorz Kraszewski)
       - PopPH now correctly handles ASLFR_DrawersOnly, TRUE
         case in ASL mode (reported by Troels Walsted Hansen)
       - added MUIA_Popph_Title for easy popup list titles
       - added single column mode

  15.1 (Tue Nov 23 23:25:45 1999) - sponsored by Thorgal ;-)
       - fixed MUIA_Popph_Avoid not working correctly
         (Mike Carter)
       - pop buttons removed from the cycle chain
         (MUIA_Popph_PopCycleChain is now FALSE by default)
         as MUI offers special hotkey (CTRL-P by default)
         for that, and won't break the AdvanceOnCR adventages
         (reported by Grzegorz Kraszewski)
       - full source code released. Read source.readme for
         closer details

  15.2 (Sat Nov 27 14:47:34 1999) - sponsored by Thorgal ;-)
       - attached popup listview to the string object, to
         allow key-driven list navigation (Carlos) (reported
         by Mike Carter)
       - now uses all string/list related tags given at
         Popph creation time while creating internal string
         nd list object, to allow use of {I..} attributes
         as well (Carlos) (reported by Mike Carter)

  15.3 (Wed Feb 02 22:53:00 2000) - sponsored by The Hun
       - some attributes were wrongly DoSuperMethod()ed in
         OM_GET (Zapek)
       - fixed bugs when MUI_NewObject()ing without attributes
         (Zapek)

  15.4 (Sun Feb 06 18:56:00 2000) - sponsored by HardcoreJunky
       - MUI_DeleteCustomClass() was called with a freed pointer
         thus nuking when mungwall was running (Zapek)
       - public release

  15.5 (Thu Jun 29 23:25:18 2000) - sponsored by SilverDream!
       - minior tweaks (Carlos)
       - public release




          ___  ___  ___    ________    ___  ___  ___    ___  ___
         /   \/   \/   \  /        \  /   \/   \/   \  /   \/   \
        /    /    /    / /         / /    /    /    / /    /    /
       /    /    /    / /    _____/ /    /    /    / /    /    /
      /    /    /    / /        \  /    /    /    / /         /
     /    /    /    / /         / /    /    /    / /         /
    /    /    /    / /    _____/ /    /    /    / /    /    /
   /    /    /    / /    /      /    /    /    / /    /    /
   \___/\___/\___/ /    /       \___/\___/\___/  \___/\___/
                  /    /
                  \___/                    W.F.M.H. on-line
                                         http://wfmh.org.pl

               Amiga software: http://amiga.com.pl/


   $Id: MCC_Popph.readme,v 1.8 2000/04/04 17:58:19 carlos Exp $


Contents of dev/mui/MCC_Popph_Src.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO     CRC       STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                  742    1188  62.5% -lh5- fc3c Jun 29  2000 MCC_Popph_Src.info
[generic]                    5       5 100.0% -lh0- 5685 Jun 29  2000 MCC_Popph_Src/.revinfo
[generic]                   99     119  83.2% -lh5- 022f Jun 29  2000 MCC_Popph_Src/bumprev
[generic]                  966    2881  33.5% -lh5- a8e9 Jun 29  2000 MCC_Popph_Src/bumprev.rexx
[generic]                   45      48  93.8% -lh5- 641f Jun 29  2000 MCC_Popph_Src/clean
[generic]                 1266    3522  35.9% -lh5- 1c46 Jun 29  2000 MCC_Popph_Src/debug.h
[generic]                   14      14 100.0% -lh0- 9c61 Jun 29  2000 MCC_Popph_Src/go
[generic]                 3012    7263  41.5% -lh5- cbdf Jun 29  2000 MCC_Popph_Src/MCC_Popph.readme
[generic]                 3075    7474  41.1% -lh5- 3982 Jun 29  2000 MCC_Popph_Src/MCC_Popph_Src.readme
[generic]                 4595   18289  25.1% -lh5- 8a37 Jun 29  2000 MCC_Popph_Src/mccheader.c
[generic]                 1976    8818  22.4% -lh5- 883a Jun 29  2000 MCC_Popph_Src/muiundoc.h
[generic]                 7186   36986  19.4% -lh5- 6ca5 Jun 29  2000 MCC_Popph_Src/popph.c
[generic]                  165     282  58.5% -lh5- 3e2d Jun 29  2000 MCC_Popph_Src/popph.h
[generic]                  471    1057  44.6% -lh5- 6b93 Jun 29  2000 MCC_Popph_Src/popph_clipboard.c
[generic]                 1723    4872  35.4% -lh5- b08b Jun 29  2000 MCC_Popph_Src/popph_demo.c
[generic]                  363     808  44.9% -lh5- 7a5d Jun 29  2000 MCC_Popph_Src/popph_include.h
[generic]                  165     199  82.9% -lh5- 8196 Jun 29  2000 MCC_Popph_Src/popph_macros.h
[generic]                  358     694  51.6% -lh5- 903e Jun 29  2000 MCC_Popph_Src/popph_misc.c
[generic]                  401     742  54.0% -lh5- 753d Jun 29  2000 MCC_Popph_Src/popph_protos.h
[generic]                  120     236  50.8% -lh5- 5721 Jun 29  2000 MCC_Popph_Src/popph_revision.h
[generic]                  465    1087  42.8% -lh5- ee53 Jun 29  2000 MCC_Popph_Src/popph_structs.h
[generic]                 2831   12236  23.1% -lh5- c587 Jun 29  2000 MCC_Popph_Src/popphs.c
[generic]                 1126    4385  25.7% -lh5- efa2 Jun 29  2000 MCC_Popph_Src/popplaceholder_mcc.h
[generic]                  921    2730  33.7% -lh5- ea6a Jun 29  2000 MCC_Popph_Src/rel
[generic]                  635    1226  51.8% -lh5- 89bf Jun 29  2000 MCC_Popph_Src/smakefile
[generic]                  691    1247  55.4% -lh5- 7f74 Jun 29  2000 MCC_Popph_Src/source.readme
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total        26 files   33416  118408  28.2%            Jul  3  2000

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>