-fpermissive to allow GCC to compile old C++
[oweals/cde.git] / cde / programs / dtmail / dtmail / XtArgCollector.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*
24  *+SNOTICE
25  *
26  *      $XConsortium: XtArgCollector.C /main/3 1996/04/21 19:53:08 drk $
27  *
28  *      RESTRICTED CONFIDENTIAL INFORMATION:
29  *      
30  *      The information in this document is subject to special
31  *      restrictions in a confidential disclosure agreement between
32  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
33  *      document outside HP, IBM, Sun, USL, SCO, or Univel without
34  *      Sun's specific written approval.  This document and all copies
35  *      and derivative works thereof must be returned or destroyed at
36  *      Sun's request.
37  *
38  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
39  *
40  *+ENOTICE
41  */
42
43 /*
44  *
45  * The XtArgCollector class is simply a dynamic array of Args.
46  * It is useful to build an ArgList to pass as an argument to
47  * XtSetValues.  This is a way to collect resources and values
48  * over several functions and then finally set them at another
49  * point.  This can help prevent multiple redisplays in widgets
50  * like XmList which don't have a DisableRedisplay convenience
51  * function like XmText.  It's a class for setting resources
52  * similar to the following:
53  *      n=0;
54  *      XtSetArg (args[n], XmNmarginHeight, 5); n++
55  *      XtSetValues (widget, args, n);
56  */
57
58
59 #include <stdlib.h>
60 #include <stdio.h>
61 #include "XtArgCollector.h"
62
63 XtArgCollector::XtArgCollector()
64 {
65     // Initialize the class variables
66     num_items = 0;
67     max_num_items = 0;
68     increment = 10;
69     list = NULL;
70 }
71
72 XtArgCollector::~XtArgCollector() 
73 {
74     // Free the list
75     XtFree ((char *)list);
76 }
77
78 void
79 XtArgCollector::AddItemToList (String name, XtArgVal value)
80 {
81     // Allocate memory for 10 items at a time.
82     // When this memory is exceeded, allocate
83     // space for 10 more.
84     if (num_items >= max_num_items)
85     {
86         max_num_items += increment;
87
88         list = (Arg *) XtRealloc ((char *)list, sizeof (Arg) *max_num_items);
89     }
90
91     XtSetArg(list[num_items], name, value);
92
93     num_items++;
94 }
95
96 //
97 // Perform an XtSetValues on the list of args
98 //
99 void
100 XtArgCollector::SetValues(Widget w)
101 {
102     XtSetValues (w, list, num_items);
103 }
104
105 //
106 // Get the list of args
107 //
108 Arg *
109 XtArgCollector::GetItems()
110 {
111     return (list);
112 }
113
114 //
115 // Get the number of items
116 //
117 int
118 XtArgCollector::GetNumItems()
119 {
120     return (num_items);
121 }
122
123