1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Resource editor class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "reseditr.h"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/checkbox.h"
27 #include "wx/button.h"
28 #include "wx/choice.h"
29 #include "wx/listbox.h"
30 #include "wx/radiobox.h"
31 #include "wx/statbox.h"
33 #include "wx/slider.h"
34 #include "wx/textctrl.h"
37 #include "wx/scrolbar.h"
44 #if defined(__WXMSW__) && !defined(__GNUWIN32__)
47 #include <strstream.h>
62 static void ObjectMenuProc(wxMenu
& menu
, wxCommandEvent
& event
);
63 wxResourceManager
*wxResourceManager::sm_currentResourceManager
= NULL
;
66 #include "bitmaps/load.xbm"
67 #include "bitmaps/save.xbm"
68 #include "bitmaps/new.xbm"
69 #include "bitmaps/vert.xbm"
70 #include "bitmaps/alignt.xbm"
71 #include "bitmaps/alignb.xbm"
72 #include "bitmaps/horiz.xbm"
73 #include "bitmaps/alignl.xbm"
74 #include "bitmaps/alignr.xbm"
75 #include "bitmaps/copysize.xbm"
76 #include "bitmaps/tofront.xbm"
77 #include "bitmaps/toback.xbm"
78 #include "bitmaps/help.xbm"
79 #include "bitmaps/wxwin.xbm"
86 wxResourceManager::wxResourceManager():
87 m_imageList(16, 16, TRUE
)
89 sm_currentResourceManager
= this;
93 m_editorResourceTree
= NULL
;
94 m_editorControlList
= NULL
;
97 m_currentFilename
= "";
98 m_symbolFilename
= "";
99 m_editorToolBar
= NULL
;
101 // Default window positions
102 m_resourceEditorWindowSize
.width
= 470;
103 m_resourceEditorWindowSize
.height
= 300;
105 m_resourceEditorWindowSize
.x
= 0;
106 m_resourceEditorWindowSize
.y
= 0;
108 m_propertyWindowSize
.width
= 300;
109 m_propertyWindowSize
.height
= 300;
111 m_helpController
= NULL
;
113 m_bitmapImage
= NULL
;
114 m_rootDialogItem
= 0;
117 wxResourceManager::~wxResourceManager()
119 sm_currentResourceManager
= NULL
;
122 if (m_helpController
)
124 m_helpController
->Quit();
125 delete m_helpController
;
126 m_helpController
= NULL
;
128 delete m_bitmapImage
;
132 bool wxResourceManager::Initialize()
134 // Set up the resource filename for each platform.
136 // dialoged.ini in the Windows directory
138 GetWindowsDirectory(buf
, 256);
139 strcat(buf
, "\\dialoged.ini");
140 m_optionsResourceFilename
= buf
;
144 strcat(buf
, "/.dialogedrc");
145 m_optionsResourceFilename
= buf
;
147 #error "Unsupported platform."
152 m_helpController
= new wxHelpController
;
153 m_helpController
->Initialize("dialoged");
155 m_popupMenu
= new wxMenu("", (wxFunction
)ObjectMenuProc
);
156 m_popupMenu
->Append(OBJECT_MENU_EDIT
, "Edit properties");
157 m_popupMenu
->Append(OBJECT_MENU_DELETE
, "Delete object");
162 m_bitmapImage
= new wxBitmap("WXWINBMP", wxBITMAP_TYPE_BMP_RESOURCE
);
165 m_bitmapImage
= new wxBitmap(wxwin_bits
, wxwin_width
, wxwin_height
);
169 // Initialize the image list icons
171 wxIcon
icon1("DIALOG_ICON", wxBITMAP_TYPE_ICO_RESOURCE
, 16, 16);
172 wxIcon
icon2("FOLDER1_ICON", wxBITMAP_TYPE_ICO_RESOURCE
, 16, 16);
173 wxIcon
icon3("FOLDER2_ICON", wxBITMAP_TYPE_ICO_RESOURCE
, 16, 16);
174 wxIcon
icon4("BUTTONSM_ICON", wxBITMAP_TYPE_ICO_RESOURCE
, 16, 16);
175 m_imageList
.Add(icon1
);
176 m_imageList
.Add(icon2
);
177 m_imageList
.Add(icon3
);
178 m_imageList
.Add(icon4
);
184 bool wxResourceManager::LoadOptions()
186 wxGetResource("DialogEd", "editorWindowX", &m_resourceEditorWindowSize
.x
, m_optionsResourceFilename
.GetData());
187 wxGetResource("DialogEd", "editorWindowY", &m_resourceEditorWindowSize
.y
, m_optionsResourceFilename
.GetData());
188 wxGetResource("DialogEd", "editorWindowWidth", &m_resourceEditorWindowSize
.width
, m_optionsResourceFilename
.GetData());
189 wxGetResource("DialogEd", "editorWindowHeight", &m_resourceEditorWindowSize
.height
, m_optionsResourceFilename
.GetData());
190 wxGetResource("DialogEd", "propertyWindowX", &m_propertyWindowSize
.x
, m_optionsResourceFilename
.GetData());
191 wxGetResource("DialogEd", "propertyWindowY", &m_propertyWindowSize
.y
, m_optionsResourceFilename
.GetData());
192 wxGetResource("DialogEd", "propertyWindowWidth", &m_propertyWindowSize
.width
, m_optionsResourceFilename
.GetData());
193 wxGetResource("DialogEd", "propertyWindowHeight", &m_propertyWindowSize
.height
, m_optionsResourceFilename
.GetData());
197 bool wxResourceManager::SaveOptions()
199 wxWriteResource("DialogEd", "editorWindowX", m_resourceEditorWindowSize
.x
, m_optionsResourceFilename
.GetData());
200 wxWriteResource("DialogEd", "editorWindowY", m_resourceEditorWindowSize
.y
, m_optionsResourceFilename
.GetData());
201 wxWriteResource("DialogEd", "editorWindowWidth", m_resourceEditorWindowSize
.width
, m_optionsResourceFilename
.GetData());
202 wxWriteResource("DialogEd", "editorWindowHeight", m_resourceEditorWindowSize
.height
, m_optionsResourceFilename
.GetData());
204 wxWriteResource("DialogEd", "propertyWindowX", m_propertyWindowSize
.x
, m_optionsResourceFilename
.GetData());
205 wxWriteResource("DialogEd", "propertyWindowY", m_propertyWindowSize
.y
, m_optionsResourceFilename
.GetData());
206 wxWriteResource("DialogEd", "propertyWindowWidth", m_propertyWindowSize
.width
, m_optionsResourceFilename
.GetData());
207 wxWriteResource("DialogEd", "propertyWindowHeight", m_propertyWindowSize
.height
, m_optionsResourceFilename
.GetData());
212 // Show or hide the resource editor frame, which displays a list
213 // of resources with ability to edit them.
214 bool wxResourceManager::ShowResourceEditor(bool show
, wxWindow
*parent
, const char *title
)
220 m_editorFrame
->Iconize(FALSE
);
221 m_editorFrame
->Show(TRUE
);
224 m_editorFrame
= OnCreateEditorFrame(title
);
226 wxMenuBar
*menuBar
= OnCreateEditorMenuBar(m_editorFrame
);
227 m_editorFrame
->SetMenuBar(menuBar
);
229 m_editorToolBar
= (EditorToolBar
*)OnCreateToolBar(m_editorFrame
);
230 m_editorControlList
= new wxResourceEditorControlList(m_editorFrame
, IDC_LISTCTRL
, wxPoint(0, 0), wxSize(-1, -1));
231 m_editorResourceTree
= new wxResourceEditorProjectTree(m_editorFrame
, IDC_TREECTRL
, wxPoint(0, 0), wxSize(-1, -1),
233 m_editorPanel
= OnCreateEditorPanel(m_editorFrame
);
235 m_editorResourceTree
->SetImageList(& m_imageList
);
237 // Constraints for toolbar
238 wxLayoutConstraints
*c
= new wxLayoutConstraints
;
239 c
->left
.SameAs (m_editorFrame
, wxLeft
, 0);
240 c
->top
.SameAs (m_editorFrame
, wxTop
, 0);
241 c
->right
.SameAs (m_editorFrame
, wxRight
, 0);
242 c
->bottom
.Unconstrained();
243 c
->width
.Unconstrained();
244 c
->height
.Absolute(28);
245 m_editorToolBar
->SetConstraints(c
);
247 // Constraints for listbox
248 c
= new wxLayoutConstraints
;
249 c
->left
.SameAs (m_editorFrame
, wxLeft
, 0);
250 c
->top
.SameAs (m_editorToolBar
, wxBottom
, 0);
251 c
->right
.Absolute (150);
252 c
->bottom
.SameAs (m_editorControlList
, wxTop
, 0);
253 c
->width
.Unconstrained();
254 c
->height
.Unconstrained();
255 m_editorResourceTree
->SetConstraints(c
);
257 // Constraints for panel
258 c
= new wxLayoutConstraints
;
259 c
->left
.SameAs (m_editorResourceTree
, wxRight
, 0);
260 c
->top
.SameAs (m_editorToolBar
, wxBottom
, 0);
261 c
->right
.SameAs (m_editorFrame
, wxRight
, 0);
262 c
->bottom
.SameAs (m_editorControlList
, wxTop
, 0);
263 c
->width
.Unconstrained();
264 c
->height
.Unconstrained();
265 m_editorPanel
->SetConstraints(c
);
267 // Constraints for control list (bottom window)
268 c
= new wxLayoutConstraints
;
269 c
->left
.SameAs (m_editorFrame
, wxLeft
, 0);
270 c
->right
.SameAs (m_editorFrame
, wxRight
, 0);
271 c
->bottom
.SameAs (m_editorFrame
, wxBottom
, 0);
272 c
->width
.Unconstrained();
273 c
->height
.Absolute(60);
274 m_editorControlList
->SetConstraints(c
);
276 m_editorFrame
->SetAutoLayout(TRUE
);
278 UpdateResourceList();
280 m_editorFrame
->Show(TRUE
);
285 wxFrame
*fr
= m_editorFrame
;
286 if (m_editorFrame
->OnClose())
290 m_editorFrame
= NULL
;
291 m_editorPanel
= NULL
;
297 void wxResourceManager::SetFrameTitle(const wxString
& filename
)
301 if (filename
== wxString(""))
302 m_editorFrame
->SetTitle("wxWindows Dialog Editor - untitled");
305 wxString
str("wxWindows Dialog Editor - ");
306 wxString
str2(wxFileNameFromPath(WXSTRINGCAST filename
));
308 m_editorFrame
->SetTitle(str
);
313 bool wxResourceManager::Save()
315 if (m_currentFilename
== wxString(""))
318 return Save(m_currentFilename
);
321 bool wxResourceManager::Save(const wxString
& filename
)
323 // Ensure all visible windows are saved to their resources
324 m_currentFilename
= filename
;
325 SetFrameTitle(m_currentFilename
);
326 InstantiateAllResourcesFromWindows();
327 if (m_resourceTable
.Save(filename
))
336 bool wxResourceManager::SaveAs()
338 wxString
s(wxFileSelector("Save resource file", wxPathOnly(WXSTRINGCAST m_currentFilename
), wxFileNameFromPath(WXSTRINGCAST m_currentFilename
),
339 "wxr", "*.wxr", wxSAVE
| wxOVERWRITE_PROMPT
));
341 if (s
.IsNull() || s
== "")
344 m_currentFilename
= s
;
345 Save(m_currentFilename
);
349 bool wxResourceManager::SaveIfModified()
356 bool wxResourceManager::Load(const wxString
& filename
)
358 return New(TRUE
, filename
);
361 bool wxResourceManager::New(bool loadFromFile
, const wxString
& filename
)
363 if (!Clear(TRUE
, FALSE
))
368 wxString str
= filename
;
369 if (str
== wxString(""))
371 wxString
f(wxFileSelector("Open resource file", NULL
, NULL
, "wxr", "*.wxr", 0, NULL
));
372 if (!f
.IsNull() && f
!= "")
378 if (!m_resourceTable
.ParseResourceFile(WXSTRINGCAST str
))
380 wxMessageBox("Could not read file.", "Resource file load error", wxOK
| wxICON_EXCLAMATION
);
383 m_currentFilename
= str
;
385 SetFrameTitle(m_currentFilename
);
387 UpdateResourceList();
389 // Construct include filename from this file
390 m_symbolFilename
= m_currentFilename
;
392 if (m_symbolFilename
[0] == 'c')
396 wxString
stringA("123456.45");
397 wxString
stringB("");
403 size_t len
= stringB
.Length();
407 // if (buffer.GetChar(i) == '.')
408 if (stringB
[i
] == '.')
410 stringB
= stringB
.Left(i
);
418 size_t len
= m_symbolFilename
.Length();
422 // if (buffer.GetChar(i) == '.')
423 if (m_symbolFilename
[i
] == '.')
425 m_symbolFilename
= m_symbolFilename
.Left(i
);
431 // wxStripExtension(m_symbolFilename);
432 m_symbolFilename
+= ".h";
434 if (!m_symbolTable
.ReadIncludeFile(m_symbolFilename
))
436 wxString
str("Could not find include file ");
437 str
+= m_symbolFilename
;
438 wxMessageBox(str
, "Dialog Editor Warning", MB_OK
);
444 m_currentFilename
= "";
451 bool wxResourceManager::Clear(bool deleteWindows
, bool force
)
453 if (!force
&& Modified())
455 int ans
= wxMessageBox("Save modified resource file?", "Dialog Editor", wxYES_NO
| wxCANCEL
);
459 if (!SaveIfModified())
465 ClearCurrentDialog();
466 DisassociateWindows();
468 m_symbolTable
.Clear();
469 m_resourceTable
.ClearTable();
470 UpdateResourceList();
475 bool wxResourceManager::DisassociateWindows()
477 m_resourceTable
.BeginFind();
479 while (node
= m_resourceTable
.Next())
481 wxItemResource
*res
= (wxItemResource
*)node
->Data();
482 DisassociateResource(res
);
488 void wxResourceManager::AssociateResource(wxItemResource
*resource
, wxWindow
*win
)
490 if (!m_resourceAssociations
.Get((long)resource
))
491 m_resourceAssociations
.Put((long)resource
, win
);
493 wxNode
*node
= resource
->GetChildren().First();
496 wxItemResource
*child
= (wxItemResource
*)node
->Data();
497 wxWindow
*childWindow
= (wxWindow
*)m_resourceAssociations
.Get((long)child
);
499 childWindow
= win
->FindWindow(child
->GetName());
501 AssociateResource(child
, childWindow
);
505 sprintf(buf
, "AssociateResource: cannot find child window %s", child
->GetName() ? child
->GetName() : "(unnamed)");
506 wxMessageBox(buf
, "Dialog Editor problem", wxOK
);
513 bool wxResourceManager::DisassociateResource(wxItemResource
*resource
)
515 wxWindow
*win
= FindWindowForResource(resource
);
519 // Disassociate children of window
520 if (win
->GetChildren())
522 wxNode
*node
= win
->GetChildren()->First();
525 wxWindow
*child
= (wxWindow
*)node
->Data();
526 if (child
->IsKindOf(CLASSINFO(wxControl
)))
527 DisassociateResource(child
);
532 RemoveSelection(win
);
533 m_resourceAssociations
.Delete((long)resource
);
537 bool wxResourceManager::DisassociateResource(wxWindow
*win
)
539 wxItemResource
*res
= FindResourceForWindow(win
);
541 return DisassociateResource(res
);
546 // Saves the window info into the resource, and deletes the
547 // handler. Doesn't actually disassociate the window from
548 // the resources. Replaces OnClose.
549 bool wxResourceManager::SaveInfoAndDeleteHandler(wxWindow
* win
)
551 wxItemResource
*res
= FindResourceForWindow(win
);
553 if (win
->IsKindOf(CLASSINFO(wxPanel
)))
555 wxResourceEditorDialogHandler
* handler
= (wxResourceEditorDialogHandler
*) win
->GetEventHandler();
556 win
->PopEventHandler();
558 // Now reset all child event handlers
559 wxNode
*node
= win
->GetChildren()->First();
562 wxWindow
*child
= (wxWindow
*)node
->Data();
563 wxEvtHandler
*childHandler
= child
->GetEventHandler();
564 if ( child
->IsKindOf(CLASSINFO(wxControl
)) && childHandler
!= child
)
566 child
->PopEventHandler(TRUE
);
574 win
->PopEventHandler(TRUE
);
577 // Save the information
578 InstantiateResourceFromWindow(res
, win
, TRUE
);
580 // DisassociateResource(win);
585 // Destroys the window. If this is the 'current' panel, NULLs the
587 bool wxResourceManager::DeleteWindow(wxWindow
* win
)
589 bool clearDisplay
= FALSE
;
590 if (m_editorPanel
->m_childWindow
== win
)
592 m_editorPanel
->m_childWindow
= NULL
;
599 m_editorPanel
->Clear();
604 wxItemResource
*wxResourceManager::FindResourceForWindow(wxWindow
*win
)
606 m_resourceAssociations
.BeginFind();
608 while (node
= m_resourceAssociations
.Next())
610 wxWindow
*w
= (wxWindow
*)node
->Data();
613 return (wxItemResource
*)node
->key
.integer
;
619 wxWindow
*wxResourceManager::FindWindowForResource(wxItemResource
*resource
)
621 return (wxWindow
*)m_resourceAssociations
.Get((long)resource
);
625 void wxResourceManager::MakeUniqueName(char *prefix
, char *buf
)
629 sprintf(buf
, "%s%d", prefix
, m_nameCounter
);
632 if (!m_resourceTable
.FindResource(buf
))
637 wxFrame
*wxResourceManager::OnCreateEditorFrame(const char *title
)
639 int frameWidth
= 420;
640 int frameHeight
= 300;
642 wxResourceEditorFrame
*frame
= new wxResourceEditorFrame(this, NULL
, title
,
643 wxPoint(m_resourceEditorWindowSize
.x
, m_resourceEditorWindowSize
.y
),
644 wxSize(m_resourceEditorWindowSize
.width
, m_resourceEditorWindowSize
.height
),
645 wxDEFAULT_FRAME_STYLE
);
647 frame
->CreateStatusBar(1);
649 frame
->SetAutoLayout(TRUE
);
651 wxIcon
*icon
= new wxIcon("DIALOGEDICON");
652 frame
->SetIcon(icon
);
657 wxMenuBar
*wxResourceManager::OnCreateEditorMenuBar(wxFrame
*parent
)
659 wxMenuBar
*menuBar
= new wxMenuBar
;
661 wxMenu
*fileMenu
= new wxMenu
;
662 fileMenu
->Append(RESED_NEW_DIALOG
, "New &dialog", "Create a new dialog");
663 fileMenu
->AppendSeparator();
664 fileMenu
->Append(wxID_NEW
, "&New project", "Clear the current project");
665 fileMenu
->Append(wxID_OPEN
, "&Open...", "Load a resource file");
666 fileMenu
->Append(wxID_SAVE
, "&Save", "Save a resource file");
667 fileMenu
->Append(wxID_SAVEAS
, "Save &As...", "Save a resource file as...");
668 fileMenu
->Append(RESED_CLEAR
, "&Clear", "Clear current resources");
669 fileMenu
->AppendSeparator();
670 fileMenu
->Append(wxID_EXIT
, "E&xit", "Exit resource editor");
672 wxMenu
*editMenu
= new wxMenu
;
673 editMenu
->Append(RESED_TEST
, "&Test Dialog", "Test dialog");
674 editMenu
->Append(RESED_RECREATE
, "&Recreate", "Recreate the selected resource(s)");
675 editMenu
->Append(RESED_DELETE
, "&Delete", "Delete the selected resource(s)");
677 wxMenu
*helpMenu
= new wxMenu
;
678 helpMenu
->Append(RESED_CONTENTS
, "&Help topics", "Invokes the on-line help");
679 helpMenu
->AppendSeparator();
680 helpMenu
->Append(wxID_ABOUT
, "&About", "About wxWindows Dialog Editor");
682 menuBar
->Append(fileMenu
, "&File");
683 menuBar
->Append(editMenu
, "&Edit");
684 menuBar
->Append(helpMenu
, "&Help");
689 wxResourceEditorScrolledWindow
*wxResourceManager::OnCreateEditorPanel(wxFrame
*parent
)
691 wxResourceEditorScrolledWindow
*panel
= new wxResourceEditorScrolledWindow(parent
, wxDefaultPosition
, wxDefaultSize
,
692 // wxSUNKEN_BORDER|wxCLIP_CHILDREN);
695 panel
->SetScrollbars(10, 10, 100, 100);
700 wxToolBarBase
*wxResourceManager::OnCreateToolBar(wxFrame
*parent
)
702 // Load palette bitmaps
704 wxBitmap
ToolbarLoadBitmap("LOADTOOL");
705 wxBitmap
ToolbarSaveBitmap("SAVETOOL");
706 wxBitmap
ToolbarNewBitmap("NEWTOOL");
707 wxBitmap
ToolbarVertBitmap("VERTTOOL");
708 wxBitmap
ToolbarAlignTBitmap("ALIGNTTOOL");
709 wxBitmap
ToolbarAlignBBitmap("ALIGNBTOOL");
710 wxBitmap
ToolbarHorizBitmap("HORIZTOOL");
711 wxBitmap
ToolbarAlignLBitmap("ALIGNLTOOL");
712 wxBitmap
ToolbarAlignRBitmap("ALIGNRTOOL");
713 wxBitmap
ToolbarCopySizeBitmap("COPYSIZETOOL");
714 wxBitmap
ToolbarToBackBitmap("TOBACKTOOL");
715 wxBitmap
ToolbarToFrontBitmap("TOFRONTTOOL");
716 wxBitmap
ToolbarHelpBitmap("HELPTOOL");
719 wxBitmap
ToolbarLoadBitmap(load_bits
, load_width
, load_height
);
720 wxBitmap
ToolbarSaveBitmap(save_bits
, save_width
, save_height
);
721 wxBitmap
ToolbarNewBitmap(new_bits
, save_width
, save_height
);
722 wxBitmap
ToolbarVertBitmap(vert_bits
, vert_width
, vert_height
);
723 wxBitmap
ToolbarAlignTBitmap(alignt_bits
, alignt_width
, alignt_height
);
724 wxBitmap
ToolbarAlignBBitmap(alignb_bits
, alignb_width
, alignb_height
);
725 wxBitmap
ToolbarHorizBitmap(horiz_bits
, horiz_width
, horiz_height
);
726 wxBitmap
ToolbarAlignLBitmap(alignl_bits
, alignl_width
, alignl_height
);
727 wxBitmap
ToolbarAlignRBitmap(alignr_bits
, alignr_width
, alignr_height
);
728 wxBitmap
ToolbarCopySizeBitmap(copysize_bits
, copysize_width
, copysize_height
);
729 wxBitmap
ToolbarToBackBitmap(toback_bits
, toback_width
, toback_height
);
730 wxBitmap
ToolbarToFrontBitmap(tofront_bits
, tofront_width
, tofront_height
);
731 wxBitmap
ToolbarHelpBitmap(help_bits
, help_width
, help_height
);
734 // Create the toolbar
735 EditorToolBar
*toolbar
= new EditorToolBar(parent
, wxPoint(0, 0), wxSize(-1, -1), wxNO_BORDER
|wxTB_HORIZONTAL
);
736 toolbar
->SetMargins(2, 2);
743 int width
= ToolbarLoadBitmap
->GetWidth();
748 toolbar
->AddSeparator();
749 toolbar
->AddTool(TOOLBAR_NEW
, ToolbarNewBitmap
, (wxBitmap
*)NULL
,
750 FALSE
, (float)currentX
, -1, NULL
, "New dialog");
751 currentX
+= width
+ dx
;
752 toolbar
->AddTool(TOOLBAR_LOAD_FILE
, ToolbarLoadBitmap
, (wxBitmap
*)NULL
,
753 FALSE
, (float)currentX
, -1, NULL
, "Load");
754 currentX
+= width
+ dx
;
755 toolbar
->AddTool(TOOLBAR_SAVE_FILE
, ToolbarSaveBitmap
, (wxBitmap
*)NULL
,
756 FALSE
, (float)currentX
, -1, NULL
, "Save");
757 currentX
+= width
+ dx
+ gap
;
758 toolbar
->AddSeparator();
759 toolbar
->AddTool(TOOLBAR_FORMAT_HORIZ
, ToolbarVertBitmap
, (wxBitmap
*)NULL
,
760 FALSE
, (float)currentX
, -1, NULL
, "Horizontal align");
761 currentX
+= width
+ dx
;
762 toolbar
->AddTool(TOOLBAR_FORMAT_VERT_TOP_ALIGN
, ToolbarAlignTBitmap
, (wxBitmap
*)NULL
,
763 FALSE
, (float)currentX
, -1, NULL
, "Top align");
764 currentX
+= width
+ dx
;
765 toolbar
->AddTool(TOOLBAR_FORMAT_VERT_BOT_ALIGN
, ToolbarAlignBBitmap
, (wxBitmap
*)NULL
,
766 FALSE
, (float)currentX
, -1, NULL
, "Bottom align");
767 currentX
+= width
+ dx
;
768 toolbar
->AddTool(TOOLBAR_FORMAT_VERT
, ToolbarHorizBitmap
, (wxBitmap
*)NULL
,
769 FALSE
, (float)currentX
, -1, NULL
, "Vertical align");
770 currentX
+= width
+ dx
;
771 toolbar
->AddTool(TOOLBAR_FORMAT_HORIZ_LEFT_ALIGN
, ToolbarAlignLBitmap
, (wxBitmap
*)NULL
,
772 FALSE
, (float)currentX
, -1, NULL
, "Left align");
773 currentX
+= width
+ dx
;
774 toolbar
->AddTool(TOOLBAR_FORMAT_HORIZ_RIGHT_ALIGN
, ToolbarAlignRBitmap
, (wxBitmap
*)NULL
,
775 FALSE
, (float)currentX
, -1, NULL
, "Right align");
776 currentX
+= width
+ dx
;
777 toolbar
->AddTool(TOOLBAR_COPY_SIZE
, ToolbarCopySizeBitmap
, (wxBitmap
*)NULL
,
778 FALSE
, (float)currentX
, -1, NULL
, "Copy size");
779 currentX
+= width
+ dx
+ gap
;
780 toolbar
->AddSeparator();
781 toolbar
->AddTool(TOOLBAR_TO_FRONT
, ToolbarToFrontBitmap
, (wxBitmap
*)NULL
,
782 FALSE
, (float)currentX
, -1, NULL
, "To front");
783 currentX
+= width
+ dx
;
784 toolbar
->AddTool(TOOLBAR_TO_BACK
, ToolbarToBackBitmap
, (wxBitmap
*)NULL
,
785 FALSE
, (float)currentX
, -1, NULL
, "To back");
786 currentX
+= width
+ dx
+ gap
;
788 toolbar
->AddSeparator();
789 toolbar
->AddTool(TOOLBAR_HELP
, ToolbarHelpBitmap
, (wxBitmap
*)NULL
,
790 FALSE
, (float)currentX
, -1, NULL
, "Help");
791 currentX
+= width
+ dx
;
798 void wxResourceManager::UpdateResourceList()
800 if (!m_editorResourceTree
)
803 m_editorResourceTree
->SetInvalid(TRUE
);
804 m_editorResourceTree
->DeleteAllItems();
806 long id
= m_editorResourceTree
->InsertItem(0, "Dialogs"
812 m_resourceTable
.BeginFind();
814 while (node
= m_resourceTable
.Next())
816 wxItemResource
*res
= (wxItemResource
*)node
->Data();
817 wxString
resType(res
->GetType());
818 if (resType
== "wxDialog" || resType
== "wxDialogBox" || resType
== "wxPanel" || resType
== "wxBitmap")
820 AddItemsRecursively(id
, res
);
823 m_editorResourceTree
->ExpandItem(id
, wxTREE_EXPAND_EXPAND
);
824 m_editorResourceTree
->SetInvalid(FALSE
);
827 void wxResourceManager::AddItemsRecursively(long parent
, wxItemResource
*resource
)
829 wxString
theString("");
830 theString
= resource
->GetName();
833 wxString
resType(resource
->GetType());
834 if (resType
== "wxDialog" || resType
== "wxDialogBox" || resType
== "wxPanel")
839 long id
= m_editorResourceTree
->InsertItem(parent
, theString
845 m_editorResourceTree
->SetItemData(id
, (long) resource
);
847 if (strcmp(resource
->GetType(), "wxBitmap") != 0)
849 wxNode
*node
= resource
->GetChildren().First();
852 wxItemResource
*res
= (wxItemResource
*)node
->Data();
853 AddItemsRecursively(id
, res
);
857 m_editorResourceTree
->ExpandItem(id
, wxTREE_EXPAND_EXPAND
);
860 bool wxResourceManager::EditSelectedResource()
862 int sel
= m_editorResourceTree
->GetSelection();
865 wxItemResource
*res
= (wxItemResource
*)m_editorResourceTree
->GetItemData(sel
);
871 bool wxResourceManager::Edit(wxItemResource
*res
)
873 ClearCurrentDialog();
875 wxString
resType(res
->GetType());
876 wxPanel
*panel
= (wxPanel
*)FindWindowForResource(res
);
880 wxMessageBox("Should not find panel in wxResourceManager::Edit");
885 long style
= res
->GetStyle();
886 res
->SetStyle(style
|wxRAISED_BORDER
);
888 wxResourceEditorDialogHandler
*handler
= new wxResourceEditorDialogHandler(panel
, res
, panel
->GetEventHandler(),
891 panel
->LoadFromResource(m_editorPanel
, res
->GetName(), &m_resourceTable
);
893 panel
->PushEventHandler(handler
);
895 res
->SetStyle(style
);
896 handler
->AddChildHandlers(); // Add event handlers for all controls
897 AssociateResource(res
, panel
);
899 m_editorPanel
->m_childWindow
= panel
;
900 panel
->Move(m_editorPanel
->GetMarginX(), m_editorPanel
->GetMarginY());
904 wxClientDC
dc(m_editorPanel
);
905 m_editorPanel
->DrawTitle(dc
);
910 bool wxResourceManager::CreateNewPanel()
912 ClearCurrentDialog();
915 MakeUniqueName("panel", buf
);
917 wxItemResource
*resource
= new wxItemResource
;
918 // resource->SetType(wxTYPE_PANEL);
919 resource
->SetType("wxPanel");
920 resource
->SetName(buf
);
921 resource
->SetTitle(buf
);
922 m_resourceTable
.AddResource(resource
);
924 wxPanel
*panel
= new wxPanel(m_editorPanel
, -1,
925 wxPoint(m_editorPanel
->GetMarginX(), m_editorPanel
->GetMarginY()),
926 wxSize(400, 300), wxRAISED_BORDER
, buf
);
927 m_editorPanel
->m_childWindow
= panel
;
929 resource
->SetStyle(0); // panel->GetWindowStyleFlag());
930 resource
->SetSize(10, 10, 400, 300);
932 // For editing in situ we will need to use the hash table to ensure
933 // we don't dereference invalid pointers.
934 // resourceWindowTable.Put((long)resource, panel);
936 wxResourceEditorDialogHandler
*handler
= new wxResourceEditorDialogHandler(panel
, resource
, panel
->GetEventHandler(),
938 panel
->PushEventHandler(handler
);
940 AssociateResource(resource
, panel
);
941 UpdateResourceList();
944 m_editorPanel
->m_childWindow
->Refresh();
948 wxClientDC
dc(m_editorPanel
);
949 m_editorPanel
->DrawTitle(dc
);
954 bool wxResourceManager::CreatePanelItem(wxItemResource
*panelResource
, wxPanel
*panel
, char *iType
, int x
, int y
, bool isBitmap
)
957 if (!panel
->IsKindOf(CLASSINFO(wxPanel
)) && !panel
->IsKindOf(CLASSINFO(wxDialog
)))
962 wxItemResource
*res
= new wxItemResource
;
963 wxControl
*newItem
= NULL
;
964 res
->SetSize(x
, y
, -1, -1);
967 wxString
itemType(iType
);
969 if (itemType
== "wxButton")
971 MakeUniqueName("button", buf
);
974 newItem
= new wxBitmapButton(panel
, -1, m_bitmapImage
, wxPoint(x
, y
), wxSize(-1, -1), 0, wxDefaultValidator
, buf
);
976 newItem
= new wxButton(panel
, -1, "Button", wxPoint(x
, y
), wxSize(-1, -1), 0, wxDefaultValidator
, buf
);
978 if (itemType
== "wxBitmapButton")
980 MakeUniqueName("button", buf
);
982 newItem
= new wxBitmapButton(panel
, -1, m_bitmapImage
, wxPoint(x
, y
), wxSize(-1, -1), 0, wxDefaultValidator
, buf
);
984 else if (itemType
== "wxMessage" || itemType
== "wxStaticText")
986 MakeUniqueName("message", buf
);
989 newItem
= new wxStaticBitmap(panel
, -1, m_bitmapImage
, wxPoint(x
, y
), wxSize(0, 0), 0, buf
);
991 newItem
= new wxStaticText(panel
, -1, "Message", wxPoint(x
, y
), wxSize(-1, -1), 0, buf
);
993 else if (itemType
== "wxStaticBitmap")
995 MakeUniqueName("message", buf
);
997 newItem
= new wxStaticBitmap(panel
, -1, m_bitmapImage
, wxPoint(x
, y
), wxSize(-1, -1), 0, buf
);
999 else if (itemType
== "wxCheckBox")
1001 MakeUniqueName("checkbox", buf
);
1003 newItem
= new wxCheckBox(panel
, -1, "Checkbox", wxPoint(x
, y
), wxSize(-1, -1), 0, wxDefaultValidator
, buf
);
1005 else if (itemType
== "wxListBox")
1007 MakeUniqueName("listbox", buf
);
1009 newItem
= new wxListBox(panel
, -1, wxPoint(x
, y
), wxSize(-1, -1), 0, NULL
, 0, wxDefaultValidator
, buf
);
1011 else if (itemType
== "wxRadioBox")
1013 MakeUniqueName("radiobox", buf
);
1015 wxString names
[] = { "One", "Two" };
1016 newItem
= new wxRadioBox(panel
, -1, "Radiobox", wxPoint(x
, y
), wxSize(-1, -1), 2, names
, 2,
1017 wxHORIZONTAL
, wxDefaultValidator
, buf
);
1018 res
->SetStringValues(new wxStringList("One", "Two", NULL
));
1020 else if (itemType
== "wxRadioButton")
1022 MakeUniqueName("radiobutton", buf
);
1024 wxString names
[] = { "One", "Two" };
1025 newItem
= new wxRadioButton(panel
, -1, "Radiobutton", wxPoint(x
, y
), wxSize(-1, -1),
1026 0, wxDefaultValidator
, buf
);
1028 else if (itemType
== "wxChoice")
1030 MakeUniqueName("choice", buf
);
1032 newItem
= new wxChoice(panel
, -1, wxPoint(x
, y
), wxSize(-1, -1), 0, NULL
, 0, wxDefaultValidator
, buf
);
1034 else if (itemType
== "wxGroupBox" || itemType
== "wxStaticBox")
1036 MakeUniqueName("group", buf
);
1038 newItem
= new wxStaticBox(panel
, -1, "Groupbox", wxPoint(x
, y
), wxSize(200, 200), 0, buf
);
1040 else if (itemType
== "wxGauge")
1042 MakeUniqueName("gauge", buf
);
1044 newItem
= new wxGauge(panel
, -1, 10, wxPoint(x
, y
), wxSize(80, 30), wxHORIZONTAL
, wxDefaultValidator
, buf
);
1046 else if (itemType
== "wxSlider")
1048 MakeUniqueName("slider", buf
);
1050 newItem
= new wxSlider(panel
, -1, 1, 1, 10, wxPoint(x
, y
), wxSize(120, -1), wxHORIZONTAL
, wxDefaultValidator
, buf
);
1052 else if (itemType
== "wxText" || itemType
== "wxTextCtrl (single-line)")
1054 MakeUniqueName("textctrl", buf
);
1056 res
->SetType("wxTextCtrl");
1057 newItem
= new wxTextCtrl(panel
, -1, "", wxPoint(x
, y
), wxSize(120, -1), 0, wxDefaultValidator
, buf
);
1059 else if (itemType
== "wxMultiText" || itemType
== "wxTextCtrl (multi-line)")
1061 MakeUniqueName("textctrl", buf
);
1063 res
->SetType("wxTextCtrl");
1064 newItem
= new wxTextCtrl(panel
, -1, "", wxPoint(x
, y
), wxSize(120, 100), wxTE_MULTILINE
, wxDefaultValidator
, buf
);
1066 else if (itemType
== "wxScrollBar")
1068 MakeUniqueName("scrollbar", buf
);
1070 newItem
= new wxScrollBar(panel
, -1, wxPoint(x
, y
), wxSize(140, -1), wxHORIZONTAL
, wxDefaultValidator
, buf
);
1075 newItem
->PushEventHandler(new wxResourceEditorControlHandler(newItem
, newItem
));
1077 res
->SetStyle(newItem
->GetWindowStyleFlag());
1078 AssociateResource(res
, newItem
);
1079 panelResource
->GetChildren().Append(res
);
1081 UpdateResourceList();
1086 void wxResourceManager::ClearCurrentDialog()
1088 if (m_editorPanel
->m_childWindow
)
1090 SaveInfoAndDeleteHandler(m_editorPanel
->m_childWindow
);
1091 DisassociateResource(m_editorPanel
->m_childWindow
);
1092 DeleteWindow(m_editorPanel
->m_childWindow
);
1093 m_editorPanel
->m_childWindow
= NULL
;
1094 m_editorPanel
->Clear();
1098 bool wxResourceManager::TestCurrentDialog(wxWindow
* parent
)
1100 if (m_editorPanel
->m_childWindow
)
1102 wxItemResource
* item
= FindResourceForWindow(m_editorPanel
->m_childWindow
);
1106 // Make sure the resources are up-to-date w.r.t. the window
1107 InstantiateResourceFromWindow(item
, m_editorPanel
->m_childWindow
, TRUE
);
1109 wxDialog
* dialog
= new wxDialog
;
1110 long oldStyle
= item
->GetStyle();
1111 bool success
= FALSE
;
1112 item
->SetStyle(wxDEFAULT_DIALOG_STYLE
);
1113 if (dialog
->LoadFromResource(parent
, item
->GetName(), & m_resourceTable
))
1116 dialog
->ShowModal();
1119 item
->SetStyle(oldStyle
);
1125 // Find the first dialog or panel for which
1126 // there is a selected panel item.
1127 wxWindow
*wxResourceManager::FindParentOfSelection()
1129 m_resourceTable
.BeginFind();
1131 while (node
= m_resourceTable
.Next())
1133 wxItemResource
*res
= (wxItemResource
*)node
->Data();
1134 wxWindow
*win
= FindWindowForResource(res
);
1137 wxNode
*node1
= win
->GetChildren()->First();
1140 wxControl
*item
= (wxControl
*)node1
->Data();
1141 wxResourceEditorControlHandler
*childHandler
= (wxResourceEditorControlHandler
*)item
->GetEventHandler();
1142 if (item
->IsKindOf(CLASSINFO(wxControl
)) && childHandler
->IsSelected())
1144 node1
= node1
->Next();
1151 // Format the panel items according to 'flag'
1152 void wxResourceManager::AlignItems(int flag
)
1154 wxWindow
*win
= FindParentOfSelection();
1158 wxNode
*node
= GetSelections().First();
1162 wxControl
*firstSelection
= (wxControl
*)node
->Data();
1163 if (firstSelection
->GetParent() != win
)
1168 firstSelection
->GetPosition(&firstX
, &firstY
);
1169 firstSelection
->GetSize(&firstW
, &firstH
);
1170 int centreX
= (int)(firstX
+ (firstW
/ 2));
1171 int centreY
= (int)(firstY
+ (firstH
/ 2));
1173 while (node
= node
->Next())
1175 wxControl
*item
= (wxControl
*)node
->Data();
1176 if (item
->GetParent() == win
)
1179 item
->GetPosition(&x
, &y
);
1180 item
->GetSize(&w
, &h
);
1186 case TOOLBAR_FORMAT_HORIZ
:
1189 newY
= (int)(centreY
- (h
/2.0));
1192 case TOOLBAR_FORMAT_VERT
:
1194 newX
= (int)(centreX
- (w
/2.0));
1198 case TOOLBAR_FORMAT_HORIZ_LEFT_ALIGN
:
1204 case TOOLBAR_FORMAT_VERT_TOP_ALIGN
:
1210 case TOOLBAR_FORMAT_HORIZ_RIGHT_ALIGN
:
1212 newX
= firstX
+ firstW
- w
;
1216 case TOOLBAR_FORMAT_VERT_BOT_ALIGN
:
1219 newY
= firstY
+ firstH
- h
;
1227 item
->SetSize(newX
, newY
, w
, h
);
1233 // Copy the first image's size to subsequent images
1234 void wxResourceManager::CopySize()
1236 wxWindow
*win
= FindParentOfSelection();
1240 wxNode
*node
= GetSelections().First();
1244 wxControl
*firstSelection
= (wxControl
*)node
->Data();
1245 if (firstSelection
->GetParent() != win
)
1250 firstSelection
->GetPosition(&firstX
, &firstY
);
1251 firstSelection
->GetSize(&firstW
, &firstH
);
1252 int centreX
= (int)(firstX
+ (firstW
/ 2));
1253 int centreY
= (int)(firstY
+ (firstH
/ 2));
1255 while (node
= node
->Next())
1257 wxControl
*item
= (wxControl
*)node
->Data();
1258 if (item
->GetParent() == win
)
1259 item
->SetSize(-1, -1, firstW
, firstH
);
1264 void wxResourceManager::ToBackOrFront(bool toBack
)
1266 wxWindow
*win
= FindParentOfSelection();
1269 wxItemResource
*winResource
= FindResourceForWindow(win
);
1271 wxNode
*node
= GetSelections().First();
1274 wxControl
*item
= (wxControl
*)node
->Data();
1275 wxItemResource
*itemResource
= FindResourceForWindow(item
);
1276 if (item
->GetParent() == win
)
1278 win
->GetChildren()->DeleteObject(item
);
1280 winResource
->GetChildren().DeleteObject(itemResource
);
1283 win
->GetChildren()->Insert(item
);
1285 winResource
->GetChildren().Insert(itemResource
);
1289 win
->GetChildren()->Append(item
);
1291 winResource
->GetChildren().Append(itemResource
);
1294 node
= node
->Next();
1299 void wxResourceManager::AddSelection(wxWindow
*win
)
1301 if (!m_selections
.Member(win
))
1302 m_selections
.Append(win
);
1305 void wxResourceManager::RemoveSelection(wxWindow
*win
)
1307 m_selections
.DeleteObject(win
);
1310 // Need to search through resource table removing this from
1311 // any resource which has this as a parent.
1312 bool wxResourceManager::RemoveResourceFromParent(wxItemResource
*res
)
1314 m_resourceTable
.BeginFind();
1316 while (node
= m_resourceTable
.Next())
1318 wxItemResource
*thisRes
= (wxItemResource
*)node
->Data();
1319 if (thisRes
->GetChildren().Member(res
))
1321 thisRes
->GetChildren().DeleteObject(res
);
1328 bool wxResourceManager::DeleteResource(wxItemResource
*res
)
1333 RemoveResourceFromParent(res
);
1335 wxNode
*node
= res
->GetChildren().First();
1338 wxNode
*next
= node
->Next();
1339 wxItemResource
*child
= (wxItemResource
*)node
->Data();
1340 DeleteResource(child
);
1344 // If this is a button or message resource, delete the
1345 // associate bitmap resource if not being used.
1346 wxString
resType(res
->GetType());
1348 if ((resType
== "wxMessage" || resType
== "wxStaticBitmap" || resType
== "wxButton" || resType
== "wxBitmapButton") && res
->GetValue4())
1350 PossiblyDeleteBitmapResource(res
->GetValue4());
1353 m_resourceTable
.Delete(res
->GetName());
1359 bool wxResourceManager::DeleteResource(wxWindow
*win
)
1361 if (win
->IsKindOf(CLASSINFO(wxControl
)))
1363 // Deselect and refresh window in case we leave selection
1365 wxControl
*item
= (wxControl
*)win
;
1366 wxResourceEditorControlHandler
*childHandler
= (wxResourceEditorControlHandler
*)item
->GetEventHandler();
1367 if (childHandler
->IsSelected())
1369 RemoveSelection(item
);
1370 childHandler
->SelectItem(FALSE
);
1371 item
->GetParent()->Refresh();
1375 wxItemResource
*res
= FindResourceForWindow(win
);
1377 DisassociateResource(res
);
1378 DeleteResource(res
);
1379 UpdateResourceList();
1384 // Will eventually have bitmap type information, for different
1386 char *wxResourceManager::AddBitmapResource(char *filename
)
1388 wxItemResource
*resource
= FindBitmapResourceByFilename(filename
);
1392 MakeUniqueName("bitmap", buf
);
1393 resource
= new wxItemResource
;
1394 resource
->SetType("wxBitmap");
1395 resource
->SetName(buf
);
1397 // A bitmap resource has one or more children, specifying
1398 // alternative bitmaps.
1399 wxItemResource
*child
= new wxItemResource
;
1400 child
->SetType("wxBitmap");
1401 child
->SetName(filename
);
1402 child
->SetValue1(wxBITMAP_TYPE_BMP
);
1403 child
->SetValue2(RESOURCE_PLATFORM_ANY
);
1404 child
->SetValue3(0); // Depth
1405 child
->SetSize(0,0,0,0);
1406 resource
->GetChildren().Append(child
);
1408 m_resourceTable
.AddResource(resource
);
1410 UpdateResourceList();
1413 return resource
->GetName();
1418 // Delete the bitmap resource if it isn't being used by another resource.
1419 void wxResourceManager::PossiblyDeleteBitmapResource(char *resourceName
)
1421 if (!IsBitmapResourceUsed(resourceName
))
1423 wxItemResource
*res
= m_resourceTable
.FindResource(resourceName
);
1424 DeleteResource(res
);
1425 UpdateResourceList();
1429 bool wxResourceManager::IsBitmapResourceUsed(char *resourceName
)
1431 m_resourceTable
.BeginFind();
1433 while (node
= m_resourceTable
.Next())
1435 wxItemResource
*res
= (wxItemResource
*)node
->Data();
1436 wxString
resType(res
->GetType());
1437 if (resType
== "wxDialog")
1439 wxNode
*node1
= res
->GetChildren().First();
1442 wxItemResource
*child
= (wxItemResource
*)node1
->Data();
1443 wxString
childResType(child
->GetType());
1445 if ((childResType
== "wxMessage" || childResType
== "wxButton") &&
1446 child
->GetValue4() &&
1447 (strcmp(child
->GetValue4(), resourceName
) == 0))
1449 node1
= node1
->Next();
1456 // Given a wxButton or wxMessage, find the corresponding bitmap filename.
1457 char *wxResourceManager::FindBitmapFilenameForResource(wxItemResource
*resource
)
1459 if (!resource
|| !resource
->GetValue4())
1461 wxItemResource
*bitmapResource
= m_resourceTable
.FindResource(resource
->GetValue4());
1462 if (!bitmapResource
)
1465 wxNode
*node
= bitmapResource
->GetChildren().First();
1468 // Eventually augment this to return a bitmap of the right kind or something...
1469 // Maybe the root of the filename remains the same, so it doesn't matter which we
1470 // pick up. Otherwise how do we specify multiple filenames... too boring...
1471 wxItemResource
*child
= (wxItemResource
*)node
->Data();
1472 return child
->GetName();
1474 node
= node
->Next();
1479 wxItemResource
*wxResourceManager::FindBitmapResourceByFilename(char *filename
)
1481 m_resourceTable
.BeginFind();
1483 while (node
= m_resourceTable
.Next())
1485 wxItemResource
*res
= (wxItemResource
*)node
->Data();
1486 wxString
resType(res
->GetType());
1487 if (resType
== "wxBitmap")
1489 wxNode
*node1
= res
->GetChildren().First();
1492 wxItemResource
*child
= (wxItemResource
*)node1
->Data();
1493 if (child
->GetName() && (strcmp(child
->GetName(), filename
) == 0))
1495 node1
= node1
->Next();
1502 // Deletes 'win' and creates a new window from the resource that
1503 // was associated with it. E.g. if you can't change properties on the
1504 // fly, you'll need to delete the window and create it again.
1505 wxWindow
*wxResourceManager::RecreateWindowFromResource(wxWindow
*win
, wxWindowPropertyInfo
*info
)
1507 wxItemResource
*resource
= FindResourceForWindow(win
);
1509 // Put the current window properties into the wxItemResource object
1511 wxWindowPropertyInfo
*newInfo
= NULL
;
1514 newInfo
= CreatePropertyInfoForWindow(win
);
1518 info
->InstantiateResource(resource
);
1520 wxWindow
*newWin
= NULL
;
1521 wxWindow
*parent
= win
->GetParent();
1523 if (win
->IsKindOf(CLASSINFO(wxPanel
)))
1526 newWin
= FindWindowForResource(resource
);
1530 DisassociateResource(resource
);
1532 newWin
= m_resourceTable
.CreateItem((wxPanel
*)parent
, resource
);
1533 AssociateResource(resource
, newWin
);
1534 UpdateResourceList();
1538 info
->SetPropertyWindow(newWin
);
1546 // Delete resource highlighted in the listbox
1547 bool wxResourceManager::DeleteSelection()
1549 int sel
= m_editorResourceTree
->GetSelection();
1552 wxItemResource
*res
= (wxItemResource
*)m_editorResourceTree
->GetItemData(sel
);
1553 wxWindow
*win
= FindWindowForResource(res
);
1556 DeleteResource(win
);
1558 UpdateResourceList();
1567 // Delete resource highlighted in the listbox
1568 bool wxResourceManager::RecreateSelection()
1570 wxNode
*node
= GetSelections().First();
1573 wxControl
*item
= (wxControl
*)node
->Data();
1574 wxResourceEditorControlHandler
*childHandler
= (wxResourceEditorControlHandler
*)item
->GetEventHandler();
1575 wxNode
*next
= node
->Next();
1576 childHandler
->SelectItem(FALSE
);
1578 RemoveSelection(item
);
1580 RecreateWindowFromResource(item
);
1587 bool wxResourceManager::EditDialog(wxDialog
*dialog
, wxWindow
*parent
)
1592 // Ensures that all currently shown windows are saved to resources,
1593 // e.g. just before writing to a .wxr file.
1594 bool wxResourceManager::InstantiateAllResourcesFromWindows()
1596 m_resourceTable
.BeginFind();
1598 while (node
= m_resourceTable
.Next())
1600 wxItemResource
*res
= (wxItemResource
*)node
->Data();
1601 wxString
resType(res
->GetType());
1603 if (resType
== "wxDialog")
1605 wxWindow
*win
= (wxWindow
*)FindWindowForResource(res
);
1607 InstantiateResourceFromWindow(res
, win
, TRUE
);
1609 else if (resType
== "wxPanel")
1611 wxWindow
*win
= (wxWindow
*)FindWindowForResource(res
);
1613 InstantiateResourceFromWindow(res
, win
, TRUE
);
1619 bool wxResourceManager::InstantiateResourceFromWindow(wxItemResource
*resource
, wxWindow
*window
, bool recurse
)
1621 wxWindowPropertyInfo
*info
= CreatePropertyInfoForWindow(window
);
1622 info
->SetResource(resource
);
1623 info
->InstantiateResource(resource
);
1628 wxNode
*node
= resource
->GetChildren().First();
1631 wxItemResource
*child
= (wxItemResource
*)node
->Data();
1632 wxWindow
*childWindow
= FindWindowForResource(child
);
1637 sprintf(buf
, "Could not find window %s", child
->GetName());
1638 wxMessageBox(buf
, "Dialog Editor problem", wxOK
);
1641 InstantiateResourceFromWindow(child
, childWindow
, recurse
);
1642 node
= node
->Next();
1649 // Create a window information object for the give window
1650 wxWindowPropertyInfo
*wxResourceManager::CreatePropertyInfoForWindow(wxWindow
*win
)
1652 wxWindowPropertyInfo
*info
= NULL
;
1653 if (win
->IsKindOf(CLASSINFO(wxScrollBar
)))
1655 info
= new wxScrollBarPropertyInfo(win
);
1657 else if (win
->IsKindOf(CLASSINFO(wxStaticBox
)))
1659 info
= new wxGroupBoxPropertyInfo(win
);
1661 else if (win
->IsKindOf(CLASSINFO(wxCheckBox
)))
1663 info
= new wxCheckBoxPropertyInfo(win
);
1665 else if (win
->IsKindOf(CLASSINFO(wxSlider
)))
1667 info
= new wxSliderPropertyInfo(win
);
1669 else if (win
->IsKindOf(CLASSINFO(wxGauge
)))
1671 info
= new wxGaugePropertyInfo(win
);
1673 else if (win
->IsKindOf(CLASSINFO(wxListBox
)))
1675 info
= new wxListBoxPropertyInfo(win
);
1677 else if (win
->IsKindOf(CLASSINFO(wxRadioBox
)))
1679 info
= new wxRadioBoxPropertyInfo(win
);
1681 else if (win
->IsKindOf(CLASSINFO(wxRadioButton
)))
1683 info
= new wxRadioButtonPropertyInfo(win
);
1685 else if (win
->IsKindOf(CLASSINFO(wxChoice
)))
1687 info
= new wxChoicePropertyInfo(win
);
1689 else if (win
->IsKindOf(CLASSINFO(wxButton
)))
1691 info
= new wxButtonPropertyInfo(win
);
1693 else if (win
->IsKindOf(CLASSINFO(wxBitmapButton
)))
1695 info
= new wxBitmapButtonPropertyInfo(win
);
1697 else if (win
->IsKindOf(CLASSINFO(wxStaticText
)))
1699 info
= new wxStaticTextPropertyInfo(win
);
1701 else if (win
->IsKindOf(CLASSINFO(wxStaticBitmap
)))
1703 info
= new wxStaticBitmapPropertyInfo(win
);
1705 else if (win
->IsKindOf(CLASSINFO(wxTextCtrl
)))
1707 info
= new wxTextPropertyInfo(win
);
1709 else if (win
->IsKindOf(CLASSINFO(wxPanel
)))
1711 info
= new wxPanelPropertyInfo(win
);
1715 info
= new wxWindowPropertyInfo(win
);
1720 // Edit the given window
1721 void wxResourceManager::EditWindow(wxWindow
*win
)
1723 wxWindowPropertyInfo
*info
= CreatePropertyInfoForWindow(win
);
1726 info
->SetResource(FindResourceForWindow(win
));
1727 wxString
str("Editing ");
1728 str
+= win
->GetClassInfo()->GetClassName();
1730 if (win
->GetName() != "")
1731 str
+= win
->GetName();
1733 str
+= "properties";
1734 info
->Edit(NULL
, str
);
1740 * Resource editor frame
1743 IMPLEMENT_CLASS(wxResourceEditorFrame
, wxFrame
)
1745 BEGIN_EVENT_TABLE(wxResourceEditorFrame
, wxFrame
)
1746 EVT_MENU(wxID_NEW
, wxResourceEditorFrame::OnNew
)
1747 EVT_MENU(RESED_NEW_DIALOG
, wxResourceEditorFrame::OnNewDialog
)
1748 EVT_MENU(wxID_OPEN
, wxResourceEditorFrame::OnOpen
)
1749 EVT_MENU(RESED_CLEAR
, wxResourceEditorFrame::OnClear
)
1750 EVT_MENU(wxID_SAVE
, wxResourceEditorFrame::OnSave
)
1751 EVT_MENU(wxID_SAVEAS
, wxResourceEditorFrame::OnSaveAs
)
1752 EVT_MENU(wxID_EXIT
, wxResourceEditorFrame::OnExit
)
1753 EVT_MENU(wxID_ABOUT
, wxResourceEditorFrame::OnAbout
)
1754 EVT_MENU(RESED_CONTENTS
, wxResourceEditorFrame::OnContents
)
1755 EVT_MENU(RESED_DELETE
, wxResourceEditorFrame::OnDeleteSelection
)
1756 EVT_MENU(RESED_RECREATE
, wxResourceEditorFrame::OnRecreateSelection
)
1757 EVT_MENU(RESED_TEST
, wxResourceEditorFrame::OnTest
)
1760 wxResourceEditorFrame::wxResourceEditorFrame(wxResourceManager
*resMan
, wxFrame
*parent
, const wxString
& title
,
1761 const wxPoint
& pos
, const wxSize
& size
, long style
, const wxString
& name
):
1762 wxFrame(parent
, -1, title
, pos
, size
, style
, name
)
1767 wxResourceEditorFrame::~wxResourceEditorFrame()
1771 void wxResourceEditorFrame::OnNew(wxCommandEvent
& event
)
1773 manager
->New(FALSE
);
1776 void wxResourceEditorFrame::OnNewDialog(wxCommandEvent
& event
)
1778 manager
->CreateNewPanel();
1781 void wxResourceEditorFrame::OnOpen(wxCommandEvent
& event
)
1786 void wxResourceEditorFrame::OnClear(wxCommandEvent
& event
)
1788 manager
->Clear(TRUE
, FALSE
);
1791 void wxResourceEditorFrame::OnSave(wxCommandEvent
& event
)
1796 void wxResourceEditorFrame::OnSaveAs(wxCommandEvent
& event
)
1801 void wxResourceEditorFrame::OnExit(wxCommandEvent
& event
)
1803 manager
->Clear(TRUE
, FALSE
) ;
1807 void wxResourceEditorFrame::OnAbout(wxCommandEvent
& event
)
1810 sprintf(buf
, "wxWindows Dialog Editor %.1f\nAuthor: Julian Smart J.Smart@ed.ac.uk\nJulian Smart (c) 1996", wxDIALOG_EDITOR_VERSION
);
1811 wxMessageBox(buf
, "About Dialog Editor", wxOK
|wxCENTRE
);
1814 void wxResourceEditorFrame::OnTest(wxCommandEvent
& event
)
1816 manager
->TestCurrentDialog(this);
1819 void wxResourceEditorFrame::OnContents(wxCommandEvent
& event
)
1821 wxBeginBusyCursor();
1822 manager
->GetHelpController()->LoadFile();
1823 manager
->GetHelpController()->DisplayContents();
1827 void wxResourceEditorFrame::OnDeleteSelection(wxCommandEvent
& event
)
1829 manager
->DeleteSelection();
1832 void wxResourceEditorFrame::OnRecreateSelection(wxCommandEvent
& event
)
1834 manager
->RecreateSelection();
1837 bool wxResourceEditorFrame::OnClose()
1839 if (manager
->Modified())
1841 if (!manager
->Clear(TRUE
, FALSE
))
1849 manager
->m_resourceEditorWindowSize
.width
= w
;
1850 manager
->m_resourceEditorWindowSize
.height
= h
;
1853 GetPosition(&x
, &y
);
1855 manager
->m_resourceEditorWindowSize
.x
= x
;
1856 manager
->m_resourceEditorWindowSize
.y
= y
;
1858 manager
->SetEditorFrame(NULL
);
1859 manager
->SetEditorToolBar(NULL
);
1865 * Resource editor window that contains the dialog/panel being edited
1868 BEGIN_EVENT_TABLE(wxResourceEditorScrolledWindow
, wxScrolledWindow
)
1869 EVT_SCROLL(wxResourceEditorScrolledWindow::OnScroll
)
1870 EVT_PAINT(wxResourceEditorScrolledWindow::OnPaint
)
1873 wxResourceEditorScrolledWindow::wxResourceEditorScrolledWindow(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
,
1875 wxScrolledWindow(parent
, -1, pos
, size
, style
)
1879 m_childWindow
= NULL
;
1882 wxResourceEditorScrolledWindow::~wxResourceEditorScrolledWindow()
1886 void wxResourceEditorScrolledWindow::OnScroll(wxScrollEvent
& event
)
1888 wxScrolledWindow::OnScroll(event
);
1891 ViewStart(& x
, & y
);
1894 m_childWindow
->Move(m_marginX
+ (- x
* 10), m_marginY
+ (- y
* 10));
1897 void wxResourceEditorScrolledWindow::OnPaint(wxPaintEvent
& event
)
1904 void wxResourceEditorScrolledWindow::DrawTitle(wxDC
& dc
)
1908 wxItemResource
* res
= wxResourceManager::GetCurrentResourceManager()->FindResourceForWindow(m_childWindow
);
1911 wxString
str(res
->GetTitle());
1913 ViewStart(& x
, & y
);
1915 wxFont
font(10, wxSWISS
, wxNORMAL
, wxBOLD
);
1917 dc
.SetBackgroundMode(wxTRANSPARENT
);
1918 dc
.SetTextForeground(wxColour(0, 0, 0));
1921 dc
.GetTextExtent(str
, & w
, & h
);
1923 dc
.DrawText(str
, m_marginX
+ (- x
* 10), m_marginY
+ (- y
* 10) - h
- 5);
1928 // Popup menu callback
1929 void ObjectMenuProc(wxMenu
& menu
, wxCommandEvent
& event
)
1931 wxWindow
*data
= (wxWindow
*)menu
.GetClientData();
1935 switch (event
.GetInt())
1937 case OBJECT_MENU_EDIT
:
1939 wxResourceManager::GetCurrentResourceManager()->EditWindow(data
);
1942 case OBJECT_MENU_DELETE
:
1944 wxResourceManager::GetCurrentResourceManager()->SaveInfoAndDeleteHandler(data
);
1945 wxResourceManager::GetCurrentResourceManager()->DeleteResource(data
);
1946 wxResourceManager::GetCurrentResourceManager()->DeleteWindow(data
);
1959 BEGIN_EVENT_TABLE(EditorToolBar
, wxToolBar
)
1960 EVT_PAINT(EditorToolBar::OnPaint
)
1963 EditorToolBar::EditorToolBar(wxFrame
*frame
, const wxPoint
& pos
, const wxSize
& size
,
1965 wxToolBar(frame
, -1, pos
, size
, style
)
1969 bool EditorToolBar::OnLeftClick(int toolIndex
, bool toggled
)
1971 wxResourceManager
*manager
= wxResourceManager::GetCurrentResourceManager();
1975 case TOOLBAR_LOAD_FILE
:
1982 manager
->CreateNewPanel();
1985 case TOOLBAR_SAVE_FILE
:
1992 wxBeginBusyCursor();
1993 manager
->GetHelpController()->LoadFile();
1994 manager
->GetHelpController()->DisplayContents();
1998 case TOOLBAR_FORMAT_HORIZ
:
2000 manager
->AlignItems(TOOLBAR_FORMAT_HORIZ
);
2003 case TOOLBAR_FORMAT_HORIZ_LEFT_ALIGN
:
2005 manager
->AlignItems(TOOLBAR_FORMAT_HORIZ_LEFT_ALIGN
);
2008 case TOOLBAR_FORMAT_HORIZ_RIGHT_ALIGN
:
2010 manager
->AlignItems(TOOLBAR_FORMAT_HORIZ_RIGHT_ALIGN
);
2013 case TOOLBAR_FORMAT_VERT
:
2015 manager
->AlignItems(TOOLBAR_FORMAT_VERT
);
2018 case TOOLBAR_FORMAT_VERT_TOP_ALIGN
:
2020 manager
->AlignItems(TOOLBAR_FORMAT_VERT_TOP_ALIGN
);
2023 case TOOLBAR_FORMAT_VERT_BOT_ALIGN
:
2025 manager
->AlignItems(TOOLBAR_FORMAT_VERT_BOT_ALIGN
);
2028 case TOOLBAR_COPY_SIZE
:
2030 manager
->CopySize();
2033 case TOOLBAR_TO_BACK
:
2035 manager
->ToBackOrFront(TRUE
);
2038 case TOOLBAR_TO_FRONT
:
2040 manager
->ToBackOrFront(FALSE
);
2049 void EditorToolBar::OnMouseEnter(int toolIndex
)
2051 wxFrame
*frame
= (wxFrame
*)GetParent();
2059 case TOOLBAR_LOAD_FILE
:
2060 frame
->SetStatusText("Load project file");
2062 case TOOLBAR_SAVE_FILE
:
2063 frame
->SetStatusText("Save project file");
2066 frame
->SetStatusText("Create a new resource");
2068 case TOOLBAR_FORMAT_HORIZ
:
2069 frame
->SetStatusText("Align items horizontally");
2071 case TOOLBAR_FORMAT_VERT
:
2072 frame
->SetStatusText("Align items vertically");
2074 case TOOLBAR_FORMAT_HORIZ_LEFT_ALIGN
:
2075 frame
->SetStatusText("Left-align items");
2077 case TOOLBAR_FORMAT_HORIZ_RIGHT_ALIGN
:
2078 frame
->SetStatusText("Right-align items");
2080 case TOOLBAR_FORMAT_VERT_TOP_ALIGN
:
2081 frame
->SetStatusText("Top-align items");
2083 case TOOLBAR_FORMAT_VERT_BOT_ALIGN
:
2084 frame
->SetStatusText("Bottom-align items");
2086 case TOOLBAR_COPY_SIZE
:
2087 frame
->SetStatusText("Copy size from first selection");
2089 case TOOLBAR_TO_FRONT
:
2090 frame
->SetStatusText("Put image to front");
2092 case TOOLBAR_TO_BACK
:
2093 frame
->SetStatusText("Put image to back");
2096 frame
->SetStatusText("Display help contents");
2102 else frame
->SetStatusText("");
2105 void EditorToolBar::OnPaint(wxPaintEvent
& event
)
2107 wxToolBar::OnPaint(event
);
2112 dc
.SetPen(wxBLACK_PEN
);
2113 dc
.SetBrush(wxTRANSPARENT_BRUSH
);
2114 dc
.DrawLine(0, h
-1, w
, h
-1);