0

I have a Motif client (running it on Linux). The client displays an array of buttons to the user in a tabular fashion. Obvious choice is the RowColumn widget. I want scrollbars around the array of buttons so I created a ScrolledWidget and place the RowColumn widget inside. I also place a Frame widget around the Row column widget to make it stand out.

Now, the problem. I want to put a button OUTSIDE the array of widgets for Quit. Problem is it not displaying the button. Is this doable?

Any sample code to do this is appreciated.

Ingo Bürk
  • 19,263
  • 6
  • 66
  • 100
user3053087
  • 87
  • 1
  • 7

1 Answers1

1

XmForm contains: XmPushButton (exit) XmScrolledWindow contains: XmFrame contains XmRowColumn contains: array of XmPushButtons

Set up the connections for the XmForm to place the exit button and scrolled window appropriately.

FredK
  • 4,094
  • 1
  • 9
  • 11