-fpermissive to allow GCC to compile old C++
[oweals/cde.git] / cde / programs / dtmail / dtmail / AlternatesListUiItem.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 /* $XConsortium: AlternatesListUiItem.C /main/3 1995/11/06 16:03:45 rswiston $ */
24 /*
25  *+SNOTICE
26  *
27  *      RESTRICTED CONFIDENTIAL INFORMATION:
28  *      
29  *      The information in this document is subject to special
30  *      restrictions in a confidential disclosure agreement bertween
31  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
32  *      document outside HP, IBM, Sun, USL, SCO, or Univel wihtout
33  *      Sun's specific written approval.  This documment and all copies
34  *      and derivative works thereof must be returned or destroyed at
35  *      Sun's request.
36  *
37  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
38  *
39  *+ENOTICE
40  */
41 #include "RoamApp.h"
42 #include <Xm/List.h>
43 #include <DtMail/options_util.h>
44 #include "options_ui.h"
45 #include <DtMail/PropUi.hh>
46 #include <DtMail/ListUiItem.hh>
47 #include <DtMail/AlternatesListUiItem.hh>
48
49 extern Boolean props_changed;
50 void handleAlternateSelection(Widget w, XtPointer clientdata, XtPointer calldata);
51
52 // AlternatesListUiItem::AlternatesListUiItem
53 // AlternatesListUiItem ctor
54 ////////////////////////////////////////////////////////////////////
55
56 AlternatesListUiItem::AlternatesListUiItem(Widget w, 
57                        int source, 
58                        char *search_key,
59                        Widget text_entry_widget):ListUiItem(w, source, search_key, NULL)
60 {
61   source = source; search_key = search_key;
62
63   entry_field_widget = text_entry_widget;
64
65   list_items = NULL;
66   deleted_items = NULL;
67
68   XtVaSetValues(w,
69         XmNuserData, this,
70         XmNautomaticSelection, True,
71         XmNselectionPolicy, XmBROWSE_SELECT,
72         NULL);
73
74     XtAddCallback(w,
75                 XmNbrowseSelectionCallback, 
76                 (XtCallbackProc)handleAlternateSelection,
77                   (XtPointer)this);
78 }
79
80 //---------------------------------------------------------------
81 void handleAlternateSelection(Widget w, XtPointer clientdata, XtPointer calldata)
82 {
83   AlternatesListUiItem *item;
84   XmListCallbackStruct *list_info = (XmListCallbackStruct *)calldata;
85   char *selection_string = NULL;
86   DtVirtArray<PropStringPair *> *list_items;
87   clientdata = clientdata;
88
89   XtVaGetValues(w, 
90         XmNuserData, &item,
91         NULL);  
92
93   list_items = item->getItemList();
94
95   if(list_items != NULL)
96     {
97       // motif index is 1 based
98       //virtarry is 0 based
99       PropStringPair *pair = (*list_items)[list_info->item_position - 1];
100
101       if(pair != NULL)
102         {
103           XtVaSetValues(item->getEntryFieldWidget(),
104                         XmNvalue,pair->label,
105                         NULL);
106
107         }       
108
109     }
110 }
111
112
113 // AlternatesListUiItem::writeFromUiToSource()
114 // Takes values in the UI and puts them into the source DB
115 ///////////////////////////////////////////////////////////////////
116 void AlternatesListUiItem::writeFromUiToSource()
117 {
118   Widget w = this->getWidget();
119   DtMailEnv error;
120   DtMail::Session * d_session = theRoamApp.session()->session();
121   DtMail::MailRc * mail_rc = d_session->mailRc(error);
122   int i, num_items;
123
124   if(deleted_items != NULL)
125     {
126       num_items = deleted_items->length();
127
128       for(i = 0; i < num_items; i++)
129         {
130           mail_rc->removeAlternate(error,(*deleted_items)[i]);
131         }
132     }
133
134   if(list_items != NULL)
135     {
136       num_items = list_items->length();
137       for(i = 0; i < num_items; i++)
138         {
139           mail_rc->setAlternate(error,(*list_items)[i]->label);
140         }
141     }
142   
143   if(deleted_items != NULL)
144     {
145       delete deleted_items;
146       deleted_items = NULL;
147     }
148 }
149
150 // AlternatesListUiItem::writeFromSourceToUi()
151 // Takes values in the UI and puts them into the source DB
152 ///////////////////////////////////////////////////////////////////
153 void AlternatesListUiItem::writeFromSourceToUi()
154 {
155   DtMailEnv error;
156   DtMail::Session * d_session = theRoamApp.session()->session();
157   DtMail::MailRc * mail_rc = d_session->mailRc(error);
158   Widget w = this->getWidget();
159   const char *list_str = NULL;
160   DtVirtArray<char *> *char_list = NULL;
161   PropStringPair *new_pair;
162   char *token, *buf = NULL;
163
164   XmListDeleteAllItems(w);
165
166   if(deleted_items != NULL)
167     {
168       delete deleted_items;
169       deleted_items = NULL;
170     }
171
172   if(list_items != NULL)
173   {
174     delete list_items;
175     list_items = NULL;
176   }
177
178   if ((list_str = mail_rc->getAlternates(error)) == NULL) {
179         list_str = strdup("");
180   }
181   
182   if ((buf = (char *) malloc(strlen(list_str) + 1)) == NULL)
183     return;
184   strcpy(buf, (char *)list_str);
185   
186   if((token = (char *) strtok(buf, " "))) 
187     {
188       list_items = new DtVirtArray<PropStringPair *>(10);
189       char_list = new DtVirtArray<char *>(10);
190
191       new_pair = new PropStringPair;
192       new_pair->label = strdup(token);
193       new_pair->value = NULL;
194       list_items->append(new_pair);
195
196       char_list->append(strdup(token));
197  
198       while(token = (char *)strtok(NULL, " "))
199         {
200           new_pair = new PropStringPair;
201           new_pair->label = strdup(token);
202           new_pair->value = NULL;
203           list_items->append(new_pair);
204
205           char_list->append(strdup(token)); 
206         }
207     }
208
209   options_list_init(w, char_list);
210
211   delete char_list;
212
213   if(list_str != NULL)
214     free((void *)list_str);
215
216   if(buf != NULL)
217     free((void *)buf);
218
219 }
220
221 ///////////////////////////////////////////////////////////
222 void AlternatesListUiItem::handleAddButtonPress()
223 {
224   Widget entry_field = this->getEntryFieldWidget();
225   char *test_str = NULL;
226   PropStringPair *new_pair = NULL;
227
228   XtVaGetValues(entry_field,
229                 XmNvalue, &test_str,
230                 NULL);
231
232   if(test_str != NULL)
233     if(strlen(test_str) > 1)
234       {
235         new_pair = new PropStringPair;
236         int *pos_list, num_pos;
237
238         new_pair->label = strdup(test_str);
239         new_pair->value = NULL;
240       
241         if(XmListGetSelectedPos(this->getWidget(),
242                                 &pos_list,
243                                 &num_pos))
244           {
245             if(list_items == NULL)
246               list_items = new DtVirtArray<PropStringPair *>(10);
247
248             list_items->insert(new_pair,pos_list[0] - 1); 
249             XmListAddItem(this->getWidget(),
250                           XmStringCreateLocalized(new_pair->label),
251                           pos_list[0]);
252             
253             XmListSelectPos(this->getWidget(),
254                             pos_list[0],
255                             TRUE);
256
257             XmListSetPos(this->getWidget(),
258                          pos_list[0]);
259           }     
260         else
261           {
262             if(list_items == NULL)
263               list_items = new DtVirtArray<PropStringPair *>(10);
264
265             list_items->insert(new_pair,0); 
266
267             XmListAddItem(this->getWidget(),
268                           XmStringCreateLocalized(new_pair->label),
269                           1);
270             XmListSelectPos(this->getWidget(),
271                             1,
272                             TRUE);
273             XmListSetPos(this->getWidget(),
274                          1);
275           }
276         props_changed = TRUE;
277       }
278 }
279 ///////////////////////////////////////////////////////////
280 void AlternatesListUiItem::handleChangeButtonPress()
281 {
282   Widget entry_field = this->getEntryFieldWidget();
283   char *test_str = NULL;
284   PropStringPair *new_pair = NULL;
285   XmString replace_string;
286   int *pos_list, num_pos;
287
288   // if nothing selected nothing to change...
289   if(XmListGetSelectedPos(this->getWidget(),
290                           &pos_list,
291                           &num_pos))
292     {
293       XtVaGetValues(entry_field,
294                     XmNvalue, &test_str,
295                     NULL);
296
297       if(test_str != NULL)
298         if(strlen(test_str) > 1)
299           {
300
301             new_pair = (*list_items)[pos_list[0] - 1];
302
303             if(deleted_items == NULL)
304               {
305                 deleted_items = new DtVirtArray<char *>(10);
306               } 
307
308             deleted_items->append(strdup((*list_items)[pos_list[0] -1]->label));
309
310             free(new_pair->label);
311             new_pair->label = strdup(test_str);
312
313             replace_string = XmStringCreateLocalized(new_pair->label);
314
315             XmListReplaceItemsPos(this->getWidget(),
316                                   &replace_string,
317                                   1,
318                                   pos_list[0]);
319
320             XmListSelectPos(this->getWidget(),
321                             pos_list[0],
322                             TRUE);
323           }
324         props_changed = TRUE;
325     }
326 }
327 ///////////////////////////////////////////////////////////
328 void AlternatesListUiItem::handleDeleteButtonPress()
329 {
330   Widget list_widget = this->getWidget();
331   int *p_list, p_count;
332
333   // get the selected position
334   if(XmListGetSelectedPos(list_widget,
335                           &p_list,
336                           &p_count))
337     {
338       
339       if(deleted_items == NULL)
340         {
341           deleted_items = new DtVirtArray<char *>(10);
342         }       
343
344       deleted_items->append(strdup((*list_items)[p_list[0] -1]->label));
345
346       // delete the item from our list 
347       this->list_items->remove(p_list[0] - 1); // remove only first
348
349       // delete the item from the widget
350       XmListDeletePos(list_widget, p_list[0]);
351
352       XtVaSetValues(this->getEntryFieldWidget(),
353                         XmNvalue,"",
354                         NULL);
355       XmListSelectPos(list_widget,
356                       p_list[0],
357                       TRUE);
358       
359       props_changed = TRUE;
360     }
361
362
363
364 }
365
366
367
368