#endif
#include "wx/wx.h"
-#include "wx/xml/xml.h"
+#include "wx/xrc/xml.h"
#include "propframe.h"
#include "propedit.h"
#include "xmlhelpr.h"
+#include "editor.h"
enum
{
void PropEditCtrl::OnButtonClear(wxCommandEvent& event)
{
Clear();
+ EditorFrame::Get()->NotifyChanged(CHANGED_PROPS);
}
void PropEditCtrl::BeginEdit(const wxRect& rect, wxTreeItemId ti)
{
+ m_PropInfo = &(((PETreeData*)m_TreeCtrl->GetItemData(ti))->PropInfo);
+ m_TreeItem = ti;
+
m_CanSave = FALSE;
if (!m_Created)
{
m_TheCtrl->SetFocus();
- m_PropInfo = &(((PETreeData*)m_TreeCtrl->GetItemData(ti))->PropInfo);
- m_TreeItem = ti;
-
SetSize(rect.x, rect.y, rect.width, rect.height);
Show(TRUE);
ReadValue();