]> git.ipfire.org Git - thirdparty/newt.git/commitdiff
Fixed some missing <p> tags, added some <tscreen><verb>...</verb></tscreen>
authormsw <msw>
Tue, 29 Dec 1998 23:12:11 +0000 (23:12 +0000)
committermsw <msw>
Tue, 29 Dec 1998 23:12:11 +0000 (23:12 +0000)
tags on the last page

tutorial.sgml

index bb95564a04842119f2729de4d697e623e966ab14..1875492b169377ecc4bf6b791c3437b8c631e3cb 100644 (file)
@@ -85,6 +85,8 @@ when input is ready), programming with the newt libraries should be
 simple.
 
 <sect1>Components
+
+<p>
 Displayable items in <tt/newt/ are known as <bf/components/, which are
 analagous to the widgets provided by most Unix widget sets. There are
 two main types of components in <tt/newt/, forms and everything else.
@@ -1191,6 +1193,7 @@ many of the details.
 
 <sect2>Exiting From Forms
 
+<p>
 Forms return control to the application for a number of reasons:
 
 <itemize>
@@ -1214,16 +1217,19 @@ void newtFormAddHotKey(newtComponent co, int key);
 void newtFormWatchFd(newtComponent form, int fd, int fdFlags);
 </verb></tscreen>
 
+<tscreen><verb>
 void newtDrawForm(newtComponent form);
 newtComponent newtFormGetCurrent(newtComponent co);
 void newtFormSetCurrent(newtComponent co, newtComponent subco);
 void newtFormRun(newtComponent co, struct newtExitStruct * es);
+</verb></tscreen>
 
+<tscreen><verb>
 newtComponent newtForm(newtComponent vertBar, const char * help, int flags);
 void newtFormSetBackground(newtComponent co, int color);
 void newtFormSetHeight(newtComponent co, int height);
 void newtFormSetWidth(newtComponent co, int width);
-
+</verb></tscreen>
 
 
 <!-- make sure we discuss this when we get to grids