dan
80fb289fc9
testing the notification thing
2001-03-21 05:02:17 +00:00
dan
5045cdbe60
updated Changelog about the recent move from WINGs.h to WUtil.h for handler definitions
2001-03-21 04:40:34 +00:00
dan
8564f5e409
testing cvs notification stuff
2001-03-21 03:41:06 +00:00
dan
a8da38c431
testing cvs notification
2001-03-21 03:38:01 +00:00
dan
bc3b44acaa
- simpler and more straightforward event handling for timer, idle, input
...
and X events (also fixed some problems the old handling logic had)
2001-03-21 01:29:22 +00:00
dan
f5dcab0663
- moved WINGs's internal handlers (timer, idle and input) to handlers.c
...
to avoid code duplication.
- simplified wevent.c and wutil.c
- renamed WMAddEternalTimerHandler() to WMAddPersistentTimerHandler()
2001-03-20 23:46:57 +00:00
kojima
51b1bf34b9
fixed some signal handling bugs
2001-03-14 02:54:54 +00:00
dan
99defe80a5
added WMGetLabelFont()
2001-02-26 14:53:30 +00:00
kojima
affcc3babd
various fixes, scrollview scrollers, text painting
2001-02-20 23:38:36 +00:00
kojima
07c9bb7d8d
programmatic scroller changes send notifications
...
fixed bug with tableview resize
made tableview column resizing
2001-02-13 23:00:14 +00:00
kojima
05f2a74ef5
fixed modifier bug in textfield again
2001-02-09 16:03:09 +00:00
dan
a1fb870fe8
- Added example of using WMCOnnection for a server like program.
...
- Added README with a short description of what each example does.
2001-02-09 03:12:16 +00:00
dan
17ae285f37
Fixed a bug causing sigsegv for a WMList with more than 32767 items
2001-01-30 21:04:52 +00:00
dan
f9778df784
Fixed a mem leak in WMList
2001-01-19 01:45:29 +00:00
dan
a20aebdef2
- Made all changes for moving WINGs headers in the WINGs subdirectory.
...
- Updated get-{wings|wutil}-flags accordingly
2001-01-18 19:21:56 +00:00
kojima
b4851afbb7
*** empty log message ***
2001-01-16 16:08:40 +00:00
kojima
22eb14c9d5
changed panel to use boxes
2001-01-09 16:45:14 +00:00
kojima
e99511b08c
various table widget updates
...
and fixed in misc other ones
2001-01-02 14:17:26 +00:00
dan
abc1ef4ed9
Latest changes
2001-01-01 08:42:25 +00:00
dan
f81d0f30de
Fixed a bug in scroller code related to mouse wheels
2000-12-28 00:30:09 +00:00
dan
ad95610321
- removed calls to wsyserror() and wwarning() inside the WMHost and
...
WMConnection code. do call by yourself wsyserrorwithcode() passing
WCErrorCode, whenever a call don't return the expected value, and
WCErrorCode > 0. If WCErrorCode==0 that is not an system error,
condition, so don't call wsyserrorwithcode() in that case.
- added some assertions where appropriate
2000-11-24 10:31:10 +00:00
dan
9d98d884ae
- Added WMSetConnectionCloseOnExec() to specify if the socket of a
...
connection survives or not an exec* family call. By default all
connections created by WINGs, set the socket to be closed on an exec*
call. Use the function if you need the reverse.
2000-11-19 23:50:38 +00:00
kojima
52308a0abc
fixed bugs of resized widgets
2000-11-11 18:08:10 +00:00
kojima
47e4e31ba0
*** empty log message ***
2000-11-09 05:02:37 +00:00
dan
366bf50d3c
forgot to update the changelog about wmessage()
2000-11-06 23:15:21 +00:00
dan
a81a0685ef
- added a new version of wstrappend() with different behavior from the
...
old one (the one renamed to wstrconcat). The new wstrappend(dst, src)
will modify and return dst, without creating a new string to hold the
result, except if dst==NULL, in which case its equivalent to calling
wstrdup(src)
2000-11-02 02:51:53 +00:00
dan
2bd2b72af9
- renamed wstrappend() to wstrconcat().
...
be sure to replace wstrappend() with wstrconcat() anywhere in your code
because a new wstrappend() function will be implemented that will have
different semantics and if your code will use the new one instead of
the old will break.
2000-11-01 15:40:15 +00:00
dan
d40425c388
Fixed mem leak in browser code.
2000-11-01 03:40:36 +00:00
kojima
275a2a3782
added scrolled notifcation to scroller
...
added GetVisibleRect function to scrollview
2000-10-11 16:21:50 +00:00
dan
bba6dd1670
- WMDestroyWidget() now first calls WMUnmapWidget()
...
- decided behavior of list selection while scrolling
2000-10-03 22:20:00 +00:00
dan
ed39c92de0
Code to allow multiple selection in WMBrowser
2000-10-03 20:52:15 +00:00
dan
7cf93ae49d
*** empty log message ***
2000-10-02 07:01:27 +00:00
dan
b2478b634f
- the list multiple selection code is working now. it still needs some
...
minor work and cleanup.
- made some bag and array functions to return void instead of int.
- a few new array functions.
- better handling of mouse wheel.
!!! make clean after this update before you rebuild. some enums changed.
2000-10-01 23:26:03 +00:00
dan
8ae0b5cc1d
fixed some buffer overflow bugs
2000-10-01 03:20:08 +00:00
dan
67642b7c20
Better behavior of mouse wheel actions (Control and SHift are now
...
accepted as modifiers to select how much it will actually scroll on
each mouse wheel event).
2000-09-29 02:30:55 +00:00
dan
358e3346c3
update changes
2000-09-29 02:20:35 +00:00
dan
aee58cbd36
WMList compiles now, single selection seems to be ok (as it used to be) but
...
multiple selection is not yet complete.
2000-09-29 02:12:40 +00:00
dan
6973f07f30
Remake of the WMList code to allow multiple selection. Not complete yet.
...
It will not even compile. I Will finish it later today.
2000-09-28 03:09:57 +00:00
dan
4193d2265d
- Added WMSetWindowUserPosition()
...
- Replaced FlattenStringList() and TokenizeString() with wtokenjoin()
respective wtokensplit() from WINGs
2000-09-26 00:35:33 +00:00
kojima
edc57cf7a1
added some new functions
2000-09-25 19:21:45 +00:00
dan
c1a77f233f
Finished the WMArray class
2000-09-20 00:30:45 +00:00
dan
595d2b060b
Removed array bag, and restructured the tree bag to be WMBag
2000-09-15 04:57:31 +00:00
kojima
9a89e6cc18
added string utils
2000-07-15 22:08:25 +00:00
kojima
e29fce43b1
- added WMGetLabelText()
...
- added WMReparentWidget()
- added WMCreateTabViewItem()
- added W_CreateUnmanagedTopView()
- fixed deletion from tree bag
2000-07-10 22:37:39 +00:00
kojima
c49ad9cac8
added text widget from nwanua
2000-06-20 23:27:37 +00:00
kojima
79ae37a35c
added options to change default fonts
2000-05-21 23:56:33 +00:00
dan
27838589a5
Added connection opening timeout handling
2000-04-27 04:26:15 +00:00
kojima
c08022a088
updated upzzle, removed SetWindowInitialSize added SetWindowAspectRatio
2000-04-09 23:06:55 +00:00
kojima
ee21c5bea6
changed iface of WMFindInBag
2000-04-02 20:16:30 +00:00
kojima
6672180d77
removed listbag added tree bag
...
started drag & drop
2000-03-28 02:30:13 +00:00