dthelp: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / dtmail / dtmail / XmStrCollector.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 libraries 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  *      $TOG: XmStrCollector.C /main/4 1997/09/04 09:18:11 mgreess $
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  * The XmStrCollector class is simply a dynamic array of XmStrings.
45  * It is useful to build an XmStringTable to pass as an argument to
46  * any Motif widget that needs one (eg. XmList).
47  */
48 #include <Xm/List.h>
49 #include <stdlib.h>
50 #include <stdio.h>
51 #include "XmStrCollector.h"
52
53 XmStrCollector::XmStrCollector()
54 {
55     // Initialize the class variables
56     num_items = 0;
57     max_num_items = 0;
58     increment = 10;
59     list = NULL;
60 }
61
62 XmStrCollector::~XmStrCollector() 
63 {
64     // Free the list items
65     for (int i=0; i<num_items; i++)
66         XmStringFree (list[i]);
67
68     // Free the list
69     XtFree ((char *)list);
70 }
71
72 //
73 // Add an item to the string collector list
74 //
75 void
76 XmStrCollector::AddItemToList (XmString item)
77 {
78     // Allocate memory for 10 items at a time.
79     // When this memory is exceeded, allocate
80     // space for 10 more.  
81     if (num_items >= max_num_items)
82     {
83         max_num_items += increment;
84  
85         list = (XmString *) XtRealloc ((char *)list,
86                 sizeof (XmString) *max_num_items);
87     }
88  
89     list[num_items] = item;
90
91     num_items++;
92 }
93
94 //
95 // Get the XmStringTable
96 //
97 XmString *
98 XmStrCollector::GetItems()
99 {
100     return (list);
101 }
102
103 //
104 // Get the number of items
105 // in the XmStringTable
106 //
107 int
108 XmStrCollector::GetNumItems()
109 {
110     return (num_items);
111 }
112
113