show_hide_dialog.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: show_hide_dialog.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:33:50  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: show_hide_dialog.hpp,v 1000.1 2004/04/12 17:33:50 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Authors:  Paul Thiessen
  35. *
  36. * File Description:
  37. *      Class definition for the Show/Hide dialog
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_SHOW_HIDE_DIALOG__HPP
  42. #define CN3D_SHOW_HIDE_DIALOG__HPP
  43. #include <corelib/ncbistd.hpp>
  44. #include <corelib/ncbistl.hpp>
  45. #ifdef __WXMSW__
  46. #include <windows.h>
  47. #include <wx/msw/winundef.h>
  48. #endif
  49. #include <wx/wx.h>
  50. #include <vector>
  51. #include "show_hide_callback.hpp"
  52. BEGIN_SCOPE(Cn3D)
  53. class ShowHideDialog : public wxDialog
  54. {
  55. public:
  56.     enum {
  57.         // return values
  58.         DONE,
  59.         CANCEL,
  60.         // control identifiers
  61.         LISTBOX,
  62.         B_DONE,
  63.         B_CANCEL,
  64.         B_APPLY
  65.     };
  66.     ShowHideDialog(
  67.         const wxString items[],                 // must have items->size() wxStrings
  68.         std::vector < bool > *itemsOn,          // modified to reflect user (de)selection(s)
  69.         ShowHideCallbackObject *callback,       // to reflect changes as user performs acts
  70.         bool useExtendedListStyle,              // whether to use wxLB_EXTENDED or wxLB_MULTIPLE
  71.         wxWindow* parent,
  72.         wxWindowID id,
  73.         const wxString& title,
  74.         const wxPoint& pos = wxDefaultPosition
  75.     );
  76. private:
  77.     void OnSelection(wxCommandEvent& event);
  78.     void OnButton(wxCommandEvent& event);
  79.     void OnCloseWindow(wxCloseEvent& event);
  80.     std::vector < bool > *itemsEnabled;
  81.     std::vector < bool > originalItemsEnabled;  // save in case of 'Cancel'
  82.     std::vector < bool > tempItemsEnabled;      // temporary storage
  83.     bool haveApplied;
  84.     ShowHideCallbackObject *callbackObject;
  85.     wxListBox *listBox;
  86.     wxButton *applyB, *cancelB;
  87.     DECLARE_EVENT_TABLE()
  88. };
  89. END_SCOPE(Cn3D)
  90. #endif // CN3D_SHOW_HIDE_DIALOG__HPP
  91. /*
  92. * ---------------------------------------------------------------------------
  93. * $Log: show_hide_dialog.hpp,v $
  94. * Revision 1000.1  2004/04/12 17:33:50  gouriano
  95. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.11
  96. *
  97. * Revision 1.11  2004/02/19 17:05:11  thiessen
  98. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  99. *
  100. * Revision 1.10  2003/02/03 19:20:06  thiessen
  101. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  102. *
  103. * Revision 1.9  2002/08/15 22:13:17  thiessen
  104. * update for wx2.3.2+ only; add structure pick dialog; fix MultitextDialog bug
  105. *
  106. * Revision 1.8  2001/10/08 14:18:56  thiessen
  107. * fix show/hide dialog under wxGTK
  108. *
  109. * Revision 1.7  2001/09/06 13:09:38  thiessen
  110. * tweak show hide dialog layout
  111. *
  112. * Revision 1.6  2001/08/06 20:22:48  thiessen
  113. * add preferences dialog ; make sure OnCloseWindow get wxCloseEvent
  114. *
  115. * Revision 1.5  2001/05/17 18:34:01  thiessen
  116. * spelling fixes; change dialogs to inherit from wxDialog
  117. *
  118. * Revision 1.4  2001/03/17 14:06:52  thiessen
  119. * more workarounds for namespace/#define conflicts
  120. *
  121. * Revision 1.3  2001/03/09 15:48:43  thiessen
  122. * major changes to add initial update viewer
  123. *
  124. * Revision 1.2  2000/12/15 15:52:08  thiessen
  125. * show/hide system installed
  126. *
  127. * Revision 1.1  2000/11/17 19:47:38  thiessen
  128. * working show/hide alignment row
  129. *
  130. */