Update a README

This commit is contained in:
Gregory Nutt 2019-05-13 09:49:33 -06:00
parent 3cd7b371d5
commit c800b43950
2 changed files with 8 additions and 8 deletions

View File

@ -58,16 +58,14 @@ STATUS
windows and "Twm4Nx Icon Manager" which will de-configy and/or raise windows and "Twm4Nx Icon Manager" which will de-configy and/or raise
the Icon Manager window to the top of the hierarchy. That latter option the Icon Manager window to the top of the hierarchy. That latter option
is only meaningful when the desktop is very crowded. is only meaningful when the desktop is very crowded.
2019-05-13: Added the NxTerm application. If enabled via
Further progress depends upon getting a some additional applications CONFIG_TWM4XN_NXTERM, there will now be a "NuttShell" enty in the Main
in place in the main menu in place. NxTerm is needed as is probably Menu. When pressed, this will bring up an NSH session in a Twm4Nx
a clock. These would provide good illustrations of how to hook in an window.
arbitrary application.
Some known bugs yet-to-fixed. Surely there are more as will be revealed Some known bugs yet-to-fixed. Surely there are more as will be revealed
by additional testing: by additional testing:
1. The is a small artifact in the upper lefthand corner. I am not sure 1. There is no way to resize a window
exactly what that is.
2. The logic to move an icon on the desk top does not work. 2. The logic to move an icon on the desk top does not work.
3. There is no calibration screen for touchscreen calibration. 3. There is no calibration screen for touchscreen calibration.

View File

@ -711,6 +711,7 @@ int twm4nx_main(int argc, char *argv[])
// needs to be a more flexible method if adding applications at run // needs to be a more flexible method if adding applications at run
// time. // time.
#ifdef CONFIG_TWM4NX_NXTERM
CNxTermFactory factory; CNxTermFactory factory;
success = factory.initialize(twm4nx); success = factory.initialize(twm4nx);
if (!success) if (!success)
@ -718,6 +719,7 @@ int twm4nx_main(int argc, char *argv[])
twmerr(" ERROR: Failed to initialize CNxTermFactory\n"); twmerr(" ERROR: Failed to initialize CNxTermFactory\n");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
#endif
// Start the Twm4Nx event loop // Start the Twm4Nx event loop