NCBI C++ ToolKit
edit_object_set.hpp
Go to the documentation of this file.

Go to the SVN repository for this file.

1 #ifndef GUI_WIDGETS_EDIT___EDIT_OBJECT_SET__HPP
2 #define GUI_WIDGETS_EDIT___EDIT_OBJECT_SET__HPP
3 
4 /* $Id: edit_object_set.hpp 31581 2014-10-24 17:09:27Z bollin $
5  * ===========================================================================
6  *
7  * PUBLIC DOMAIN NOTICE
8  * National Center for Biotechnology Information
9  *
10  * This software/database is a "United States Government Work" under the
11  * terms of the United States Copyright Act. It was written as part of
12  * the author's official duties as a United States Government employee and
13  * thus cannot be copyrighted. This software/database is freely available
14  * to the public for use. The National Library of Medicine and the U.S.
15  * Government have not placed any restriction on its use or reproduction.
16  *
17  * Although all reasonable efforts have been taken to ensure the accuracy
18  * and reliability of the software and data, the NLM and the U.S.
19  * Government do not and cannot warrant the performance or results that
20  * may be obtained by using this software or data. The NLM and the U.S.
21  * Government disclaim all warranties, express or implied, including
22  * warranties of performance, merchantability or fitness for any particular
23  * purpose.
24  *
25  * Please cite the author in any work or product based on this material.
26  *
27  * ===========================================================================
28  *
29  * Authors: Colleen Bollin
30  */
31 
32 #include <corelib/ncbistd.hpp>
33 
34 #include <objmgr/scope.hpp>
36 
37 #include <gui/gui_export.h>
40 
41 class wxPanel;
42 
44 
46 {
47 public:
48  CEditObjectSet(const CObject& object,
49  objects::CScope& scope)
50  : m_Object(&object), m_Scope(&scope), m_Window(NULL) {}
51 
52  virtual wxWindow* CreateWindow(wxWindow* parent);
53  virtual IEditCommand* GetEditCommand();
54 
55 private:
56  enum {
57  ID_NOTEBOOK = 10015
58  };
59 
62 
64 
65  wxPanel* m_Window;
66 };
67 
68 
70 
71 #endif // GUI_WIDGETS_EDIT___EDIT_OBJECT_SET__HPP
static CRef< CScope > m_Scope
CIRef< IEditCommand > m_EditAction
CRef< objects::CScope > m_Scope
CConstRef< CObject > m_Object
CEditObjectSet(const CObject &object, objects::CScope &scope)
CObject –.
Definition: ncbiobj.hpp:180
Interface (functor) for object editing.
GUI editing interface.
Definition: edit_object.hpp:63
virtual IEditCommand * GetEditCommand()=0
After placing the window in the Edit Object Dialog ShowModal() method of the dialog is called.
virtual wxWindow * CreateWindow(wxWindow *parent)=0
creates a child (not top level) windows that can contain whatever controls/subwindows etc.
Include a standard set of the NCBI C++ Toolkit most basic headers.
#define NULL
Definition: ncbistd.hpp:225
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
#define NCBI_GUIWIDGETS_EDIT_EXPORT
Definition: gui_export.h:526
Defines to provide correct exporting from DLLs in Windows.
#define ID_NOTEBOOK
Modified on Fri Sep 20 14:57:12 2024 by modify_doxy.py rev. 669887