Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,465 @@
<!-- $XConsortium: Concepts.sgm /main/7 1996/09/08 22:00:17 rws $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<!-- Help volume: App Builder
File name: concepts -->
<Chapter Id="ABConcepts">
<Title>App Builder Concepts</Title>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.1">
<Para><XRef Linkend="ABProcess">
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.2">
<Para><XRef Linkend="ABProjectsModules">
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.3">
<Para><XRef Linkend="ABMessageExample">
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.4">
<Para><XRef Linkend="ABAboutAttachments">
</Para>
</ListItem>
</ItemizedList>
<Sect1 Id="ABProcess">
<Title>Summary of the App Builder Process</Title>
<IndexTerm>
<Primary>app builder process</Primary>
</IndexTerm>
<IndexTerm>
<Primary>process, creating an interface</Primary>
</IndexTerm>
<Para>The process of creating an App Builder user interface can be summarized as follows.
</Para>
<OrderedList>
<ListItem Id="H.CNCP.item.5">
<Para>Design the interface; draw a picture of it.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.6">
<Para>Perform an App Builder "spec" of the interface (determine what
App Builder objects will be used for each of the parts of the
interface design).
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.7">
<Para>Start App Builder.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.8">
<Para>Drag and drop a main window onto the desktop; this will be the
starting point for all functions in the finished application.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.9">
<Para>Drag and drop a control pane onto the main window; controls
will be dropped onto the control pane.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.10">
<Para>Drag and drop the appropriate controls onto the control pane;
use the group, alignment, and attachment tools of App Builder to
position the controls properly.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.11">
<Para>Drag and drop other main windows and custom dialogs
onto the desktop to create the other parts of the interface.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.12">
<Para>Make programmatic connections between objects in the
interface; test the connections in test mode.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.13">
<Para>Refine the interface and continue testing until it is right.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.14">
<Para>Generate code by running the App Builder code generator; add
user code to complete the functionality of the application.
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.15">
<Para>Compile, run, test, iteratively until the application is
complete.
</Para>
</ListItem>
</OrderedList>
</Sect1>
<Sect1 Id="ABProjectsModules">
<Title>App Builder Projects and Modules</Title>
<IndexTerm>
<Primary>projects</Primary>
</IndexTerm>
<IndexTerm>
<Primary>modules</Primary>
</IndexTerm>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.16">
<Para><XRef Linkend="ABProjectDef">
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.17">
<Para><XRef Linkend="ABModuleDef">
</Para>
</ListItem>
</ItemizedList>
<Sect2 Id="ABProjectDef">
<Title>What Is a Project?</Title>
<Para>When you use App Builder to create a graphical user interface, you are
working on a <Emphasis>project,</Emphasis> which is comprised of one or more
modules. App Builder, which was built with itself, was a single project,
comprised of over 30 modules.</Para>
<Para>A project file is started when you select New Project in the File menu
or when you drag and drop a window onto the desktop in a new session
of App Builder.</Para>
<Para>A project file is saved when you select Save Project in the File menu
or when you select Save in the Project menu in the Project Organizer.
A project file has a <ComputerOutput>.bip</ComputerOutput> (builder interface
project) suffix.</Para>
<Procedure>
<Title>See Also</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.18">
<Para><XRef Linkend="ABModuleDef"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
</Sect2>
<Sect2 Id="ABModuleDef">
<Title>What Is a Module?</Title>
<Para>A module is a logical unit of a project. Each window and dialog in
App Builder is a module of the App Builder project, for instance.</Para>
<Para>All module files in a project are saved when the project is saved. You
can explicitly save a particular module by selecting Save in the
Module menu in the Project Organizer.</Para>
<Para>A saved module file has a <ComputerOutput>.bil</ComputerOutput> (builder interface
language) suffix.</Para>
<Procedure>
<Title>See Also</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.19">
<Para><XRef Linkend="ABProjectDef"></Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
</Sect2>
</Sect1>
<Sect1 Id="ABMessageExample">
<Title>Example: Writing Code for Messages</Title>
<Para>Once you have created a message as described in <XRef Linkend="ABCreateMessage">, you must determine when and how it should be
displayed. Usually messages are displayed after a certain piece of
logic has been executed. For example, if a user types digits in a
text field that is designed to accept a name, you will want to post an
error message informing the user that digits are not valid.</Para>
<Para>Message boxes in Motif can be displayed in one of two ways: modally or
non-modally (equivalently, blocking or non-blocking). The App Builder
code generator (<ComputerOutput>dtcodegen</ComputerOutput>) supplies two routines,
corresponding to the two modes of display. They are found in
<ComputerOutput>dtb_utils.c</ComputerOutput> and are named:</Para>
<ItemizedList Mark="&bull;">
<ListItem Id="H.CNCP.item.20">
<Para><ComputerOutput>dtb_show_modal_message()</ComputerOutput>
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.21">
<Para><ComputerOutput>dtb_show_message()</ComputerOutput>
</Para>
</ListItem>
</ItemizedList>
<Para>If you want to display a particular message modally, use
<ComputerOutput>dtb_show_ modal_message()</ComputerOutput>.
If you want to display a particular message non-modally,
use <ComputerOutput>dtb_show_message()</ComputerOutput>.
</Para>
<Procedure>
<Title>See Also</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.22">
<Para><XRef Linkend="ABCodingModal">
</Para>
</ListItem>
<ListItem Id="H.CNCP.item.23">
<Para><XRef Linkend="ABCodingNonModal">
</Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
<Sect2 Id="ABCodingModal">
<Title>Coding for Modal Messages</Title>
<Para>As explained above, if a message is to be displayed modally, use
<ComputerOutput>dtb_show_modal_message()</ComputerOutput>. This routine returns
a value which indicates which message box button the user has pressed.
The value is an <ComputerOutput>enum</ComputerOutput> that is defined in
<ComputerOutput>dtb_utils.h</ComputerOutput>:</Para>
<LiteralLayout>/*
* Returns answer value for modal MessageBox
*/
typedef enum {
DTB_ANSWER_NONE,
DTB_ANSWER_ACTION1,
DTB_ANSWER_ACTION2,
DTB_ANSWER_ACTION3,
DTB_ANSWER_CANCEL,
DTB_ANSWER_HELP
} DTB_MODAL_ANSWER;
</LiteralLayout>
<Para>You can then examine the return value (for example via a switch
statement) and execute the appropriate piece of code.</Para>
<Para>Here's an example of displaying a message modally. Say that you have
created a simple application, named <ComputerOutput>foo</ComputerOutput>. The
project is named <ComputerOutput>foo.bip</ComputerOutput> and consists of one
module, <ComputerOutput>foo.bil</ComputerOutput>. The module
<ComputerOutput>foo.bil</ComputerOutput> consists of a main window, control pane,
and two text fields, one for the user to enter a person's first name
and the other to enter the last name. If the user types digits, an
error message should be posted, informing the user that digits are not
allowed, and giving the user a couple of options. The user can start
over, which means the text entered will be erased, or the user can
continue, which means that the text entered will be left intact,
giving the user discretion as to how to modify the text.</Para>
<Para>A call-function connection is made for both text fields, which will
be called each time the user types something. The function for the
first text field will check if the character typed is a digit. If so,
it will post the error message modally:</Para>
<LiteralLayout>void
verify_first_nameCB(
Widget widget,
XtPointer clientData,
XtPointer callData
)
{
/*** DTB_USER_CODE_START vvv Add C variables and code below vvv ***/
char *text = (char *)NULL;
int textlen = 0;
DTB_MODAL_ANSWER answer = DTB_ANSWER_NONE;
DtbFooMainwindowInfo instance = (DtbFooMainwindowInfo) clientData;
/*** DTB_USER_CODE_END ^^^ Add C variables and code above ^^^ ***/
/*** DTB_USER_CODE_START vvv Add C code below vvv ***/
text = XmTextFieldGetString(widget);
if ((text != NULL) && (*text != NULL))
{
textlen = strlen(text);
if (isdigit(text[textlen-1]))
{
dtb_foo_message_initialize(&amp;dtb_foo_message);
answer = dtb_show_modal_message(instance->textfield,
&amp;dtb_foo_message, NULL, NULL, NULL);
switch (answer)
{
case DTB_ANSWER_ACTION1: /* Start Over */
XmTextFieldSetString(widget, "");
break;
case DTB_ANSWER_ACTION2: /* Continue */
break;
}
}
}
/*** DTB_USER_CODE_END ^^^ Add C code above ^^^ ***/
}
</LiteralLayout>
<Procedure>
<Title>See Also</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.24">
<Para><XRef Linkend="ABCodingNonModal">
</Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
</Sect2>
<Sect2 Id="ABCodingNonModal">
<Title>Coding for Non-Modal Messages</Title>
<Para>If you want to post a non-modal message, you should use
<ComputerOutput>dtb_show_message()</ComputerOutput>. The callbacks for the
message box buttons should be specified via the Connections Editor, as
described in <XRef Linkend="ABConnectMessage">. The buttons that are specified
for the message box are displayed as When items for the message
object in the Connections Editor.</Para>
<Para>Using the same example as above, make the last name text field display
the error message non-modally if the user types a digit. As
previously mentioned, first you'll need to make a couple of
call-function connections for the two buttons in the message box,
labelled "Start Over" and "Continue." When code is generated,
add code to those routines to do the right thing. The start
over routine will clear out the text field and the continue routine
will do nothing, in this case.</Para>
<LiteralLayout>void
verify_last_nameCB(
Widget widget,
XtPointer clientData,
XtPointer callData
)
{
/*** DTB_USER_CODE_START vvv Add C variables and code below vvv ***/
char *text = (char *)NULL;
int textlen = 0;
DtbFooMainwindowInfo instance = (DtbFooMainwindowInfo) clientData;
/*** DTB_USER_CODE_END ^^^ Add C variables and code above ^^^ ***/
/*** DTB_USER_CODE_START vvv Add C code below vvv ***/
text = XmTextFieldGetString(widget);
if ((text != NULL) && (*text != NULL))
{
textlen = strlen(text);
if (isdigit(text[textlen-1]))
{
dtb_foo_message_initialize(&amp;dtb_foo_message);
dtb_show_message(instance->textfield,
&amp;dtb_foo_message, NULL, NULL);
}
}
/*** DTB_USER_CODE_END ^^^ Add C code above ^^^ ***/
}
void
start_overCB(
Widget widget,
XtPointer clientData,
XtPointer callData
)
{
/*** DTB_USER_CODE_START vvv Add C variables and code below vvv ***/
DtbFooMainwindowInfo instance = (DtbFooMainwindowInfo) clientData;
/*** DTB_USER_CODE_END ^^^ Add C variables and code above ^^^ ***/
/*** DTB_USER_CODE_START vvv Add C code below vvv ***/
XmTextFieldSetString(dtb_foo_mainwindow.textfield2, "");
/*** DTB_USER_CODE_END ^^^ Add C code above ^^^ ***/
}
void
continueCB(
Widget widget,
XtPointer clientData,
XtPointer callData
)
{
/*** DTB_USER_CODE_START vvv Add C variables and code below vvv ***/
/*** DTB_USER_CODE_END ^^^ Add C variables and code above ^^^ ***/
/*** DTB_USER_CODE_START vvv Add C code below vvv ***/
/*** DTB_USER_CODE_END ^^^ Add C code above ^^^ ***/
}
</LiteralLayout>
<Para>The two routines above, <ComputerOutput>start_overCB()</ComputerOutput> and
<ComputerOutput>continueCB()</ComputerOutput>, are added as callbacks for the two
buttons via the call to <ComputerOutput>dtb_show_message()</ComputerOutput>. Here
is the code fragment that adds the callback (from
<ComputerOutput>dtb_utils.c</ComputerOutput>):</Para>
<LiteralLayout>/* Add Callbacks if necessary */
if (mbr->action1_callback != (XtCallbackProc) NULL)
XtAddCallback(msg_dlg, XmNokCallback, mbr->action1_callback, NULL);
if (mbr->cancel_callback != (XtCallbackProc) NULL)
XtAddCallback(msg_dlg, XmNcancelCallback, mbr->cancel_callback,
NULL);
if (mbr->action2_callback != (XtCallbackProc) NULL)
{
action_btn = dtb_MessageBoxGetActionButton(msg_dlg, DTB_ACTION2_BUTTON);
if (action_btn != NULL)
XtAddCallback(action_btn, XmNactivateCallback,
mbr->action2_callback, NULL);
}
if (mbr->action3_callback != (XtCallbackProc) NULL)
{
action_btn = dtb_MessageBoxGetActionButton(msg_dlg, DTB_ACTION3_BUTTON); if (action_btn != NULL)
XtAddCallback(action_btn, XmNactivateCallback,
mbr->action3_callback, NULL);
}
</LiteralLayout>
<Para>The structure <ComputerOutput>mbr</ComputerOutput> contains all the necessary
information for the message. The structure is filled in with the
values specified in the Message Editor when the message object was
created via the
<ComputerOutput>dtb_&lt;modulename>_&lt;messagename>_initialize()</ComputerOutput>
routine -- in this example,
<ComputerOutput>dtb_foo_message_initialize()</ComputerOutput>.</Para>
<Procedure>
<Title>See Also</Title>
<Step>
<ItemizedList Mark="&bull;" Role="tight">
<ListItem Id="H.CNCP.item.25">
<Para><XRef Linkend="ABCodingModal">
</Para>
</ListItem>
</ItemizedList>
</Step>
</Procedure>
</Sect2>
</Sect1>
<Sect1 Id="ABAboutAttachments">
<Title>About Attachments</Title>
<Para>Attachments (and groups, which are based on attachments) establish
dynamic layout behavior for objects in the interface. Dynamic layout
behavior ensures that objects will maintain consistent relationships
during resize activities. Attachments enable an internationalized
application to work well in a number of locales.
All child objects are attached by their top and left edges to the top
and left edge of their parent object, by default. Thus a control pane
dropped on a main window is attached by its left and top edges to the
left and top edges of the main window. Similarly, a button dropped on
the control pane is attached to the control pane.</Para>
<Para>If the parent object is resized in an upward or leftward direction,
the child object moves with the parent, maintaining the distance from
the top and left edge of the parent.</Para>
<Para>If a pane object is dropped on the top or left edge of its parent it
will be attached to that edge with an offset of 0. If it is dropped
some distance to the right and below the left and top edges of its
parent, it will have positive offsets.</Para>
<Para>If a pane object is resized from its right and bottom edges so that it
spans its parent object, it will be attached to the right and bottom
edges of its parent.</Para>
<Procedure>
<Title>Attachment Example: Custom Dialog</Title>
<Step>
<Para>See an App Builder custom dialog object for an example of attachments.
Each of the buttons at the bottom of the custom dialog are attached to
the top and sides of their enclosing dialog panel. They are attached
five pixels from the top of the panel and varying percentages from the
left edge of the panel (Button1 left edge 10%, right edge 30%; Button2
40% and 60%; Button3 70% and 90%).</Para>
<Para>The left edge of Button1 will always be 10% from the edge of the panel
and the right edge of Button1 will always be 30% from the edge of the
panel. Button1 will, therefore, always be as wide as 20% of the total
width of the panel. Button2's edges are 40% and 60% from the left edge
of the panel; Button3's edges are 70% and 90% from the left edge of
the panel. The three buttons will grow and shrink as the panel grows
and shrinks, and the distance between them will always be 10% of the
total width of the panel.</Para>
<!-- EOF: Concepts -->
</Step>
</Procedure>
</Sect1>
</Chapter>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 17:37:35-->

View File

@@ -0,0 +1,100 @@
<!-- $XConsortium: GEntity.sgm /main/6 1996/10/29 17:43:43 drk $ -->
<!entity ABiconFig SYSTEM "./AppBuilder/graphics/abicon.pm" NDATA XPM>
<!entity AlignMenuFig SYSTEM "./AppBuilder/graphics/align.tif" NDATA TIFF>
<!entity AppFrameworkEdFig SYSTEM "./AppBuilder/graphics/frmwrked.tif" NDATA TIFF>
<!entity AttachBottomFig SYSTEM "./AppBuilder/graphics/attbot.tif" NDATA TIFF>
<!entity AttachCentersFig SYSTEM "./AppBuilder/graphics/attcent.tif" NDATA TIFF>
<!entity AttachEditorFig SYSTEM "./AppBuilder/graphics/atted.tif" NDATA TIFF>
<!entity AttachNoneFig SYSTEM "./AppBuilder/graphics/attnone.tif" NDATA TIFF>
<!entity AttachPercentCenterFig SYSTEM "./AppBuilder/graphics/attprcent.tif" NDATA TIFF>
<!entity AttachPercentTopFig SYSTEM "./AppBuilder/graphics/attprtop.tif" NDATA TIFF>
<!entity AttachTopFig SYSTEM "./AppBuilder/graphics/atttop.tif" NDATA TIFF>
<!entity AttachTwoFig SYSTEM "./AppBuilder/graphics/atttwo.tif" NDATA TIFF>
<!entity BaseWindowFig SYSTEM "./AppBuilder/graphics/basewin.pm" NDATA XPM>
<!entity BrowserEditMenuFig SYSTEM "./AppBuilder/graphics/edit.tif" NDATA TIFF>
<!entity BrowserMWFig SYSTEM "./AppBuilder/graphics/browser.tif" NDATA TIFF>
<!entity BrowserViewMenuFig SYSTEM "./AppBuilder/graphics/view.tif" NDATA TIFF>
<!entity ButtonIconFig SYSTEM "./AppBuilder/graphics/button.tif" NDATA TIFF>
<!entity CheckBoxIconFig SYSTEM "./AppBuilder/graphics/checkbox.tif" NDATA TIFF>
<!entity CodeGenEnvirOptionsFig SYSTEM "./AppBuilder/graphics/environ.tif" NDATA TIFF>
<!entity CodeGenFig SYSTEM "./AppBuilder/graphics/codegen.tif" NDATA TIFF>
<!entity CodeGenFileMenuFig SYSTEM "./AppBuilder/graphics/file.tif" NDATA TIFF>
<!entity CodeGenMsgUnsavedFig SYSTEM "./AppBuilder/graphics/unsaved.tif" NDATA TIFF>
<!entity CodeGenOptionsFig SYSTEM "./AppBuilder/graphics/cgoption.tif" NDATA TIFF>
<!entity CodeGenOptionsMenuFig SYSTEM "./AppBuilder/graphics/cgoptmen.tif" NDATA TIFF>
<!entity ColorChooserFig SYSTEM "./AppBuilder/graphics/color.tif" NDATA TIFF>
<!entity ComboBoxIconFig SYSTEM "./AppBuilder/graphics/combobox.tif" NDATA TIFF>
<!entity ConnectEdFig SYSTEM "./AppBuilder/graphics/conned.tif" NDATA TIFF>
<!entity ConnectExecuteCodeEditorFig SYSTEM "./AppBuilder/graphics/execute.tif" NDATA TIFF>
<!entity ContainerFig SYSTEM "./AppBuilder/graphics/contain.pm" NDATA XPM>
<!entity ControlPaneFig SYSTEM "./AppBuilder/graphics/cpanel.tif" NDATA TIFF>
<!entity ControlPaneIconObjFig SYSTEM "./AppBuilder/graphics/cpanelio.tif" NDATA TIFF>
<!entity ControlsPaletteFig SYSTEM "./AppBuilder/graphics/palette.tif" NDATA TIFF>
<!entity CustomDIconObjectFig SYSTEM "./AppBuilder/graphics/custicon.tif" NDATA TIFF>
<!entity DAPaneFig SYSTEM "./AppBuilder/graphics/dapane.tif" NDATA TIFF>
<!entity DistributeMenuFig SYSTEM "./AppBuilder/graphics/distmenu.tif" NDATA TIFF>
<!entity DrawAreaIconFig SYSTEM "./AppBuilder/graphics/drwareai.tif" NDATA TIFF>
<!entity DragandDropEditorFig SYSTEM "./AppBuilder/graphics/dnded.tif" NDATA TIFF>
<!entity DrawAreaFig SYSTEM "./AppBuilder/graphics/drawarea.pm" NDATA XPM>
<!entity DrawAreaIconObjFig SYSTEM "./AppBuilder/graphics/dareaio.tif" NDATA TIFF>
<!entity DropCustDialogFig SYSTEM "./AppBuilder/graphics/dropcust.tif" NDATA TIFF>
<!entity DropFSDFig SYSTEM "./AppBuilder/graphics/dropfile.tif" NDATA TIFF>
<!entity DropMainWindowFig SYSTEM "./AppBuilder/graphics/dropmain.tif" NDATA TIFF>
<!entity EditMenuFig SYSTEM "./AppBuilder/graphics/editmenu.tif" NDATA TIFF>
<!entity EditorsMenuFig SYSTEM "./AppBuilder/graphics/edsmenu.tif" NDATA TIFF>
<!entity FSDIconFig SYSTEM "./AppBuilder/graphics/fsb.pm" NDATA XPM>
<!entity FSDOpenProjectFig SYSTEM "./AppBuilder/graphics/fsdopen.tif" NDATA TIFF>
<!entity FileMenuFig SYSTEM "./AppBuilder/graphics/filemenu.tif" NDATA TIFF>
<!entity FileMenuTopFig SYSTEM "./AppBuilder/graphics/fmenutop.tif" NDATA TIFF>
<!entity FrontPanelwABFig SYSTEM "./AppBuilder/graphics/fpwab.tif" NDATA TIFF>
<!entity FSDIconObjectFig SYSTEM "./AppBuilder/graphics/fsdio.tif" NDATA TIFF>
<!entity GaugeIconFig SYSTEM "./AppBuilder/graphics/guage.tif" NDATA TIFF>
<!entity GroupButtonsFig SYSTEM "./AppBuilder/graphics/group.tif" NDATA TIFF>
<!entity GroupEditorFig SYSTEM "./AppBuilder/graphics/grouped.tif" NDATA TIFF>
<!entity HelpEditorFig SYSTEM "./AppBuilder/graphics/helped.tif" NDATA TIFF>
<!entity HelpMenuFig SYSTEM "./AppBuilder/graphics/helpmenu.tif" NDATA TIFF>
<!entity LabelIconFig SYSTEM "./AppBuilder/graphics/label.tif" NDATA TIFF>
<!entity LayoutMenuFig SYSTEM "./AppBuilder/graphics/layout.tif" NDATA TIFF>
<!entity MainWindowCallsFig SYSTEM "./AppBuilder/graphics/maincall.tif" NDATA TIFF>
<!entity MainWIconObjectFig SYSTEM "./AppBuilder/graphics/mainwio.tif" NDATA TIFF>
<!entity MainWindowFig SYSTEM "./AppBuilder/graphics/mainwin.tif" NDATA TIFF>
<!entity MenuBarFig SYSTEM "./AppBuilder/graphics/menubar.tif" NDATA TIFF>
<!entity MenuBarIconFig SYSTEM "./AppBuilder/graphics/menubart.tif" NDATA TIFF>
<!entity MenuButtonIconFig SYSTEM "./AppBuilder/graphics/menubut.tif" NDATA TIFF>
<!entity MessageEditorFig SYSTEM "./AppBuilder/graphics/msged.tif" NDATA TIFF>
<!entity MessageIconsFig SYSTEM "./AppBuilder/graphics/message.tif" NDATA TIFF>
<!entity ModeBarFig SYSTEM "./AppBuilder/graphics/modebar.tif" NDATA TIFF>
<!entity MsgExitUnsavedFig SYSTEM "./AppBuilder/graphics/eunsaved.tif" NDATA TIFF>
<!entity MsgProjUnsavedFig SYSTEM "./AppBuilder/graphics/punsaved.tif" NDATA TIFF>
<!entity NameModuleFig SYSTEM "./AppBuilder/graphics/namemod.tif" NDATA TIFF>
<!entity NameProjectFig SYSTEM "./AppBuilder/graphics/nameproj.tif" NDATA TIFF>
<!entity ObjInfoAreaFig SYSTEM "./AppBuilder/graphics/objinfo.tif" NDATA TIFF>
<!entity OptionMenuIconFig SYSTEM "./AppBuilder/graphics/optmenu.tif" NDATA TIFF>
<!entity PanedMWwCpaneFig SYSTEM "./AppBuilder/graphics/mwcpage.tif" NDATA TIFF>
<!entity PanedWindowEditorwPanesFig SYSTEM "./AppBuilder/graphics/pwedpane.tif" NDATA TIFF>
<!entity PanesPaletteFig SYSTEM "./AppBuilder/graphics/panes.tif" NDATA TIFF>
<!entity PopupMenuBrowserFig SYSTEM "./AppBuilder/graphics/popbrowse.tif" NDATA TIFF>
<!entity PopupMenuUIFig SYSTEM "./AppBuilder/graphics/popui.tif" NDATA TIFF>
<!entity PopupWinFig SYSTEM "./AppBuilder/graphics/popupwin.pm" NDATA XPM>
<!entity ProjOrgModArrayFig SYSTEM "./AppBuilder/graphics/modarray.tif" NDATA TIFF>
<!entity ProjOrgModMenuFig SYSTEM "./AppBuilder/graphics/modmenu.tif" NDATA TIFF>
<!entity ProjOrgProjMenuFig SYSTEM "./AppBuilder/graphics/projmenu.tif" NDATA TIFF>
<!entity ProjectOrgFig SYSTEM "./AppBuilder/graphics/projorg.tif" NDATA TIFF>
<!entity PropEdSepFig SYSTEM "./AppBuilder/graphics/edsep.tif" NDATA TIFF>
<!entity RadioBoxIconFig SYSTEM "./AppBuilder/graphics/radiobox.tif" NDATA TIFF>
<!entity ScaleIconFig SYSTEM "./AppBuilder/graphics/scale.tif" NDATA TIFF>
<!entity ScrollListIconFig SYSTEM "./AppBuilder/graphics/scrlist.tif" NDATA TIFF>
<!entity SeparatorIconFig SYSTEM "./AppBuilder/graphics/separat.tif" NDATA TIFF>
<!entity SpinBoxIconFig SYSTEM "./AppBuilder/graphics/spinbox.tif" NDATA TIFF>
<!entity TermPaneFig SYSTEM "./AppBuilder/graphics/termp.tif" NDATA TIFF>
<!entity TermPaneIconFig SYSTEM "./AppBuilder/graphics/termpi.pm" NDATA XPM>
<!entity TermPaneIconObjFig SYSTEM "./AppBuilder/graphics/termpio.tif" NDATA TIFF>
<!entity TextFieldIconFig SYSTEM "./AppBuilder/graphics/tfield.tif" NDATA TIFF>
<!entity TextPaneFig SYSTEM "./AppBuilder/graphics/textp.tif" NDATA TIFF>
<!entity TextPaneIconFig SYSTEM "./AppBuilder/graphics/textpi.pm" NDATA XPM>
<!entity TextPaneIconObjFig SYSTEM "./AppBuilder/graphics/textpio.tif" NDATA TIFF>
<!entity TitleBarFig SYSTEM "./AppBuilder/graphics/titlebar.tif" NDATA TIFF>
<!entity ViewMenuFig SYSTEM "./AppBuilder/graphics/viewmenu.tif" NDATA TIFF>
<!entity ViewMenuwModsFig SYSTEM "./AppBuilder/graphics/viewmods.tif" NDATA TIFF>
<!entity WindowsPaletteFig SYSTEM "./AppBuilder/graphics/windows.tif" NDATA TIFF>

View File

@@ -0,0 +1,82 @@
<!-- $XConsortium: Home.sgm /main/6 1996/09/08 22:00:27 rws $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<!-- Help Volume: Application Builder
File Name: hometopic -->
<PartIntro Id="SDL-RESERVED-hometopic">
<Title>Application Builder Help</Title>
<Para>&newline;&empty;</Para>
<Para>Application Builder (also called App Builder) is an
easy-to-use tool for building graphical user interfaces.</Para>
<Para>&newline;&empty;
</Para>
<Graphic Entityref="MainWindowFig" Id="H.HT.fig.1"></Graphic>
<Procedure>
<Title>To Open &appb;</Title>
<Step>
<Para><Anchor Id="ABOpenStart">
&newline; &empty;
<Graphic Entityref="ABiconFig" Id="H.HT.grph.1"></Graphic> Application Builder Icon</Para>
<Para>&newline; &empty; If this icon appears on the desktop, double-click on
it to restore an existing session of App Builder. If App Builder has
been installed on the Front Panel, click on the App Builder icon to
open a new session. See <XRef Linkend="ABStartAB"> if the App Builder icon is
not on the desktop or on the Front Panel.</Para>
</Step>
</Procedure>
<Procedure>
<Title>What App Builder Does</Title>
<Step>
<Para>Application Builder (also called App Builder) provides a simple method
for developers and others to construct applications that integrate
well into the Common Desktop Environment. It provides two basic
services: aid in assembling Motif objects into the desired application
user interface, and generation of appropriate calls to the routines
that support desktop integration services (ToolTalk messaging, drag
and drop, for example).</Para>
<Para>Key supported tasks include:
</Para>
<ItemizedList Mark="&bull;">
<ListItem Id="H.HT.item.1">
<Para>Interactive layout of the user interface for an application,
constructing it piece-by-piece from a collection of objects from the
&ProductName; Motif toolkit.
</Para>
</ListItem>
<ListItem Id="H.HT.item.2">
<Para>Definition of connections between objects to provide elements
of application interface behavior, and a limited test mode that allows
connections to be exercised.
</Para>
</ListItem>
<ListItem Id="H.HT.item.3">
<Para>Interactive specification of the interconnections desired
between the application and &ProductName; desktop services.
</Para>
</ListItem>
<ListItem Id="H.HT.item.4">
<Para>Editing of applications previously created using App Builder.
</Para>
</ListItem>
<ListItem Id="H.HT.item.5">
<Para>Generation of C language source code and associated project
files for the application.
</Para>
</ListItem>
<ListItem Id="H.HT.item.6">
<Para>Generation (compilation) and invocation of the application
from within Application Builder, allowing you to execute
the build/run/debug cycle from a common environment (without
having to exit and restart App Builder)</Para>
</ListItem>
</ItemizedList>
<!-- EOF -->
</Step>
</Procedure>
</PartIntro>
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 17:37:35-->

View File

@@ -0,0 +1,28 @@
<!-- $XConsortium: MetaInfo.sgm /main/4 1996/06/19 16:10:32 drk $ -->
<!-- (c) Copyright 1995 Digital Equipment Corporation. -->
<!-- (c) Copyright 1995 Hewlett-Packard Company. -->
<!-- (c) Copyright 1995 International Business Machines Corp. -->
<!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
<!-- (c) Copyright 1995 Novell, Inc. -->
<!-- (c) Copyright 1995 FUJITSU LIMITED. -->
<!-- (c) Copyright 1995 Hitachi. -->
<DocInfo>
<Title>Application Builder Help</Title>
<AuthorGroup>
<CorpAuthor>X Consortium</CorpAuthor>
</AuthorGroup>
<Abstract Id="SDL-RESERVED-abstract">
<Para>This help volume describes Application Builder and explains
how to use it to create a graphical user interface.
</Para>
</Abstract>
<LegalNotice Id="SDL-RESERVED-copyright">
<BlockQuote>
<Para>&CDEcopyright;</Para>
</BlockQuote>
</LegalNotice>
</DocInfo>
<Title>Application Builder Help</Title>
<!-- Help Volume: Application Builder
File Name: Metainfo -->
<!--fickle 1.15 help-to-docbook 1.4 01/17/96 17:37:35-->

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,177 @@
<!-- $XConsortium: adbook.sgm /main/6 1996/10/29 17:44:16 drk $ -->
<!DOCTYPE DocBook PUBLIC "-//HaL and O'Reilly//DTD DocBook V2.2.1//EN" [
<!ENTITY CDEcopyright "<GlossTerm Role=nogloss>Common Desktop Environment 1.x Internal Release</GlossTerm>
&copy; Copyright 1996 Digital Equipment Corp.
&copy; Copyright 1996 Fujitsu Limited
&copy; Copyright 1996 Hewlett-Packard Company
&copy; Copyright 1996 Hitachi, Ltd.
&copy; Copyright 1996 International Business Machines Corp.
&copy; Copyright 1996 Novell, Inc.
&copy; Copyright 1996 Sun Microsystems, Inc.">
<!ENTITY headerFix "&empty;">
<!ENTITY AbstractBullet "&bullet;">
<!ENTITY empty "">
<!ENTITY newline SDATA "[newlin]">
<!ENTITY emdash "&mdash;">
<!ENTITY bullet "&bull;">
<!ENTITY dquote "&rdquo;">
<!ENTITY sigspace "&nbsp;">
<!ENTITY vellipsis "&vellip;">
<!ENTITY tm "&trade;">
<!ENTITY a.m. "AM">
<!ENTITY cents "&cent;">
<!ENTITY date SDATA "[date]">
<!ENTITY div "&divide;">
<!ENTITY ellipsis "&hellip;">
<!ENTITY endash "&ndash;">
<!ENTITY geq "&ge;">
<!ENTITY leq "&le;">
<!ENTITY minutes "&prime;">
<!ENTITY neq "&ne;">
<!ENTITY p.m. "PM">
<!ENTITY pellipsis "....">
<!ENTITY pm "&plusmn;">
<!ENTITY seconds "&Prime;">
<!ENTITY squote "&rsquor;">
<!ENTITY sterling "&pound;">
<!ENTITY time SDATA "[time]">
<!ENTITY vblank SDATA "[vblank]">
<!ENTITY ProductName "CDE Desktop">
<!entity ABiconFig SYSTEM "./graphics/abicon.pm" NDATA XPM>
<!entity AlignMenuFig SYSTEM "./graphics/align.tif" NDATA TIFF>
<!entity AppFrameworkEdFig SYSTEM "./graphics/frmwrked.tif" NDATA TIFF>
<!entity AttachBottomFig SYSTEM "./graphics/attbot.tif" NDATA TIFF>
<!entity AttachCentersFig SYSTEM "./graphics/attcent.tif" NDATA TIFF>
<!entity AttachEditorFig SYSTEM "./graphics/atted.tif" NDATA TIFF>
<!entity AttachNoneFig SYSTEM "./graphics/attnone.tif" NDATA TIFF>
<!entity AttachPercentCenterFig SYSTEM "./graphics/attprcent.tif" NDATA TIFF>
<!entity AttachPercentTopFig SYSTEM "./graphics/attprtop.tif" NDATA TIFF>
<!entity AttachTopFig SYSTEM "./graphics/atttop.tif" NDATA TIFF>
<!entity AttachTwoFig SYSTEM "./graphics/atttwo.tif" NDATA TIFF>
<!entity BaseWindowFig SYSTEM "./graphics/basewin.pm" NDATA XPM>
<!entity BrowserEditMenuFig SYSTEM "./graphics/edit.tif" NDATA TIFF>
<!entity BrowserMWFig SYSTEM "./graphics/browser.tif" NDATA TIFF>
<!entity BrowserViewMenuFig SYSTEM "./graphics/view.tif" NDATA TIFF>
<!entity ButtonIconFig SYSTEM "./graphics/button.tif" NDATA TIFF>
<!entity CheckBoxIconFig SYSTEM "./graphics/checkbox.tif" NDATA TIFF>
<!entity CodeGenEnvirOptionsFig SYSTEM "./graphics/environ.tif" NDATA TIFF>
<!entity CodeGenFig SYSTEM "./graphics/codegen.tif" NDATA TIFF>
<!entity CodeGenFileMenuFig SYSTEM "./graphics/file.tif" NDATA TIFF>
<!entity CodeGenMsgUnsavedFig SYSTEM "./graphics/unsaved.tif" NDATA TIFF>
<!entity CodeGenOptionsFig SYSTEM "./graphics/cgoption.tif" NDATA TIFF>
<!entity CodeGenOptionsMenuFig SYSTEM "./graphics/cgoptmen.tif" NDATA TIFF>
<!entity ColorChooserFig SYSTEM "./graphics/color.tif" NDATA TIFF>
<!entity ComboBoxIconFig SYSTEM "./graphics/combobox.tif" NDATA TIFF>
<!entity ConnectEdFig SYSTEM "./graphics/conned.tif" NDATA TIFF>
<!entity ConnectExecuteCodeEditorFig SYSTEM "./graphics/execute.tif" NDATA TIFF>
<!entity ContainerFig SYSTEM "./graphics/contain.pm" NDATA XPM>
<!entity ControlPaneFig SYSTEM "./graphics/cpanel.tif" NDATA TIFF>
<!entity ControlPaneIconObjFig SYSTEM "./graphics/cpanelio.tif" NDATA TIFF>
<!entity ControlsPaletteFig SYSTEM "./graphics/palette.tif" NDATA TIFF>
<!entity CustomDIconObjectFig SYSTEM "./graphics/custicon.tif" NDATA TIFF>
<!entity DAPaneFig SYSTEM "./graphics/dapane.tif" NDATA TIFF>
<!entity DistributeMenuFig SYSTEM "./graphics/distmenu.tif" NDATA TIFF>
<!entity DrawAreaIconFig SYSTEM "./graphics/drwareai.tif" NDATA TIFF>
<!entity DragandDropEditorFig SYSTEM "./graphics/dnded.tif" NDATA TIFF>
<!entity DrawAreaFig SYSTEM "./graphics/drawarea.pm" NDATA XPM>
<!entity DrawAreaIconObjFig SYSTEM "./graphics/dareaio.tif" NDATA TIFF>
<!entity DropCustDialogFig SYSTEM "./graphics/dropcust.tif" NDATA TIFF>
<!entity DropFSDFig SYSTEM "./graphics/dropfile.tif" NDATA TIFF>
<!entity DropMainWindowFig SYSTEM "./graphics/dropmain.tif" NDATA TIFF>
<!entity EditMenuFig SYSTEM "./graphics/editmenu.tif" NDATA TIFF>
<!entity EditorsMenuFig SYSTEM "./graphics/edsmenu.tif" NDATA TIFF>
<!entity FSDIconFig SYSTEM "./graphics/fsb.pm" NDATA XPM>
<!entity FSDOpenProjectFig SYSTEM "./graphics/fsdopen.tif" NDATA TIFF>
<!entity FileMenuFig SYSTEM "./graphics/filemenu.tif" NDATA TIFF>
<!entity FileMenuTopFig SYSTEM "./graphics/fmenutop.tif" NDATA TIFF>
<!entity FrontPanelwABFig SYSTEM "./graphics/fpwab.tif" NDATA TIFF>
<!entity FSDIconObjectFig SYSTEM "./graphics/fsdio.tif" NDATA TIFF>
<!entity GaugeIconFig SYSTEM "./graphics/guage.tif" NDATA TIFF>
<!entity GroupButtonsFig SYSTEM "./graphics/group.tif" NDATA TIFF>
<!entity GroupEditorFig SYSTEM "./graphics/grouped.tif" NDATA TIFF>
<!entity HelpEditorFig SYSTEM "./graphics/helped.tif" NDATA TIFF>
<!entity HelpMenuFig SYSTEM "./graphics/helpmenu.tif" NDATA TIFF>
<!entity LabelIconFig SYSTEM "./graphics/label.tif" NDATA TIFF>
<!entity LayoutMenuFig SYSTEM "./graphics/layout.tif" NDATA TIFF>
<!entity MainWindowCallsFig SYSTEM "./graphics/maincall.tif" NDATA TIFF>
<!entity MainWIconObjectFig SYSTEM "./graphics/mainwio.tif" NDATA TIFF>
<!entity MainWindowFig SYSTEM "./graphics/mainwin.tif" NDATA TIFF>
<!entity MenuBarFig SYSTEM "./graphics/menubar.tif" NDATA TIFF>
<!entity MenuBarIconFig SYSTEM "./graphics/menubart.tif" NDATA TIFF>
<!entity MenuButtonIconFig SYSTEM "./graphics/menubut.tif" NDATA TIFF>
<!entity MessageEditorFig SYSTEM "./graphics/msged.tif" NDATA TIFF>
<!entity MessageIconsFig SYSTEM "./graphics/message.tif" NDATA TIFF>
<!entity ModeBarFig SYSTEM "./graphics/modebar.tif" NDATA TIFF>
<!entity MsgExitUnsavedFig SYSTEM "./graphics/eunsaved.tif" NDATA TIFF>
<!entity MsgProjUnsavedFig SYSTEM "./graphics/punsaved.tif" NDATA TIFF>
<!entity NameModuleFig SYSTEM "./graphics/namemod.tif" NDATA TIFF>
<!entity NameProjectFig SYSTEM "./graphics/nameproj.tif" NDATA TIFF>
<!entity ObjInfoAreaFig SYSTEM "./graphics/objinfo.tif" NDATA TIFF>
<!entity OptionMenuIconFig SYSTEM "./graphics/optmenu.tif" NDATA TIFF>
<!entity PanedMWwCpaneFig SYSTEM "./graphics/mwcpage.tif" NDATA TIFF>
<!entity PanedWindowEditorwPanesFig SYSTEM "./graphics/pwedpane.tif" NDATA TIFF>
<!entity PanesPaletteFig SYSTEM "./graphics/panes.tif" NDATA TIFF>
<!entity PopupMenuBrowserFig SYSTEM "./graphics/popbrowse.tif" NDATA TIFF>
<!entity PopupMenuUIFig SYSTEM "./graphics/popui.tif" NDATA TIFF>
<!entity PopupWinFig SYSTEM "./graphics/popupwin.pm" NDATA XPM>
<!entity ProjOrgModArrayFig SYSTEM "./graphics/modarray.tif" NDATA TIFF>
<!entity ProjOrgModMenuFig SYSTEM "./graphics/modmenu.tif" NDATA TIFF>
<!entity ProjOrgProjMenuFig SYSTEM "./graphics/projmenu.tif" NDATA TIFF>
<!entity ProjectOrgFig SYSTEM "./graphics/projorg.tif" NDATA TIFF>
<!entity PropEdSepFig SYSTEM "./graphics/edsep.tif" NDATA TIFF>
<!entity RadioBoxIconFig SYSTEM "./graphics/radiobox.tif" NDATA TIFF>
<!entity ScaleIconFig SYSTEM "./graphics/scale.tif" NDATA TIFF>
<!entity ScrollListIconFig SYSTEM "./graphics/scrlist.tif" NDATA TIFF>
<!entity SeparatorIconFig SYSTEM "./graphics/separat.tif" NDATA TIFF>
<!entity SpinBoxIconFig SYSTEM "./graphics/spinbox.tif" NDATA TIFF>
<!entity TermPaneFig SYSTEM "./graphics/termp.tif" NDATA TIFF>
<!entity TermPaneIconFig SYSTEM "./graphics/termpi.pm" NDATA XPM>
<!entity TermPaneIconObjFig SYSTEM "./graphics/termpio.tif" NDATA TIFF>
<!entity TextFieldIconFig SYSTEM "./graphics/tfield.tif" NDATA TIFF>
<!entity TextPaneFig SYSTEM "./graphics/textp.tif" NDATA TIFF>
<!entity TextPaneIconFig SYSTEM "./graphics/textpi.pm" NDATA XPM>
<!entity TextPaneIconObjFig SYSTEM "./graphics/textpio.tif" NDATA TIFF>
<!entity TitleBarFig SYSTEM "./graphics/titlebar.tif" NDATA TIFF>
<!entity ViewMenuFig SYSTEM "./graphics/viewmenu.tif" NDATA TIFF>
<!entity ViewMenuwModsFig SYSTEM "./graphics/viewmods.tif" NDATA TIFF>
<!entity WindowsPaletteFig SYSTEM "./graphics/windows.tif" NDATA TIFF>
<!ENTITY % local.notations "| XPM | XBM | XWD">
<!NOTATION XPM SYSTEM "XPM">
<!NOTATION XBM SYSTEM "XBM">
<!NOTATION XWD SYSTEM "XWD">
<!entity appb "App Builder">
<!entity Concepts SYSTEM "./Concepts.sgm">
<!entity HomeTopic SYSTEM "./Home.sgm">
<!entity MetaInformation SYSTEM "./MetaInfo.sgm">
<!entity Reference SYSTEM "./Ref.sgm">
<!entity Tasks SYSTEM "./Tasks.sgm">
<!entity Glossary SYSTEM "../common/glossary.sgm">
]>
<!-- __________________________________________________________________ -->
<DocBook>
<Book>
<Part>
&MetaInformation;
&HomeTopic;
&Tasks;
&Reference;
&Concepts;
&Glossary;
</Part>
</Book>
</DocBook>

View File

@@ -0,0 +1,68 @@
<!-- $XConsortium: book.sgm /main/7 1996/10/29 17:44:52 drk $ -->
<!DOCTYPE Part PUBLIC "-//HaL and O'Reilly//DTD DocBook//EN" [
<!ENTITY % ISOpublishing PUBLIC "ISO 8879-1986//ENTITIES Publishing//EN">
%ISOpublishing;
<!ENTITY % ISOnumeric PUBLIC "ISO 8879-1986//ENTITIES Numeric and Special Graphic//EN">
%ISOnumeric;
<!ENTITY % ISOdiacritical PUBLIC "ISO 8879-1986//ENTITIES Diacritical Marks//EN">
%ISOdiacritical;
<!ENTITY % ISOgeneraltech PUBLIC "ISO 8879-1986//ENTITIES General Technical//EN">
%ISOgeneraltech;
<!ENTITY % ISOalatin1 PUBLIC "ISO 8879-1986//ENTITIES Added Latin 1//EN">
%ISOalatin1;
<!ENTITY % ISOalatin2 PUBLIC "ISO 8879-1986//ENTITIES Added Latin 2//EN">
%ISOalatin2;
<!ENTITY % ISOgreek PUBLIC "ISO 8879-1986//ENTITIES Greek Symbols//EN">
%ISOgreek;
<!ENTITY % ISOboxandline PUBLIC "ISO 8879-1986//ENTITIES Box and Line Drawing//EN">
%ISOboxandline;
<!ENTITY % HEntities SYSTEM "../../common/help/HELPEnt.sgm">
%HEntities;
<!ENTITY % PEntities SYSTEM "./common/ProdEnt.sgm">
%PEntities;
<!ENTITY % Graphics SYSTEM "./AppBuilder/GEntity.sgm">
%Graphics;
<!ENTITY % local.notations "| XPM | XBM | XWD">
<!NOTATION XPM SYSTEM "XPM">
<!NOTATION XBM SYSTEM "XBM">
<!NOTATION XWD SYSTEM "XWD">
<!entity appb "App Builder">
<!entity Concepts SYSTEM "./AppBuilder/Concepts.sgm">
<!entity HomeTopic SYSTEM "./AppBuilder/Home.sgm">
<!entity MetaInformation SYSTEM "./AppBuilder/MetaInfo.sgm">
<!entity Reference SYSTEM "./AppBuilder/Ref.sgm">
<!entity Tasks SYSTEM "./AppBuilder/Tasks.sgm">
<!entity Glossary SYSTEM "./common/glossary.sgm">
]>
<!-- __________________________________________________________________ -->
<Part>
&MetaInformation;
&HomeTopic;
&Tasks;
&Reference;
&Concepts;
&Glossary;
</Part>

View File

@@ -0,0 +1,78 @@
/* XPM */
/* $XConsortium: abicon.pm /main/1 1996/03/09 20:09:12 rws $ */
/*********************************************************************
* (c) Copyright 1993, 1994 Hewlett-Packard Company
* (c) Copyright 1993, 1994 International Business Machines Corp.
* (c) Copyright 1993, 1994 Sun Microsystems, Inc.
* (c) Copyright 1993, 1994 Unix System Labs, Inc., a subsidiary of
* Novell, Inc.
**********************************************************************/
static char * DtBldr_l_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 48 15 1 0 0",
/* colors */
" s bottomShadowColor m black c #636363636363",
". s topShadowColor m white c #bdbdbdbdbdbd",
"X s none m none c none",
"o s iconGray1 m white c #dededededede",
"O s iconGray4 m white c #949494949494",
"+ s iconGray5 m black c #737373737373",
"@ s iconGray6 m black c #636363636363",
"# s iconColor4 m white c green",
"$ s iconGray3 m white c #adadadadadad",
"% s iconColor2 m white c white",
"& s iconGray2 m white c #bdbdbdbdbdbd",
"* s iconGray7 m black c #424242424242",
"= s selectColor m white c #737373737373",
"- s iconColor1 m black c black",
"; s background m black c #949494949494",
/* pixels */
" .XXXX",
" oooooooooooooooooooooooooooooooooooooooooo.XXXX",
" oOOOOOOOOOOO+oOOOOOOOOOOOOOOOOOOOOOOOOOOOO.XXXX",
" oOoooooooooooooooooooooooooooooooooooooooo.XXXX",
" oOoOOOOOOOOO@oOOOOOOOOOOOOOOOOOOOOOOOOOOOO.XXXX",
" oOoOOOOOOOOO@oOOOOOOOOOOOOOOOOOOOOOOOOOOOO.XXXX",
" oOoOOOOOOOOO@#OO$$@OO%%%%%&&OO%%@OOOOOOOOO.XXXX",
" oOoOoooooooO@##$%%o@@%%%%oo+@O%o@OOOOOOOOO.XXXX",
" oOoOo$$$$$@O@##&%oo@@%%oooo+@@%o@OOOOOOOOO.XXXX",
" oOoOo@@@@@@O@##*oo@@@%%ooo$+@@&&@OOOOOOOOO.XXXX",
" oOoOOOOOOOOO@#%#@@@O@%$$$$$+@+&$@OOOOOOOOO.XXXX",
" oOoOOOOOOOOO@##%#%#OO@@@@@@@++@@@OOOOOOOOO.XXXX",
" o+o@@@@@@@@@@#%#%#%#@@&&+++@@@@@@@@@@@@@@@.XXXX",
" ooo&&&&&&&&&&##%#%#%#&&&OO+*OO&&&&&&&&&&&&.XXXX",
" oOo&+++++++++#%#%#%#%#&o&O+*@+++++++++++++.XXXX",
" oOo&+++++++++##%#%#%#%&oo$+*@+++++++++++++.XXXX",
" oOo&+++++++++#%#%#%#%#&o%$O*@+++++++++++++.XXXX",
" oOo&+++++++++##%#%#%#%&o%$O*@+++++++++++++.XXXX",
" oOo&+++++++++#%#%###%#&o%$O@@+++++++++++++.XXXX",
" oOo&+++++++++##%#%#+#%&o%$O@@+++++++++++++.XXXX",
" oOo&+++++++++#%#%##+O#&o%$O@@+++++++++++++.XXXX",
" oOo&+++++++++##%#%#+OO&o%$O#@+++++++++++++.XXXX",
" oOo&+++++++++#%#%##+OO&o%$OO#@++++++++++++.XXXX",
" oOo&+++++++++##%#%#+OO@@@**#O#@+++++++++++.XXXX",
" oOo&@@@@@@@@@#%#%##@@@@@@***#%#@@@@@@@@@@@.XXXX",
" oOo@@@@@@@@@@##%#%#@@@O++***O#%#@@@@@@@@@@.XXXX",
" oOo&&&&&&&&&&#%#%##&&@++****#%#%#@&&&&&&&&.XXXX",
" oOo$$$$$$$$$$##%#%#O$@O++*+*##%#%#@$$$$$$$.XXXX",
" oOo$$$$$$$$$$#%#%##O$@++****+##%#%#@$$$$$$.XXXX",
" oOo$$$$$$$$$$##%#%#O$@O++*+*++##%#%#@$$$$$.XXXX",
" oOo$$$$$$$$$$#%#%##O$@++****++$##%#%#@$$$$.XXXX",
" oOo$$++++++++##%#%#++@O++*+***++##%#%#@+++.XXXX",
" oOo$$+$O$O$O$#%#%##$O@++****+O$O$##%#%#@O$.XXXX",
" oOo$$+O$O$O$O##%#%#O$@O++*+*O+O$OO##%#%#@O.XXXX",
" oOo$$+$O$O$O$#%#%###o@++****o#o#oo###%#%#@.XXXX",
" oOo$$+O$O$O$O##%#%#%#@O++*+*#$#%##%#%#%#%#.XXXX",
" oOo$$+$O$O$O$#%#%#%#%@++****$#%#%%#%#%#%#%#XXXX",
" oOo$$+O$O$O$O##%#%#%#@O++*+*#$#%##%#%#%#%#%#XXX",
" oOo$$+$O$O$O$########@++****#################XX",
" oOo$$+O$O$O$O$O$O$O$+@O++*+*++++++++++++++.=XXX",
"-oOo$$+$O$O$O$O$O$O$O$@++****+O$O$$O$O$O$O$.==XX",
"-oOo$$+O$O$O$O$O$O$O$O@O++*+*O+O$OO$O$O$O$O.XXXX",
" .....................@++****...............XXXX",
"XXXXXXXXXXXXXXXXXXXXXX@O++*+*==XXXXXXXXXXXXXXXXX",
"XXXXXXXXXXXXXXXXXXXXXX@++****=XXXXXXXXXXXXXXXXXX",
"XXXXXXXXXXXXXXXXXXXXXX@******==XXXXXXXXXXXXXXXXX",
"XXXXXXXXXXXXXXXXXXXXXXX=======XXXXXXXXXXXXXXXXXX",
"XXXXXXXXXXXXXXXXXXXXXXXX=X=X=;=XXXXXXXXXXXXXXXXX"};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,46 @@
/* XPM */
/* $XConsortium: basewin.pm /main/1 1996/03/09 20:11:34 rws $ */
static char * basewin_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 7 1 0 0",
/* colors */
" s iconGray4 m white c #949494949494",
". s iconColor1 m black c black",
"X s iconGray8 m black c #212121212121",
"o s iconGray2 m white c #bdbdbdbdbdbd",
"O s iconColor2 m white c white",
"+ c #8C8C8C8C8C8C",
"@ c #C3C3C3C3C3C3",
/* pixels */
" . . . X",
" ooo . . . ooo X",
" ooo . . O . oo. X",
" ... . . . o.. .",
" . . . +.",
"................................................",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO@+.",
" .O@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+.",
" .+++++++++++++++++++++++++++++++++++++++++++++.",
" ..............................................."};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,48 @@
/* XPM */
/* $XConsortium: contain.pm /main/1 1996/03/09 20:11:49 rws $ */
static char * container_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 9 1 0 0",
/* colors */
" c #8C8C8C8C8C8C",
". s iconColor1 m black c black",
"X c #7E7E7E7E7E7E",
"o c #D9D9D9D9D9D9",
"O s iconColor2 m white c white",
"+ s iconGray8 m black c #212121212121",
"@ s iconGray2 m white c #bdbdbdbdbdbd",
"# s iconGray5 m black c #737373737373",
"$ c #B7B7B7B7B7B7",
/* pixels */
" ",
" ",
" .......... ",
" .XXXXXXXXoOO OOO ++++++++++++++ ",
" .XOXXXXXXOO. O +@@@@@@@@@@@@@ ",
" .OOOXXXXOO. O O O O +@@@@@@@@@@@@@ ",
" OOOOOXXOO. O O O O # +@@@@@@@@@@@@@ ",
" .OOOOOOO.o O O O O O @@@@@@@@@@@@@@ ",
" .XOOOOO.Xo # # ",
" .XXOOO.XXo ",
" .XXXO.XXXo ",
" .ooooooooo ",
" ",
" ",
" ",
" ",
" # # ",
" ",
" ",
" ",
" ",
" ",
" ",
" ............................................ ",
" . ooooooooooooo o ",
" . o$$$$ .o$$$$. o ",
" . o$$$$ .o$$$$. o ",
" . o$$$$ .o$$$$. o ",
" . o............ o ",
" .ooooooooooooooooooooooooooooooooooooooooooo ",
" ",
" "};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,82 @@
/* XPM */
/*
* @DEC_COPYRIGHT@
*/
/*
* HISTORY
* $Log$
* Revision 2.1 1994/12/31 00:15:51 devrcs
* Initial load of project in OSF/1 pool
*
* Revision 1.1 1994/12/30 22:15:37 devrcs
* Initial load of original source
*
* Revision 1.2.2.2 1994/11/07 04:13:54 Alaa_Zeineldine
* Fixing XPM Header
* [1994/10/31 23:59:40 Alaa_Zeineldine]
*
* Revision 1.2 1994/09/05 18:12:28 devrcs
* Initial load of project
*
* $EndLog$
*/
/*
* @(#)$XConsortium: drawarea.pm /main/2 1996/07/18 15:32:32 drk $
*/
/* XPM */
static char * drawarea_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 19 1 0 0",
/* colors */
" s iconColor1 m black c black",
". s iconGray4 m white c #969696969696",
"X s iconGray2 m white c #c8c8c8c8c8c8",
"o s iconGray1 m white c #e1e1e1e1e1e1",
"O s iconGray6 m black c #646464646464",
"+ s iconColor6 m white c yellow",
"@ c #D9D9D9D9D9D9",
"# c #B7B7B7B7B7B7",
"$ s iconGray3 m white c #afafafafafaf",
"% s iconGray8 m black c #323232323232",
"& s iconColor2 m white c white",
"* c #BFBF26262626",
"= s iconGray5 m black c #7d7d7d7d7d7d",
"- s iconColor3 m black c red",
"; c #E5E5B1B12D2D",
": c #3E3E57578C8C",
"? c #61618787D9D9",
"> c #C4C4D7D7FFFF",
", c #8C8C8C8C8C8C",
/* pixels */
" . ",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXX+@+@+@+@+XXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXX+@+@+@+@+#XXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXX+@+@+@+@+#+XXXXXXXXXXXXXXXXXXo. $#%X",
" XXXXXXXXXX+++++++&+#+#XX#*XXXXXXXXXXXXXXo. $=%X",
" XXXXXXXXXX+++++++&#+#+XX-*XXXXXXXXXXXXXXo. $=%X",
" XXXXXXXXXX+++++++&+#+#X;#-*XXXXXXXXXXXXXo. $=%X",
" XXXXXXX:::::+++++&#+#+X;-#**XXXXXXXXXXXXo. $=%X",
" XXXXXX:::::::++++&+#+#;-#-#*XXXXXXXXXXXXo. $=%X",
" XXXXX::???::::+++&#+#+;#-#-**XXXXXXXXXXXo. $=%X",
" XXXX::>>>??::::++&+#+;#-#-#-**XXXXXXXXXXo. $=%X",
" XXX::?>>>???::::+&#+#;-#-#-#***XXXXXXXXXo. $=%X",
" XXX::?>>>???::::,&+#;-#-#-#-#**XXXXXXXXXo. $=%X",
" XXX::???????::::,&#+;#-#-#-#-#**XXXXXXXXo. X",
" XXX:::?????:::::,&+;#-#-#-#-#-***XXXXXXXo. OOOX",
" XXX::::???::::::,&#;-#-#-#-#-#-***XXXXXXo. OOOX",
" XXXX:::::::::::,,&;-#-#-#-#-#-#***XXXXXXo. OOOX",
" XXXXX:::::::::,,+&;#-#-#-#-#-#-#*XXXXXXXo. OOOX",
" XXXXXX:::::::,,++&,,,,XXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXX:::::,,+++&+#+#XXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXX,,,++++&#+#+XXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXX+++++++&+#+XXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXX++++++++#+XXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" ooooooooooooooooooooooooooooooooooooooooo, OOOX",
".........................................,..XXXX",
" ......",
" OOOOOOOOOOXXXXXXXXXXXXXXXXXXXX%OOOOOOOOOOX.....",
" OOOOOOOOOOX...................%OOOOOOOOOOX.....",
" OOOOOOOOOO%%%%%%%%%%%%%%%%%%%%%OOOOOOOOOOX.....",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX....."};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,47 @@
/* XPM */
/* $XConsortium: fsb.pm /main/1 1996/03/09 20:12:17 rws $ */
static char * fsb_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 8 1 0 0",
/* colors */
" c #C3C3C3C3C3C3",
". s iconColor1 m black c black",
"X c #8C8C8C8C8C8C",
"o s iconGray5 m black c #737373737373",
"O c #B7B7B7B7B7B7",
"+ s iconGray4 m white c #949494949494",
"@ s iconGray2 m white c #bdbdbdbdbdbd",
"# c #7E7E7E7E7E7E",
/* pixels */
" . .",
" XXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.",
" Xoo.oXXXoooooXXXXXXXXXXXXXXXXXXXXXXXXXXXXooooX.",
"O...............................................",
" X.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX X.",
" X.X.................. XX.................. X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X.+++++++++++++++++ XX.+++++++++++++++++ X X.",
" X.X. XX. X X.",
" X.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX X.",
" X.X........................................X X.",
" X.X.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ X X.",
" X.X.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ X X.",
" X.X.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ X X.",
" X.X. X X.",
" X.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX X.",
" X X.",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.",
" X .XXX .XXX .X.",
" X ###########.XXX ###########.XXX ##########.X.",
" X ###########.XXX ###########.XXX ##########.X.",
" X ............XXX ............XXX ...........X.",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.",
" ..............................................."};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,47 @@
/* XPM */
/* $XConsortium: popupwin.pm /main/1 1996/03/09 20:12:33 rws $ */
static char * popupwin_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 8 1 0 0",
/* colors */
" s iconGray4 m white c #949494949494",
". s iconColor1 m black c black",
"X s iconGray8 m black c #212121212121",
"o s iconGray2 m white c #bdbdbdbdbdbd",
"O c #C3C3C3C3C3C3",
"+ c #8C8C8C8C8C8C",
"@ c #D9D9D9D9D9D9",
"# c #7E7E7E7E7E7E",
/* pixels */
" . X",
" ooo . X",
" ooo . X",
" ... . .",
" . .",
"................................................",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . O+.",
" . @@@@@@@@@@@@. @@@@@@@@@@@@. @@@@@@@@@@@. O+.",
" . @###########. @###########. @##########. O+.",
" . @###########. @###########. @##########. O+.",
" . ............. ............. ............ O+.",
" .oOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO+.",
" .+++++++++++++++++++++++++++++++++++++++++++++.",
" ..............................................."};

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,48 @@
/* XPM */
/* $XConsortium: termpi.pm /main/1 1996/03/09 20:12:49 rws $ */
static char * term_pane_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 9 1 0 0",
/* colors */
" s iconGray4 m white c #949494949494",
". s iconColor1 m black c black",
"X c #7E7E7E7E7E7E",
"o c #CCCCCCCCCCCC",
"O s iconColor2 m white c white",
"+ c #C3C3C3C3C3C3",
"@ s iconGray1 m white c #dededededede",
"# c #8C8C8C8C8C8C",
"$ c #B7B7B7B7B7B7",
/* pixels */
" ",
" .................... X",
" .oooooooooooooooooooo. X",
" .OOOOOOOOOOOOOOOOOOOOOO. X",
" .O+++++++++++++++++++++. X",
" .O+XXXXXXXXXXXXXXXXXXX+. X",
" .O+X.................O+. X",
" .O+X.................O+. X",
" .O+X..@@@@@@@@.......O+. X",
" .O+X.................O+. X",
" .O+X.................O+. X",
" .O+X..@@@@@..........O+. X",
" .O+X.................O+. X",
" .O+X.................O+. X",
" .O+X..@@@@@@@@@@@@...O+. X",
" .O+X.................O+. X",
" .O+X.................O+. X",
" .O+XOOOOOOOOOOOOOOOOOO+. X",
" .O+++++++++++++++++++++. X",
" ...................... X",
" .XXXXXXXXXXXXXX. X",
" .. .. X",
" .............................. X",
" .############################. X",
" .ooo#oo#oo#oo#o#ooo#o#o#ooooo. X",
" .ooo#oo#oo#oo#oo#ooo#oo#o#ooooo. X",
" .oo#oo#ooooooooooooo#o#o#o#oooo. X",
" .$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$. X",
" .$##############################$. X",
" .................................. X",
" ................................ X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"};

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,50 @@
/* XPM */
/* $XConsortium: textpi.pm /main/1 1996/03/09 20:13:03 rws $ */
static char * text_pane_pm[] = {
/* width height ncolors cpp [x_hot y_hot] */
"48 32 11 1 0 0",
/* colors */
" s iconColor1 m black c black",
". s iconGray4 m white c #949494949494",
"X s iconGray2 m white c #bdbdbdbdbdbd",
"o s iconGray1 m white c #dededededede",
"O s iconGray6 m black c #636363636363",
"+ s iconColor2 m white c white",
"@ s iconGray3 m white c #adadadadadad",
"# c #B7B7B7B7B7B7",
"$ s iconGray8 m black c #212121212121",
"% s iconGray5 m black c #737373737373",
"& c #8C8C8C8C8C8C",
/* pixels */
" . ",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXX+++++++++++++++++++XXXXXXXXXXXXXXXXXXo. @#$X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXX+++++++++++XXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXX++++++++++++++++XXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXX+++++++++++++++++++++XXXXXXXXXXXXXXXXo. @%$X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXX+++++++++XXXXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. @%$X",
" XXX++++++++++++XXXXXXXXXXXXXXXXXXXXXXXXXo. X",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXX+++++++++++++++XXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo. OOOX",
" ooooooooooooooooooooooooooooooooooooooooo& OOOX",
".........................................&..XXXX",
" ......",
" OOOOOOOOOOXXXXXXXXXXXXXXXXXXXX$OOOOOOOOOOX.....",
" OOOOOOOOOOX...................$OOOOOOOOOOX.....",
" OOOOOOOOOO$$$$$$$$$$$$$$$$$$$$$OOOOOOOOOOX.....",
" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX....."};

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More