Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

DwtMainSetAreas(3Dwt)

Name

DwtMainSetAreas − Sets up or adds the menu bar, command window, work window, and scroll bar widgets to the main window widget of the application. 

Syntax

void DwtMainSetAreas(widget, menu_bar, work_window,
                     command_window, horizontal_scroll_bar,
                     vertical_scroll_bar)
     Widget widget;
     Widget menu_bar;
     Widget work_window, command_window;
     Widget horizontal_scroll_bar, vertical_scroll_bar;

Arguments

widgetSpecifies the main window widget ID. 

menu_barSpecifies the widget ID for the menu bar to be associated with the main window widget.  You can set this ID only after creating an instance of the main window widget.  The attribute name associated with this argument is DwtNmenuBar. 

work_window
Specifies the widget ID for the work window to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNworkWindow. 

command_window
Specifies the widget ID for the command window to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNcommandWindow. 

horizontal_scroll_bar
Specifies the scroll bar widget ID for the horizontal scroll bar to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNhorizontalScrollBar. 

vertical_scroll_bar
Specifies the scroll bar widget ID for the vertical scroll bar to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNverticalScrollBar. 

Description

The DwtMainSetAreas function sets up or adds the menu bar, work window, command window, and scroll bar widgets to the application’s main window widget.  You must set these areas up before the main window widget is realized, that is, before calling the X intrinsics function XtRealizeWidget. 

Each area is optional; therefore, you can pass NULL to one or more of these arguments.  The title bar is provided by the window manager. 

See Also

Guide to the XUI Toolkit: C Language Binding
Guide to the XUI Toolkit Intrinsics: C Language Binding

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026