Project

How to create a project?

  1. Make a project directory.
  2. Make a application.xml in the project directory.
  3. for each window make a window.xml in the project directory.

Application.xml

The application.xml file should have the name "app.xml" where app is the name of the application. In this file you will need the following lines:

  1. <?xml version="1.0"?>

    This line indicates the XML version that is used.

  2. <!DOCTYPE application SYSTEM "application.dtd" [

    This line declares that the root of the XML tree is application and it includes the application.dtd.

  3. For each window in your need to add the following line where window is the name of the window.

  4. <!ENTITY window SYSTEM "window.xml">
  5. ]>

    To close the inclusion of the window.xml files.

  6. <application id="name" guiversion="1.0">

    Here is name the name of this file without the ".xml" extension.

  7. For each window you will need to add the folowing line where window is the name of the window.

  8. &window;
  9. </application>

    to close the application tag.

See example for a example application.xml file.

Window.xml

For each window in your application as specified in application.xml you have to create a window.xml file where window is the name of the window. Each window.xml file has to have at least an window tag as specified in the specification of the window tag. See example for a example window.xml file.