home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / DestroyCB.C < prev    next >
C/C++ Source or Header  |  1998-05-08  |  3KB  |  111 lines

  1. // $Id: DestroyCB.C,v 1.16 1998/05/08 13:25:18 zeller Exp $
  2. // Destroy Callbacks
  3.  
  4. // Copyright (C) 1995-1998 Technische Universitaet Braunschweig, Germany.
  5. // Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  6. // 
  7. // This file is part of DDD.
  8. // 
  9. // DDD is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. // 
  14. // DDD is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. // See the GNU General Public License for more details.
  18. // 
  19. // You should have received a copy of the GNU General Public
  20. // License along with DDD -- see the file COPYING.
  21. // If not, write to the Free Software Foundation, Inc.,
  22. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. // 
  24. // DDD is the data display debugger.
  25. // For details, see the DDD World-Wide-Web page, 
  26. // `http://www.cs.tu-bs.de/softech/ddd/',
  27. // or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  28.  
  29. char DestroyCB_rcsid[] = 
  30.     "$Id: DestroyCB.C,v 1.16 1998/05/08 13:25:18 zeller Exp $";
  31.  
  32. #include "DestroyCB.h"
  33. #include "TimeOut.h"
  34. #include <Xm/DialogS.h>
  35. #include <Xm/Xm.h>
  36.  
  37. static void CancelTimer(Widget, XtPointer client_data, XtPointer)
  38. {
  39.     XtIntervalId id = XtIntervalId(client_data);
  40.     XtRemoveTimeOut(id);
  41. }
  42.  
  43. static void DestroyCB(XtPointer client_data, XtIntervalId *id)
  44. {
  45.     Widget w = Widget(client_data);
  46.  
  47.     if (w != 0)
  48.     {
  49.     XtRemoveCallback(w, XmNdestroyCallback, CancelTimer, XtPointer(*id));
  50.     XtDestroyWidget(w);
  51.     }
  52. }
  53.  
  54. // Destroy WIDGET as soon as we are idle
  55. void DestroyWhenIdle(Widget widget)
  56. {
  57.     XtIntervalId id = 
  58.     XtAppAddTimeOut(XtWidgetToApplicationContext(widget), 0, DestroyCB, 
  59.             XtPointer(widget));
  60.  
  61.     // Should WIDGET be destroyed beforehand, cancel the timer
  62.     XtAddCallback(widget, XmNdestroyCallback, CancelTimer, XtPointer(id));
  63. }
  64.  
  65.  
  66. // Callbacks
  67.  
  68. // Destroy the ancestor shell
  69. void DestroyShellCB(Widget widget, XtPointer, XtPointer call_data)
  70. {
  71.     Widget w = widget;
  72.  
  73.     while (w != 0 && !XtIsShell(XtParent(w)))
  74.     w = XtParent(w);
  75.  
  76.     DestroyThisCB(widget, XtPointer(w), call_data);
  77. }
  78.  
  79. // Destroy specific widget
  80. void DestroyThisCB(Widget, XtPointer client_data, XtPointer)
  81. {
  82.     Widget w = Widget(client_data);
  83.     DestroyWhenIdle(w);
  84. }
  85.  
  86. // Unmanage the ancestor shell
  87. void UnmanageShellCB(Widget widget, XtPointer, XtPointer call_data)
  88. {
  89.     Widget w = widget;
  90.  
  91.     while (w != 0 && !XtIsShell(XtParent(w)))
  92.     w = XtParent(w);
  93.  
  94.     UnmanageThisCB(widget, XtPointer(w), call_data);
  95. }
  96.  
  97. // Unmanage specific widget
  98. void UnmanageThisCB(Widget, XtPointer client_data, XtPointer)
  99. {
  100.     Widget w = Widget(client_data);
  101.  
  102.     Widget shell = w;
  103.     if (!XtIsShell(shell))
  104.     shell = XtParent(shell);
  105.  
  106.     if (shell != 0 && XtIsShell(shell) && !XmIsDialogShell(shell))
  107.     XtPopdown(shell);
  108.  
  109.     XtUnmanageChild(w);
  110. }
  111.