]> git.saurik.com Git - wxWidgets.git/blob - utils/configtool/src/custompropertydialog.h
Various underscore doc fixes and some wxXCharBuffer documentation.
[wxWidgets.git] / utils / configtool / src / custompropertydialog.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: custompropertydialog.h
3 // Purpose: Custom property dialog
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2003-06-04
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence:
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _CUSTOMPROPERTYDIALOG_H_
13 #define _CUSTOMPROPERTYDIALOG_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "custompropertydialog.cpp"
17 #endif
18
19 /*!
20 * Includes
21 */
22
23 ////@begin includes
24 ////@end includes
25
26 /*!
27 * Forward declarations
28 */
29
30 ////@begin forward declarations
31 ////@end forward declarations
32
33 /*!
34 * Control identifiers
35 */
36
37 ////@begin control identifiers
38 #define ID_CUSTOMPROPERTYDIALOG 10000
39 #define ID_PROPERTY_CHOICES 10001
40 #define ID_PROPERTY_CHOICE_ADD 10005
41 #define ID_PROPERTY_CHOICE_REMOVE 10006
42 ////@end control identifiers
43
44 /*!
45 * ctCustomPropertyDialog class declaration
46 */
47
48 class ctCustomPropertyDialog: public wxDialog
49 {
50 public:
51 /// Constructor
52 ctCustomPropertyDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& caption = _("Edit Custom Property"));
53
54 /// Creates the controls and sizers
55 void CreateControls();
56
57 ////@begin ctCustomPropertyDialog event handler declarations
58
59 /// Update event handler for ID_PROPERTY_CHOICES
60 void OnUpdatePropertyChoices( wxUpdateUIEvent& event );
61
62 /// Event handler for ID_PROPERTY_CHOICE_ADD
63 void OnPropertyChoiceAdd( wxCommandEvent& event );
64
65 /// Update event handler for ID_PROPERTY_CHOICE_ADD
66 void OnUpdatePropertyChoiceAdd( wxUpdateUIEvent& event );
67
68 /// Event handler for ID_PROPERTY_CHOICE_REMOVE
69 void OnPropertyChoiceRemove( wxCommandEvent& event );
70
71 /// Update event handler for ID_PROPERTY_CHOICE_REMOVE
72 void OnUpdatePropertyChoiceRemove( wxUpdateUIEvent& event );
73
74 ////@end ctCustomPropertyDialog event handler declarations
75
76 ////@begin ctCustomPropertyDialog member function declarations
77
78 ////@end ctCustomPropertyDialog member function declarations
79
80 /// Should we show tooltips?
81 static bool ShowToolTips();
82
83 void SetPropertyName(const wxString& name) { m_name = name; }
84 wxString GetPropertyName() { return m_name; }
85
86 void SetPropertyType(const wxString& type) { m_type = type; }
87 wxString GetPropertyType() { return m_type; }
88
89 void SetEditorType(const wxString& type) { m_editorType = type; }
90 wxString GetEditorType() { return m_editorType; }
91
92 void SetPropertyDescription(const wxString& descr) { m_description = descr; }
93 wxString GetPropertyDescription() { return m_description; }
94
95 void SetChoices(const wxArrayString& choices) ;
96 wxArrayString GetChoices() { return m_choices; }
97
98 DECLARE_CLASS( ctCustomPropertyDialog )
99 DECLARE_EVENT_TABLE()
100
101 protected:
102 wxString m_name;
103 wxString m_type;
104 wxString m_description;
105 wxString m_editorType;
106 wxArrayString m_choices;
107
108 // Dialog controls
109 wxTextCtrl* m_customPropertyName;
110 wxTextCtrl* m_customPropertyDescription;
111 wxChoice* m_customPrototype;
112 wxChoice* m_customPropertyEditorType;
113 wxListBox* m_propertyChoices;
114 };
115
116 #endif
117 // _CUSTOMPROPERTYDIALOG_H_