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 / mydialogs.h < prev    next >
C/C++ Source or Header  |  1998-11-23  |  3KB  |  89 lines

  1. // $Id: mydialogs.h,v 1.20 1998/11/23 17:43:47 zeller Exp $
  2. // Create dialogs to select display expressions
  3.  
  4. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  5. // Written by Dorothea Luetkehaus <luetke@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. //-----------------------------------------------------------------------------
  30. // Create dialogs to select display expressions
  31. //-----------------------------------------------------------------------------
  32.  
  33. #ifndef _DDD_mydialogs_h
  34. #define _DDD_mydialogs_h
  35.  
  36. #ifdef __GNUG__
  37. #pragma interface
  38. #endif
  39.  
  40. // Motif includes
  41. #include <Xm/Xm.h>
  42.  
  43. // DDD includes
  44. #include "strclass.h"
  45. #include "bool.h"
  46. #include "IntArray.h"
  47. #include "charsets.h"
  48.  
  49. // Create a selection box with a top-level shell.  This is like
  50. // XmCreateSelectionDialog, but the parent is a top-level shell.
  51. Widget createTopLevelSelectionDialog(Widget parent, String name,
  52.                      ArgList args, Cardinal num_args);
  53.  
  54. // Get the item numbers
  55. void getItemNumbers(Widget selectionList, IntArray& arr);
  56.  
  57.  
  58. // Set the elements of the display selection list
  59. // LABEL_LIST:      Labels, using the format disp_nr ": " disp_name.
  60. // SELECTED:        Whether labels are to be selected
  61. // LIST_LENGTH:     Length of label_list[] and selected[]
  62. // HIGHLIGHT_TITLE: Whether the first line should be highlighted
  63. // NOTIFY:          Whether callbacks should be invoked
  64. //
  65. void setLabelList (Widget  selectionList,
  66.            string  label_list[],
  67.            bool    selected[],
  68.            int     list_length,
  69.            bool    highlight_title,
  70.            bool    notify);
  71.  
  72. // Replace all elements in SELECTIONLIST with the corresponding
  73. // entries in LABEL_LIST (i.e. with the same leading number).
  74. void updateLabelList (Widget  selectionList,
  75.               string  label_list[],
  76.               int     list_length);
  77.  
  78. // The default list charset
  79. #define LIST_CHARSET CHARSET_TT
  80.  
  81. // The default list title charset
  82. #define LIST_TITLE_CHARSET CHARSET_TB
  83.  
  84. // Select POS in LIST and make it visible
  85. void ListSetAndSelectPos(Widget list, int pos);
  86.  
  87. #endif // _DDD_mydialogs_h
  88. // DON'T ADD ANYTHING BEHIND THIS #endif
  89.