summaryrefslogtreecommitdiff
path: root/specs/Paned.xml
blob: e23802bcfcc3fe53c5573e0b3f50629d8100c61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
<sect1 id="Paned_Widget">
<title>Paned Widget</title>
<para>
<!-- .LP -->
<!-- .XS -->
<!-- 	Paned Widget -->
<!-- .XE -->
<indexterm significance="preferred"><primary>Paned widget</primary></indexterm>
<literallayout class="monospaced">
<!-- .TA 2.0i -->
<!-- .ta 2.0i -->
<!-- .sp -->
Application Header file	&lt;X11/Xaw/Paned.h&gt;
<indexterm><primary>Paned.h</primary></indexterm>
Class Header file	&lt;X11/Xaw/PanedP.h&gt;
<indexterm><primary>PanedP.h</primary></indexterm>
Class		panedWidgetClass
<indexterm><primary>panedWidgetClass</primary></indexterm>
Class Name	Paned
<indexterm><primary>Paned widget</primary><secondary>class name</secondary></indexterm>
Superclass	Constraint
<!-- .sp -->
</literallayout>
</para>
<para>
<!-- .LP -->
The Paned widget manages children in a vertically or horizontally
tiled fashion.  The panes may be dynamically resized by the user by
using the <emphasis remap='I'>grips</emphasis> that appear near the right or bottom edge of the
border between two panes.
</para>
<para>
<!-- .LP -->
The Paned widget may accept any widget class as a pane <function>except</function>
Grip.  Grip widgets have a special meaning for the Paned widget, and
adding a Grip as its own pane will confuse the Paned widget.
</para>
<sect2 id="Using_the_Paned_Widget">
<title>Using the Paned Widget</title>
<indexterm><primary>Paned widget</primary><secondary>using</secondary></indexterm>
<para>
<!-- .LP -->
The grips allow the panes to be resized by the user.  The semantics of
how these panes resize is somewhat complicated, and warrants further
explanation here.  When the mouse pointer is positioned on a grip and
pressed, an arrow is displayed that indicates the pane that is to be to
be resized.  While keeping the mouse button down, the user can move the
grip up and down (or left and right).  This, in turn, changes the size
of the pane.  The size of the Paned widget will not change.   Instead,
it chooses another pane (or panes) to resize. For more details on which
pane it chooses to resize, see <function>Layout Semantics</function>.
</para>
<para>
<!-- .LP -->
One pointer binding allows the border between two panes to be moved,
without affecting any of the other panes.  When this occurs the pointer
will change to an arrow that points along the pane border.
</para>
<para>
<!-- .LP -->
The default bindings for the Paned widget's grips are:
<informaltable>
  <tgroup cols='3' align='center'>
  <colspec colname='c1'/>
  <colspec colname='c2'/>
  <colspec colname='c3'/>
  <thead>
    <row>
      <entry>Mouse button</entry>
      <entry>Pane to Resize - Vertical</entry>
      <entry>Pane to Resize - Horizontal</entry>
    </row>
  </thead>
  <tbody>
    <row>
      <entry>1 (left)</entry>
      <entry>above the grip</entry>
      <entry>left of the grip</entry>
    </row>
    <row>
      <entry>2 (middle)</entry>
      <entry>adjust border</entry>
      <entry>adjust border</entry>
    </row>
    <row>
      <entry>3 (right)</entry>
      <entry>below the grip</entry>
      <entry>right of the grip</entry>
    </row>
    <row>
      <entry>_</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>
</para>
</sect2>
<sect2 id='Paned::Resources'>
<title>Resources</title>
<para>
<!-- .LP -->
When creating a Paned widget instance, the following resources are
retrieved from the argument list or the resource database:
</para>
<para>
<!-- .LP -->
<indexterm><primary>Paned widget</primary><secondary>resources</secondary></indexterm>
<informaltable>
  <tgroup cols='5' align='center'>
  <colspec colname='c1'/>
  <colspec colname='c2'/>
  <colspec colname='c3'/>
  <colspec colname='c4'/>
  <colspec colname='c5'/>
  <thead>
    <row>
      <entry>Name</entry>
      <entry>Class</entry>
      <entry>Type</entry>
      <entry>Notes</entry>
      <entry>Default Value</entry>
    </row>
  </thead>
  <tbody>
    <row>
      <entry>accelerators</entry>
      <entry>Accelerators</entry>
      <entry>AcceleratorTable</entry>
      <entry></entry>
      <entry>NULL</entry>
    </row>
    <row>
      <entry>ancestorSensitive</entry>
      <entry>AncestorSensitive</entry>
      <entry>Boolean</entry>
      <entry>D</entry>
      <entry>True</entry>
    </row>
    <row>
      <entry>background</entry>
      <entry>Background</entry>
      <entry>Pixel</entry>
      <entry></entry>
      <entry>XtDefaultBackground</entry>
    </row>
    <row>
      <entry>backgroundPixmap</entry>
      <entry>Pixmap</entry>
      <entry>Pixmap</entry>
      <entry></entry>
      <entry>XtUnspecifiedPixmap</entry>
    </row>
    <row>
      <entry>betweenCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry>A</entry>
      <entry>Depends on orientation</entry>
    </row>
    <row>
      <entry>borderColor</entry>
      <entry>BorderColor</entry>
      <entry>Pixel</entry>
      <entry></entry>
      <entry>XtDefaultForeground</entry>
    </row>
    <row>
      <entry>borderPixmap</entry>
      <entry>Pixmap</entry>
      <entry>Pixmap</entry>
      <entry></entry>
      <entry>XtUnspecifiedPixmap</entry>
    </row>
    <row>
      <entry>borderWidth</entry>
      <entry>BorderWidth</entry>
      <entry>Dimension</entry>
      <entry></entry>
      <entry>1</entry>
    </row>
    <row>
      <entry>children</entry>
      <entry>ReadOnly</entry>
      <entry>WidgetList</entry>
      <entry>R</entry>
      <entry>NULL</entry>
    </row>
    <row>
      <entry>colormap</entry>
      <entry>Colormap</entry>
      <entry>Colormap</entry>
      <entry></entry>
      <entry>Parent's Colormap</entry>
    </row>
    <row>
      <entry>cursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>None</entry>
    </row>
    <row>
      <entry>depth</entry>
      <entry>Depth</entry>
      <entry>int</entry>
      <entry>C</entry>
      <entry>Parent's Depth</entry>
    </row>
    <row>
      <entry>destroyCallback</entry>
      <entry>Callback</entry>
      <entry>XtCallbackList</entry>
      <entry></entry>
      <entry>NULL</entry>
    </row>
    <row>
      <entry>gripCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry>A</entry>
      <entry>Depends on orientation</entry>
    </row>
    <row>
      <entry>gripIndent</entry>
      <entry>GripIndent</entry>
      <entry>Position</entry>
      <entry></entry>
      <entry>10</entry>
    </row>
    <row>
      <entry>gripTranslations</entry>
      <entry>Translations</entry>
      <entry>TranslationTable</entry>
      <entry></entry>
      <entry>see below</entry>
    </row>
    <row>
      <entry>height</entry>
      <entry>Height</entry>
      <entry>Dimension</entry>
      <entry>A</entry>
      <entry>Depends on orientation</entry>
    </row>
    <row>
      <entry>horizontalBetweenCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_up_arrow</entry>
    </row>
    <row>
      <entry>horizontalGripCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_h_double_arrow</entry>
    </row>
    <row>
      <entry>internalBorderColor</entry>
      <entry>BorderColor</entry>
      <entry>Pixel</entry>
      <entry></entry>
      <entry>XtDefaultForeground</entry>
    </row>
    <row>
      <entry>internalBorderWidth</entry>
      <entry>BorderWidth</entry>
      <entry>Dimension</entry>
      <entry></entry>
      <entry>1</entry>
    </row>
    <row>
      <entry>leftCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_left_arrow</entry>
    </row>
    <row>
      <entry>lowerCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_down_arrow</entry>
    </row>
    <row>
      <entry>mappedWhenManaged</entry>
      <entry>MappedWhenManaged</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>True</entry>
    </row>
    <row>
      <entry>numChildren</entry>
      <entry>ReadOnly</entry>
      <entry>Cardinal</entry>
      <entry>R</entry>
      <entry>0</entry>
    </row>
    <row>
      <entry>orientation</entry>
      <entry>Orientation</entry>
      <entry>Orientation</entry>
      <entry></entry>
      <entry>XtorientVertical</entry>
    </row>
    <row>
      <entry>refigureMode</entry>
      <entry>Boolean</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>True</entry>
    </row>
    <row>
      <entry>rightCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_right_arrow</entry>
    </row>
    <row>
      <entry>screen</entry>
      <entry>Screen</entry>
      <entry>Screen</entry>
      <entry>R</entry>
      <entry>Parent's Screen</entry>
    </row>
    <row>
      <entry>sensitive</entry>
      <entry>Sensitive</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>True</entry>
    </row>
    <row>
      <entry>translations</entry>
      <entry>Translations</entry>
      <entry>TranslationTable</entry>
      <entry></entry>
      <entry>NULL</entry>
    </row>
    <row>
      <entry>upperCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_up_arrow</entry>
    </row>
    <row>
      <entry>verticalBetweenCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_left_arrow</entry>
    </row>
    <row>
      <entry>verticalGripCursor</entry>
      <entry>Cursor</entry>
      <entry>Cursor</entry>
      <entry></entry>
      <entry>sb_v_double_arrow</entry>
    </row>
    <row>
      <entry>width</entry>
      <entry>Width</entry>
      <entry>Dimension</entry>
      <entry>A</entry>
      <entry>Depends on orientation</entry>
    </row>
    <row>
      <entry>x</entry>
      <entry>Paned</entry>
      <entry>Position</entry>
      <entry></entry>
      <entry>0</entry>
    </row>
    <row>
      <entry>y</entry>
      <entry>Paned</entry>
      <entry>Position</entry>
      <entry></entry>
      <entry>0</entry>
    </row>
    <row>
      <entry>_</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>
<!-- .Ac -->
<!-- .As -->
<!-- .Bg -->
<!-- .Gp -->
<!-- .Bc -->
<!-- .Bp -->
<!-- .Bw -->
<!-- .Ch -->
<!-- .Cm -->
<variablelist>
  <varlistentry>
    <term>
      <function>cursor</function>
    </term>
    <listitem>
      <para>
The cursor to use when the mouse pointer is over the Paned widget, but
not in any of its children (children may also inherit this cursor).  It
should be noted that the internal borders are actually part of the Paned
widget, not the children.
<!-- .Dp -->
<!-- .Dc -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>gripCursor</function>
    </term>
    <listitem>
      <para>
The cursor to use when the grips are not active.  The default value is
<function>verticalGripCursor</function> or <function>horizontalGripCursor</function> depending on
the orientation of the Paned widget.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>gripIndent</function>
    </term>
    <listitem>
      <para>
The amount of space left between the right (or bottom) edge of the
Paned widget and all the grips.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>gripTranslation</function>
    </term>
    <listitem>
      <para>
Translation table that will be applied to all grips.
<!-- .Hw -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>horizontalBetweenCursor</function>
    </term>
    <listitem>
      <para>
<!-- .br -->
<!-- .ns -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>verticalBetweenCursor</function>
    </term>
    <listitem>
      <para>
The cursor to be used for the grip when changing the boundary between
two panes.  These resources allow the cursors to be different
depending on the orientation of the Paned widget.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>horizontalGripCursor</function>
    </term>
    <listitem>
      <para>
<!-- .br -->
<!-- .ns -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>verticalGripCursor</function>
    </term>
    <listitem>
      <para>
The cursor to be used for the grips when they are not active. These
resources allow the cursors to be different depending on the
orientation of the Paned widget.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>internalBorderColor</function>
    </term>
    <listitem>
      <para>
A pixel value which indexes the widget's colormap to derive the internal
border color of the widget's window.  The class name of this resource
allows <emphasis remap='I'>Paned*BorderColor: blue</emphasis> to set the internal border color
for the Paned widget.  An optimization is invoked if
<function>internalBorderColor</function> and <function>background</function> are the same, and the
internal borders are not drawn.  <function>internalBorderWidth</function> is still left
between the panes, however.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>internalBorderWidth</function>
    </term>
    <listitem>
      <para>
The width of the internal borders.  This is the amount of space left
between the panes.  The class name of this resource allows
<emphasis remap='I'>Paned*BorderWidth: 3</emphasis> to set the internal border width for the
Paned widget.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>leftCursor</function>
    </term>
    <listitem>
      <para>
<!-- .br -->
<!-- .ns -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>rightCursor</function>
    </term>
    <listitem>
      <para>
The cursor used to indicate which is the <emphasis remap='I'>important</emphasis> pane to resize
when the Paned widget is oriented horizontally.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>lowerCursor</function>
    </term>
    <listitem>
      <para>
<!-- .br -->
<!-- .ns -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>upperCursor</function>
    </term>
    <listitem>
      <para>
The cursor used to indicate which is the <emphasis remap='I'>important</emphasis> pane to resize
when the Paned widget is oriented vertically.
<!-- .Mm -->
<!-- .Nc -->
This is not the same as the number of panes, since this also contains a
grip for some of the panes, use <xref linkend='XawPanedGetNumSub' xrefstyle='select: title'/> to retrieve the
number of panes.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>orientation</function>
    </term>
    <listitem>
      <para>
The orientation to stack the panes.  This value can be either
<function>XtorientVertical</function> or <function>XtorientHorizontal</function>.
<indexterm><primary>XtorientVertical</primary></indexterm>
<indexterm><primary>XtorientHorizontal</primary></indexterm>
<indexterm><primary>conversions</primary><secondary>Orientation</secondary></indexterm>
<!-- .Rs "vertical \fPand\fB horizontal" -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>refigureMode</function>
    </term>
    <listitem>
      <para>
This resource allows pane layout to be suspended.  If this value is
<function>False</function>, then no layout actions will be taken.  This may improve
efficiency when adding or removing more than one pane from the Paned
widget.
<!-- .Sc -->
<!-- .Se -->
<!-- .Tr -->
<!-- .Xy -->
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
</sect2>
<sect2 id='Paned::Constraint_Resources'>
<title>Constraint Resources</title>
<para>
<!-- .LP -->
<indexterm><primary>Paned widget</primary><secondary>constraint resources</secondary></indexterm>
Each child of the Paned widget may request special layout resources
be applied to it.  These <emphasis remap='I'>constraint</emphasis> resources allow the Paned
widget's children to specify individual layout requirements.
</para>
<para>
<!-- .LP -->
<informaltable>
  <tgroup cols='5' align='center'>
  <colspec colname='c1'/>
  <colspec colname='c2'/>
  <colspec colname='c3'/>
  <colspec colname='c4'/>
  <colspec colname='c5'/>
  <thead>
    <row>
      <entry>Name</entry>
      <entry>Class</entry>
      <entry>Type</entry>
      <entry>Notes</entry>
      <entry>Default Value</entry>
    </row>
  </thead>
  <tbody>
    <row>
      <entry>allowResize</entry>
      <entry>Boolean</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>False</entry>
    </row>
    <row>
      <entry>max</entry>
      <entry>Max</entry>
      <entry>Dimension</entry>
      <entry></entry>
      <entry>Infinity</entry>
    </row>
    <row>
      <entry>min</entry>
      <entry>Min</entry>
      <entry>Dimension</entry>
      <entry></entry>
      <entry>Height of Grips</entry>
    </row>
    <row>
      <entry>preferredPaneSize</entry>
      <entry>PreferredPaneSize</entry>
      <entry>Dimension</entry>
      <entry></entry>
      <entry>ask child</entry>
    </row>
    <row>
      <entry>resizeToPreferred</entry>
      <entry>Boolean</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>False</entry>
    </row>
    <row>
      <entry>showGrip</entry>
      <entry>ShowGrip</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>True</entry>
    </row>
    <row>
      <entry>skipAdjust</entry>
      <entry>Boolean</entry>
      <entry>Boolean</entry>
      <entry></entry>
      <entry>False</entry>
    </row>
    <row>
      <entry>_</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>
<variablelist>
  <varlistentry>
    <term>
      <function>allowResize</function>
    </term>
    <listitem>
      <para>
If this value is <function>False</function> the the Paned widget will disallow all
geometry requests from this child.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>max</function>
    </term>
    <listitem>
      <para>
<!-- .br -->
<!-- .ns -->
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>min</function>
    </term>
    <listitem>
      <para>
The absolute maximum or minimum size for this pane.  These values will
never be overridden by the Paned widget.  This may cause some panes to be
pushed off the bottom (or right) edge of the paned widget.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>preferredPaneSize</function>
    </term>
    <listitem>
      <para>
Normally the paned widget makes a QueryGeometry call on a child to
determine the preferred size of the child's pane.  There are times
when the application programmer or the user has a better idea of the
preferred size of a pane.  Setting this resource causes the value
passed to be interpreted as the preferred size, in pixels, of this pane.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>resizeToPreferred</function>
    </term>
    <listitem>
      <para>
Determines whether or not to resize each pane to its preferred size
when the Paned widget is resized.  See <function>Layout Semantics</function> for details.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>showGrip</function>
    </term>
    <listitem>
      <para>
If <function>True</function> then a grip will be shown for this pane.  The grip
associated with a pane is either below or to the right of the pane.  No
grip is ever shown for the last pane.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>skipAdjust</function>
    </term>
    <listitem>
      <para>
This resource is used to determine which pane is forced to be resized.
Setting this value to <function>True</function> makes this pane less likely to be
forced to be resized.  See <function>Layout Semantics</function> for details.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
</sect2>
<sect2 id='Paned::Layout_Semantics'>
<title>Layout Semantics</title>
<para>
<!-- .LP -->
<indexterm><primary>Paned widget</primary><secondary>layout semantics</secondary></indexterm>
In order to make effective use of the Paned widget it is helpful to know
the rules it uses to determine which child will be resized in any given
situation.  There are three rules used to determine which child is
resized.  While these rules are always the same, the panes that are
searched can change depending upon what caused the relayout.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<function>Layout Rules</function>
<variablelist>
  <varlistentry>
    <term>
      <function>1</function>
    </term>
    <listitem>
      <para>
Do not let a pane grow larger than its <function>max</function> or smaller than its
<function>min</function>.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>2</function>
    </term>
    <listitem>
      <para>
Do not adjust panes with <function>skipAdjust</function> set.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>3</function>
    </term>
    <listitem>
      <para>
Do not adjust panes away from their preferred size, although moving one
closer to its preferred size is fine.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
<!-- .LP -->
When searching the children the Paned widget looks for panes that
satisfy all the rules, and if unsuccessful then it eliminates rule 3
and then 2.  Rule 1 is always enforced.
</para>
<para>
<!-- .LP -->
If the relayout is due to a resize or change in management then the
panes are searched from bottom to top.  If the relayout is due to grip
movement then they are searched from the grip selected in the direction
opposite the pane selected.
</para>
<sect3 id="Resizing_Panes_from_a_Grip_Action">
<title>Resizing Panes from a Grip Action</title>
<para>
<!-- .LP -->
The pane above the grip is resized by invoking the GripAction with
<function>UpLeftPane</function> specified.  The panes below the grip are each checked
against all rules, then rules 2 and 1 and finally against rule 1 only.
No pane above the chosen pane will ever be resized.
</para>
<para>
<!-- .LP -->
The pane below the grip is resized by invoking the GripAction with
<function>LowRightPane</function> specified.  The panes above the grip are each
checked in this case.  No pane below the chosen pane will ever be resized.
</para>
<para>
<!-- .LP -->
Invoking GripAction with <function>ThisBorderOnly</function> specified just moves the
border between the panes.  No other panes are ever resized.
</para>
</sect3>
<sect3 id='Resizing_Panes_after_the_Paned_widget_is_resized'>
<title>Resizing Panes after the Paned widget is resized.</title>
<para>
<!-- .LP -->
When the Pane widget is resized it must determine a new size for each
pane.  There are two methods of doing this.  The Paned widget can either
give each pane its preferred size and then resize the panes to fit, or
it can use the current sizes and then resize the panes to fit.  The
<function>resizeToPreferred</function> resource allows the application to tell the
Paned widget whether to query the child about its preferred size
(subject to the the <function>preferredPaneSize</function>) or to use the current size
when refiguring the pane locations after the pane has been resized.
</para>
<para>
<!-- .LP -->
There is one special case.  All panes assume they should resize to
their preferred size until the Paned widget becomes visible to the user.
</para>
</sect3>
<sect3 id="Managing_Children_and_Geometry_Management">
<title>Managing Children and Geometry Management</title>
<para>
<!-- .LP -->
The Paned widget always resizes its children to their preferred sizes when
a new child is managed, or a geometry management request is honored.
The Paned widget will first attempt to resize itself to contain its
panes exactly.  If this is not possible then it will hunt through the
children, from bottom to top (right to left), for a pane to resize.
</para>
</sect3>
<sect3 id='Paned::Special_Considerations'>
<title>Special Considerations</title>
<para>
<!-- .LP -->
When a user resizes a pane with the grips, the Paned widget assumes that
this new size is the preferred size of the pane.
</para>
</sect3>
</sect2>
<sect2 id="Grip_Translations">
<title>Grip Translations</title>
<para>
<!-- .LP -->
The Paned widget has no action routines of its own, as all actions are
handled through the grips.  The grips are each assigned a default
Translation table.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<literallayout class="monospaced">
<!-- .TA .5i 2.25i -->
<!-- .ta .5i 2.25i -->
	&lt;Btn1Down&gt;:	GripAction(Start, UpLeftPane)
<indexterm><primary>GripAction</primary></indexterm>
	&lt;Btn2Down&gt;:	GripAction(Start, ThisBorderOnly)
	&lt;Btn3Down&gt;:	GripAction(Start, LowRightPane)
	&lt;Btn1Motion&gt;:	GripAction(Move, UpLeftPane)
	&lt;Btn2Motion&gt;:	GripAction(Move, ThisBorderOnly)
	&lt;Btn3Motion&gt;:	GripAction(Move, LowRightPane)
	Any&lt;BtnUp&gt;:	GripAction(Commit)
</literallayout>
<!-- .sp -->
</para>
<para>
<!-- .LP -->
The Paned widget interprets the <function>GripAction</function> as taking two arguments.
<indexterm><primary>GripAction</primary></indexterm>
The first argument may be any of the following:
<variablelist>
  <varlistentry>
    <term>
      <function>Start</function>
    </term>
    <listitem>
      <para>
Sets up the Paned widget for resizing and changes the cursor of the
grip.  The second argument determines which pane will be resized, and
can take on any of the three values shown above.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>Move</function>
    </term>
    <listitem>
      <para>
The internal borders are drawn over the current pane locations to
animate where the borders would actually be placed if you were to move
this border as shown.  The second argument must match the second argument
that was passed to the <function>Start</function> action, that began this process.  If
these arguments are not passed, the behavior is undefined.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <function>Commit</function>
    </term>
    <listitem>
      <para>
This argument causes the Paned widget to commit the changes selected
by the previously started action.  The cursor is changed back to the
grip's inactive cursor.  No second argument is needed in this case.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
</sect2>
<sect2 id='Paned::Convenience_Routines'>
<title>Convenience Routines</title>
<para>
<!-- .LP -->
<indexterm><primary>Paned widget</primary><secondary>enable pane resizing</secondary></indexterm>
<indexterm><primary>Paned widget</primary><secondary>disable pane resizing</secondary></indexterm>
To enable or disable a child's request for pane resizing,
use
<function>XawPanedAllowResize :</function>
<indexterm significance="preferred"><primary>XawPanedAllowResize</primary></indexterm>
<funcsynopsis id='XawPanedAllowResize'>
<funcprototype>
  <funcdef>void<function> XawPanedAllowResize</function></funcdef>
  <paramdef>Widget<parameter> w</parameter></paramdef>
  <paramdef>Boolean<parameter> allow_resize</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<!-- .FN -->
<variablelist>
  <varlistentry>
    <term>
      <emphasis remap='I'>w</emphasis>
    </term>
    <listitem>
      <para>
Specifies the child pane.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <emphasis remap='I'>allow_resize</emphasis>
    </term>
    <listitem>
      <para>
Specifies whether or not resizing requests for this child will be
granted by the Paned widget.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
<!-- .LP -->
If allow_resize is <function>True</function>, the Paned widget allows geometry
requests from the child to change the pane's height. If allow_resize
is <function>False</function>, the Paned widget ignores geometry requests from the
child to change the pane's height. The default state is <function>True</function>
before the Pane is realized and <function>False</function> after it is realized.
This procedure is equivalent to changing the <function>allowResize</function>
constraint resource for the child.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<indexterm><primary>Paned widget</primary><secondary>change height settings</secondary></indexterm>
To change the minimum and maximum height settings for a pane, use
<function>XawPanedSetMinMax :</function>
<indexterm significance="preferred"><primary>XawPanedSetMinMax</primary></indexterm>
<funcsynopsis id='XawPanedSetMinMax'>
<funcprototype>
  <funcdef>void<function> XawPanedSetMinMax</function></funcdef>
  <paramdef>Widget<parameter> w</parameter></paramdef>
  <paramdef>intmin,<parameter> max</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<!-- .FN -->
<variablelist>
  <varlistentry>
    <term>
      <emphasis remap='I'>w</emphasis>
    </term>
    <listitem>
      <para>
Specifies the child pane.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <emphasis remap='I'>min</emphasis>
    </term>
    <listitem>
      <para>
Specifies the new minimum height of the child, expressed in pixels.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <emphasis remap='I'>max</emphasis>
    </term>
    <listitem>
      <para>
Specifies new maximum height of the child, expressed in pixels.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
<!-- .LP -->
This procedure is equivalent to setting the <function>min</function> and <function>max</function>
constraint resources for the child.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<indexterm><primary>Paned widget</primary><secondary>get height settings</secondary></indexterm>
To retrieve the minimum and maximum height settings for a pane, use
<function>XawPanedGetMinMax :</function>
<indexterm significance="preferred"><primary>XawPanedGetMinMax</primary></indexterm>
<funcsynopsis id='XawPanedGetMinMax'>
<funcprototype>
  <funcdef>void<function> XawPanedGetMinMax</function></funcdef>
  <paramdef>Widget<parameter> w</parameter></paramdef>
  <paramdef>int*min_return,<parameter> *max_return</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<!-- .FN -->
<variablelist>
  <varlistentry>
    <term>
      <emphasis remap='I'>w</emphasis>
    </term>
    <listitem>
      <para>
Specifies the child pane.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <emphasis remap='I'>min_return</emphasis>
    </term>
    <listitem>
      <para>
Returns the minimum height of the child, expressed in pixels.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <emphasis remap='I'>max_return</emphasis>
    </term>
    <listitem>
      <para>
Returns the maximum height of the child, expressed in pixels.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
<!-- .LP -->
This procedure is equivalent to getting the <function>min</function> and <function>max</function>
resources for this child child.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<indexterm><primary>Paned widget</primary><secondary>enable auto-reconfiguring</secondary></indexterm>
<indexterm><primary>Paned widget</primary><secondary>disable auto-reconfiguring</secondary></indexterm>
To enable or disable automatic recalculation of pane sizes and positions,
use
<function>XawPanedSetRefigureMode :</function>
<indexterm significance="preferred"><primary>XawPanedSetRefigureMode</primary></indexterm>
<funcsynopsis id='XawPanedSetRefigureMode'>
<funcprototype>
  <funcdef>void<function> XawPanedSetRefigureMode</function></funcdef>
  <paramdef>Widget<parameter> w</parameter></paramdef>
  <paramdef>Boolean<parameter> mode</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<!-- .FN -->
<variablelist>
  <varlistentry>
    <term>
      <emphasis remap='I'>w</emphasis>
    </term>
    <listitem>
      <para>
Specifies the Paned widget.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>
      <emphasis remap='I'>mode</emphasis>
    </term>
    <listitem>
      <para>
Specifies whether the layout of the Paned widget is enabled (<function>True</function>)
or disabled (<function>False</function>).
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
<!-- .LP -->
When making several changes to the children of a Paned widget
after the Paned has been realized, it is a good idea to disable
relayout until after all changes have been made.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<indexterm><primary>Paned widget</primary><secondary>getting the number of children</secondary></indexterm>
To retrieve the number of panes in a paned widget use
<xref linkend='XawPanedGetNumSub' xrefstyle='select: title'/>:
<indexterm significance="preferred"><primary>XawPanedGetNumSub</primary></indexterm>
<funcsynopsis id='XawPanedGetNumSub'>
<funcprototype>
  <funcdef>int<function> XawPanedGetNumSub</function></funcdef>
  <paramdef>Widget<parameter> w</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<!-- .FN -->
<variablelist>
  <varlistentry>
    <term>
      <emphasis remap='I'>w</emphasis>
    </term>
    <listitem>
      <para>
Specifies the Paned widget.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
<!-- .LP -->
This function returns the number of panes in the Paned widget.  This is
<function>not</function> the same as the number of children, since the grips are also
children of the Paned widget.

</para>
</sect2>
</sect1>