]> ncurses.scripts.mit.edu Git - ncurses.git/blob - c++/NEWS
525fa7284cdd0591cca3ce558443a815d7722fb8
[ncurses.git] / c++ / NEWS
1 This is a log of changes that the ncurses C++ binding has gone
2 through starting with the integration of menu and forms integration
3 into the binding.
4
5 970502
6         + Introduced the THROW and THROWS functions/macros to prepare
7           a smoother transition to real exception handling.
8         + Exception classes provided in etip.h
9         + Added the NCursesMenu class to support libmenu functionality.
10         + The inheritace relation between NCursesWindow and NCursesColorWindow
11           was kind of brain damage. Monochrome is a special case of colored, so
12           the relation should be just the opposite. This would allow all derived
13           classes like NCursesPanel, NCursesMenu or NCursesForm to have colors.
14           To resolve that design flaw I put the color functionality into the 
15           NCursesWindow class and it can be switched on by the static member
16           useColors(). NCursesColorWindow is still there for compatibility
17           reasons.