CmdList.C 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. /* $XConsortium: CmdList.C /main/3 1995/11/06 15:59:50 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. ///////////////////////////////////////////////////////////////////////////////
  42. //////////////////////////////////////////////////////////////////////////////
  43. // This example code is from the book:
  44. //
  45. // Object-Oriented Programming with C++ and OSF/Motif
  46. // by
  47. // Douglas Young
  48. // Prentice Hall, 1992
  49. // ISBN 0-13-630252-1
  50. //
  51. // Copyright 1991 by Prentice Hall
  52. // All Rights Reserved
  53. //
  54. // Permission to use, copy, modify, and distribute this software for
  55. // any purpose except publication and without fee is hereby granted, provided
  56. // that the above copyright notice appear in all copies of the software.
  57. ///////////////////////////////////////////////////////////////////////////////
  58. //////////////////////////////////////////////////////////////////////////////
  59. ////////////////////////////////////////////////////////////
  60. // CmdList.C: Maintain a list of Cmd objects
  61. ////////////////////////////////////////////////////////////
  62. ////////////////////////////////////////////////////////////
  63. // MODIFIED TO INHERIT FROM CMD - not described in Book
  64. ///////////////////////////////////////////////////////////
  65. #include "CmdList.h"
  66. CmdList::CmdList() : Cmd("CmdList", "CmdList", 1)
  67. {
  68. _contents = 0;
  69. _numElements = 0;
  70. _pane = NULL;
  71. }
  72. CmdList::CmdList(char *name, char *label ) : Cmd(name, label, 1)
  73. {
  74. // The list is initially empty
  75. _contents = 0;
  76. _numElements = 0;
  77. _pane = NULL;
  78. }
  79. CmdList::~CmdList()
  80. {
  81. // free the list
  82. delete []_contents;
  83. }
  84. void CmdList::add ( Cmd *cmd )
  85. {
  86. int i;
  87. Cmd **newList;
  88. // CmdList can only be undone if all Cmds it contains can be undone
  89. if(!cmd->hasUndo())
  90. _hasUndo = 0;
  91. // Allocate a list large enough for one more element
  92. newList = new Cmd*[_numElements + 1];
  93. // Copy the contents of the previous list to
  94. // the new list
  95. for( i = 0; i < _numElements; i++)
  96. newList[i] = _contents[i];
  97. // Free the old list
  98. if (_contents)
  99. delete []_contents;
  100. // Make the new list the current list
  101. _contents = newList;
  102. // Add the command to the list and update the list size.
  103. _contents[_numElements] = cmd;
  104. _numElements++;
  105. }
  106. Cmd *CmdList::operator[] ( int index )
  107. {
  108. // Return the indexed element
  109. return _contents[index];
  110. }
  111. void CmdList::doit()
  112. {
  113. for( int i = 0; i < _numElements; i++)
  114. _contents[i]->execute();
  115. }
  116. void CmdList::undoit()
  117. {
  118. if(_hasUndo)
  119. for( int i = _numElements - 1; i >=0; i--)
  120. _contents[i]->undo();
  121. }