summaryrefslogtreecommitdiffstats
path: root/Modules/flmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* * Makefile: added IMGFILE; moved some stuff around.Guido van Rossum1992-09-171-12/+75
| | | | | | | | * flmodule.c: added some missing functions; changed readonly flags of some data members based upon FORMS documentation. * listobject.c: fixed int/long arg lint bug (bites PC compilers). * several: removed redundant print methods (repr is good enough). * posixmodule.c: added (still experimental) process group functions.
* Use getargs() everywhere now. Standardize lay-out yet more (an ongoingGuido van Rossum1992-09-031-196/+248
| | | | | project :-). Change object administration: objects are removed from the list of known objects as soon as their form is destroyed.
* Modified to allow other threads to run in a multithreaded environment.Jack Jansen1992-08-131-1/+27
|
* * Makefile: cosmeticsGuido van Rossum1992-08-051-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * socketmodule.c: get rid of makepair(); fix makesocketaddr to fix broken recvfrom() * socketmodule: get rid of getStrarg() * ceval.h: move eval_code() to new file eval.h, so compile.h is no longer needed. * ceval.c: move thread comments to ceval.h; always make save/restore thread functions available (for dynloaded modules) * cdmodule.c, listobject.c: don't include compile.h * flmodule.c: include ceval.h * import.c: include eval.h instead of ceval.h * cgen.py: add forground(); noport(); winopen(""); to initgl(). * bltinmodule.c, socketmodule.c, fileobject.c, posixmodule.c, selectmodule.c: adapt to threads (add BGN/END SAVE macros) * stdwinmodule.c: adapt to threads and use a special stdwin lock. * pythonmain.c: don't include getpythonpath(). * pythonrun.c: use BGN/END SAVE instead of direct calls; also more BGN/END SAVE calls etc. * thread.c: bigger stack size for sun; change exit() to _exit() * threadmodule.c: use BGN/END SAVE macros where possible * timemodule.c: adapt better to threads; use BGN/END SAVE; add longsleep internal function if BSD_TIME; cosmetics
* fixed bugs in generic_setattr (returned NULL instead ofGuido van Rossum1992-06-031-2/+2
| | | | -1 for errors)
* in form_dealloc, only hide the form if it's visibleGuido van Rossum1992-04-081-1/+2
|
* Copyright for 1992 addedGuido van Rossum1992-04-051-1/+1
|
* Added forms_(de)activate_all_forms functions; minor lay-out fixes.Guido van Rossum1992-03-271-18/+40
|
* Got rid of display_form() (same as show_form()).Guido van Rossum1992-03-241-15/+0
|
* Implemented show_choice(); moved items around a little bit.Guido van Rossum1992-03-231-9/+47
|
* Use getargs() function.Guido van Rossum1992-01-271-184/+41
|
* Hide forms before discarding them.Guido van Rossum1991-12-161-0/+1
|
* Support for FORMS 2.0.Guido van Rossum1991-12-101-33/+170
|
* Fixed duplicate use of OFF macro.Guido van Rossum1991-11-191-0/+6
|
* Finally added form attributes.Guido van Rossum1991-11-121-5/+38
|
* Done a little bit about garbage collection.Guido van Rossum1991-10-201-103/+218
| | | | Made some routines a little bit more robust.
* Return window ID of form (later should use attr list liek objects).Guido van Rossum1991-09-131-0/+2
|
* Fixed almost all list errors.Guido van Rossum1991-08-081-16/+20
|
* Lots of cosmetic changes.Guido van Rossum1991-08-081-310/+325
| | | | | Lots of small bugfixes (lint!). Made bgn_group and end_group form methods instead of top-level functions.
* Adde get_mouse and find_first/find_last (by robertl)Guido van Rossum1991-08-081-0/+72
|
* Initial revisionGuido van Rossum1991-08-071-0/+2177