1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Studio application class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
24 #include "wx/resource.h"
25 #include "wx/config.h"
26 #include "wx/laywin.h"
32 #include "cspalette.h"
36 #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
37 #include "bitmaps/new.xpm"
38 #include "bitmaps/open.xpm"
39 #include "bitmaps/save.xpm"
40 #include "bitmaps/copy.xpm"
41 #include "bitmaps/cut.xpm"
42 #include "bitmaps/paste.xpm"
43 #include "bitmaps/print.xpm"
44 #include "bitmaps/help.xpm"
45 #include "bitmaps/undo.xpm"
46 #include "bitmaps/redo.xpm"
48 #include "bitmaps/alignl.xpm"
49 #include "bitmaps/alignr.xpm"
50 #include "bitmaps/alignt.xpm"
51 #include "bitmaps/alignb.xpm"
52 #include "bitmaps/horiz.xpm"
53 #include "bitmaps/vert.xpm"
54 #include "bitmaps/copysize.xpm"
55 #include "bitmaps/linearrow.xpm"
56 #include "bitmaps/newpoint.xpm"
57 #include "bitmaps/cutpoint.xpm"
58 #include "bitmaps/straight.xpm"
68 m_diagramPalette
= NULL
;
69 m_diagramToolBar
= NULL
;
70 m_projectTreeCtrl
= NULL
;
71 m_diagramPaletteSashWindow
= NULL
;
72 m_projectSashWindow
= NULL
;
73 m_symbolDatabase
= NULL
;
74 m_pointSizeComboBox
= NULL
;
75 m_zoomComboBox
= NULL
;
76 m_shapeEditMenu
= NULL
;
79 m_mainFramePos
.x
= 20;
80 m_mainFramePos
.y
= 20;
81 m_mainFrameSize
.x
= 500;
82 m_mainFrameSize
.y
= 400;
83 m_gridStyle
= csGRID_STYLE_INVISIBLE
;
91 // Initialise this in OnInit, not statically
92 bool csApp::OnInit(void)
94 if (!wxResourceParseFile("studio_resources.wxr"))
96 wxMessageBox("Could not find or parse resource file: studio_resources.wxr", "Studio");
100 m_helpController
.Initialize("studio.hlp");
108 //// Create a document manager
109 m_docManager
= new wxDocManager
;
111 //// Create a template relating drawing documents to their views
112 (void) new wxDocTemplate(m_docManager
, "Diagram", "*.dia", "", "dia", "Diagram Doc", "Diagram View",
113 CLASSINFO(csDiagramDocument
), CLASSINFO(csDiagramView
));
115 // Create the main frame window.
116 // Note that we use a frame style that doesn't have wxCLIP_CHILDREN in it
117 // (the default frame style contains wxCLIP_CHILDREN), otherwise the client
118 // area doesn't refresh properly when we change its position, under Windows.
120 #define wxDEFAULT_FRAME_STYLE_NO_CLIP \
121 (wxSYSTEM_MENU | wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION)
123 csFrame
* frame
= new csFrame(m_docManager
, NULL
, -1, "OGL Studio", m_mainFramePos
, m_mainFrameSize
,
124 wxDEFAULT_FRAME_STYLE_NO_CLIP
| wxHSCROLL
| wxVSCROLL
);
127 frame
->SetIcon(wxICON(studio
));
130 wxMenu
*fileMenu
= new wxMenu
;
132 fileMenu
->Append(wxID_NEW
, "&New...\tCtrl+N");
133 fileMenu
->Append(wxID_OPEN
, "&Open...\tCtrl+O");
135 fileMenu
->AppendSeparator();
137 fileMenu
->Append(wxID_PRINT
, "&Print...\tCtrl+P");
138 fileMenu
->Append(wxID_PRINT_SETUP
, "Print &Setup...");
139 fileMenu
->Append(wxID_PREVIEW
, "Print Pre&view");
140 fileMenu
->AppendSeparator();
141 fileMenu
->Append(wxID_EXIT
, "E&xit");
143 // A history of files visited. Use this menu.
144 m_docManager
->FileHistoryUseMenu(fileMenu
);
146 wxMenu
*viewMenu
= new wxMenu
;
147 viewMenu
->Append(ID_CS_SETTINGS
, "&Settings...");
149 wxMenu
*helpMenu
= new wxMenu
;
150 helpMenu
->Append(wxID_HELP
, "&Help Contents\tF1");
151 helpMenu
->Append(ID_CS_ABOUT
, "&About");
153 wxMenuBar
*menuBar
= new wxMenuBar
;
155 menuBar
->Append(fileMenu
, "&File");
156 menuBar
->Append(viewMenu
, "&View");
157 menuBar
->Append(helpMenu
, "&Help");
159 // Associate the menu bar with the frame
160 frame
->SetMenuBar(menuBar
);
162 // Load the file history
163 wxConfig
config("OGL Studio", "wxWindows");
164 m_docManager
->FileHistoryLoad(config
);
166 frame
->CreateStatusBar();
168 // The ordering of these is important for layout purposes
169 CreateDiagramToolBar(frame
);
170 CreatePalette(frame
);
173 CreateProjectWindow(frame);
174 FillProjectTreeCtrl();
177 // Create the shape editing menu
178 m_shapeEditMenu
= new ShapeEditMenu
;
179 m_shapeEditMenu
->Append(ID_CS_EDIT_PROPERTIES
, "Edit properties");
180 m_shapeEditMenu
->AppendSeparator();
181 m_shapeEditMenu
->Append(ID_CS_ROTATE_CLOCKWISE
, "Rotate clockwise");
182 m_shapeEditMenu
->Append(ID_CS_ROTATE_ANTICLOCKWISE
, "Rotate anticlockwise");
183 m_shapeEditMenu
->AppendSeparator();
184 m_shapeEditMenu
->Append(ID_CS_CUT
, "Cut");
193 int csApp::OnExit(void)
197 delete m_symbolDatabase
;
198 m_symbolDatabase
= NULL
;
203 delete m_shapeEditMenu
;
204 m_shapeEditMenu
= NULL
;
212 * Centralised code for creating a document frame.
213 * Called from view.cpp, when a view is created.
216 wxMDIChildFrame
*csApp::CreateChildFrame(wxDocument
*doc
, wxView
*view
, wxMenu
** editMenuRet
)
218 //// Make a child frame
219 csMDIChildFrame
*subframe
= new csMDIChildFrame(doc
, view
, ((wxDocMDIParentFrame
*)GetTopWindow()), -1, "Child Frame",
220 wxPoint(10, 10), wxSize(300, 300), wxDEFAULT_FRAME_STYLE
);
223 subframe
->SetIcon(wxString("chart"));
226 subframe
->SetIcon(wxIcon("doc.xbm"));
230 wxMenu
*fileMenu
= new wxMenu
;
232 fileMenu
->Append(wxID_NEW
, "&New...\tCtrl+N");
233 fileMenu
->Append(wxID_OPEN
, "&Open...\tCtrl+O");
234 fileMenu
->Append(wxID_CLOSE
, "&Close\tCtrl+W");
235 fileMenu
->Append(wxID_SAVE
, "&Save\tCtrl+S");
236 fileMenu
->Append(wxID_SAVEAS
, "Save &As...\tF12");
238 fileMenu
->AppendSeparator();
239 fileMenu
->Append(wxID_PRINT
, "&Print...\tCtrl+P");
240 fileMenu
->Append(wxID_PRINT_SETUP
, "Print &Setup...");
241 fileMenu
->Append(wxID_PREVIEW
, "Print Pre&view");
243 fileMenu
->AppendSeparator();
244 fileMenu
->Append(wxID_EXIT
, "E&xit");
246 wxMenu
*editMenu
= NULL
;
248 editMenu
= new wxMenu
;
249 editMenu
->Append(wxID_UNDO
, "&Undo\tCtrl+Z");
250 editMenu
->Append(wxID_REDO
, "&Redo\tCtrl+Y");
251 editMenu
->AppendSeparator();
252 editMenu
->Append(wxID_CUT
, "Cu&t\tCtrl+X");
253 editMenu
->Append(wxID_COPY
, "&Copy\tCtrl+C");
254 editMenu
->Append(wxID_PASTE
, "&Paste\tCtrl+V");
255 editMenu
->Append(wxID_DUPLICATE
, "&Duplicate\tCtrl+D");
256 editMenu
->AppendSeparator();
257 editMenu
->Append(wxID_CLEAR
, "Cle&ar\tDelete");
258 editMenu
->Append(ID_CS_SELECT_ALL
, "Select A&ll\tCtrl+A");
259 editMenu
->AppendSeparator();
260 editMenu
->Append(ID_CS_EDIT_PROPERTIES
, "Edit P&roperties...");
262 *editMenuRet
= editMenu
;
264 m_docManager
->FileHistoryUseMenu(fileMenu
);
265 m_docManager
->FileHistoryAddFilesToMenu(fileMenu
);
267 doc
->GetCommandProcessor()->SetEditMenu(editMenu
);
269 wxMenu
*viewMenu
= new wxMenu
;
270 viewMenu
->Append(ID_CS_SETTINGS
, "&Settings...");
272 wxMenu
*helpMenu
= new wxMenu
;
273 helpMenu
->Append(wxID_HELP
, "&Help Contents\tF1");
274 helpMenu
->Append(ID_CS_ABOUT
, "&About");
276 wxMenuBar
*menuBar
= new wxMenuBar
;
278 menuBar
->Append(fileMenu
, "&File");
279 menuBar
->Append(editMenu
, "&Edit");
280 menuBar
->Append(viewMenu
, "&View");
281 menuBar
->Append(helpMenu
, "&Help");
283 //// Associate the menu bar with the frame
284 subframe
->SetMenuBar(menuBar
);
289 // Creates a canvas. Called by OnInit as a child of the main window
290 csCanvas
*csApp::CreateCanvas(wxView
*view
, wxFrame
*parent
)
293 parent
->GetClientSize(&width
, &height
);
295 // Non-retained canvas
296 csCanvas
*canvas
= new csCanvas((csDiagramView
*) view
, parent
, 1000, wxPoint(0, 0), wxSize(width
, height
), wxSUNKEN_BORDER
);
298 wxColour
bgColour("WHITE");
299 canvas
->SetBackgroundColour(bgColour
);
301 wxCursor
cursor(wxCURSOR_HAND
);
302 canvas
->SetCursor(cursor
);
304 // Give it scrollbars
305 canvas
->SetScrollbars(20, 20, 100, 100);
310 void csApp::InitToolBar(wxToolBar
* toolBar
)
312 wxBitmap
* bitmaps
[10];
315 bitmaps
[0] = new wxBitmap("new", wxBITMAP_TYPE_RESOURCE
);
316 bitmaps
[1] = new wxBitmap("open", wxBITMAP_TYPE_RESOURCE
);
317 bitmaps
[2] = new wxBitmap("save", wxBITMAP_TYPE_RESOURCE
);
318 bitmaps
[3] = new wxBitmap("copy", wxBITMAP_TYPE_RESOURCE
);
319 bitmaps
[4] = new wxBitmap("cut", wxBITMAP_TYPE_RESOURCE
);
320 bitmaps
[5] = new wxBitmap("paste", wxBITMAP_TYPE_RESOURCE
);
321 bitmaps
[6] = new wxBitmap("print", wxBITMAP_TYPE_RESOURCE
);
322 bitmaps
[7] = new wxBitmap("help", wxBITMAP_TYPE_RESOURCE
);
323 bitmaps
[8] = new wxBitmap("undo", wxBITMAP_TYPE_RESOURCE
);
324 bitmaps
[9] = new wxBitmap("redo", wxBITMAP_TYPE_RESOURCE
);
325 #elif defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
326 bitmaps
[0] = new wxBitmap( new_xpm
);
327 bitmaps
[1] = new wxBitmap( open_xpm
);
328 bitmaps
[2] = new wxBitmap( save_xpm
);
329 bitmaps
[3] = new wxBitmap( copy_xpm
);
330 bitmaps
[4] = new wxBitmap( cut_xpm
);
331 bitmaps
[5] = new wxBitmap( paste_xpm
);
332 bitmaps
[6] = new wxBitmap( print_xpm
);
333 bitmaps
[7] = new wxBitmap( help_xpm
);
334 bitmaps
[8] = new wxBitmap( undo_xpm
);
335 bitmaps
[9] = new wxBitmap( redo_xpm
);
337 #error "Not implemented for this platform."
340 toolBar
->AddTool(wxID_NEW
, *bitmaps
[0], wxNullBitmap
, FALSE
, -1, -1, NULL
, "New file");
341 toolBar
->AddTool(wxID_OPEN
, *bitmaps
[1], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Open file");
342 toolBar
->AddTool(wxID_SAVE
, *bitmaps
[2], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Save file");
343 toolBar
->AddSeparator();
344 toolBar
->AddTool(wxID_PRINT
, *bitmaps
[6], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Print");
345 toolBar
->AddSeparator();
346 toolBar
->AddTool(wxID_COPY
, *bitmaps
[3], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Copy");
347 toolBar
->AddTool(wxID_CUT
, *bitmaps
[4], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Cut");
348 toolBar
->AddTool(wxID_PASTE
, *bitmaps
[5], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Paste");
349 toolBar
->AddSeparator();
350 toolBar
->AddTool(wxID_UNDO
, *bitmaps
[8], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Undo");
351 toolBar
->AddTool(wxID_REDO
, *bitmaps
[9], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Redo");
352 toolBar
->AddSeparator();
353 toolBar
->AddTool(wxID_HELP
, *bitmaps
[7], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Help");
357 toolBar
->EnableTool(wxID_COPY
, FALSE
);
358 toolBar
->EnableTool(wxID_PASTE
, FALSE
);
359 toolBar
->EnableTool(wxID_PRINT
, FALSE
);
360 toolBar
->EnableTool(wxID_UNDO
, FALSE
);
361 toolBar
->EnableTool(wxID_REDO
, FALSE
);
364 for (i
= 0; i
< 10; i
++)
368 // Create and initialise the diagram toolbar
369 void csApp::CreateDiagramToolBar(wxFrame
* parent
)
371 // First create a layout window
372 wxSashLayoutWindow
* win
= new wxSashLayoutWindow(parent
, ID_LAYOUT_WINDOW_DIAGRAM_TOOLBAR
, wxDefaultPosition
, wxSize(200, 30), wxNO_BORDER
|wxSW_3D
|wxCLIP_CHILDREN
);
373 win
->SetDefaultSize(wxSize(10000, 30));
374 win
->SetOrientation(wxLAYOUT_HORIZONTAL
);
375 win
->SetAlignment(wxLAYOUT_TOP
);
376 win
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
378 m_diagramToolBarSashWindow
= win
;
379 m_diagramToolBarSashWindow
->Show(FALSE
);
381 // Create the actual toolbar
382 m_diagramToolBar
= new wxToolBar(win
, -1, wxDefaultPosition
, wxDefaultSize
, wxTB_HORIZONTAL
|wxNO_BORDER
|wxTB_FLAT
);
384 wxBitmap
* bitmaps
[11];
387 bitmaps
[0] = new wxBitmap("alignl", wxBITMAP_TYPE_RESOURCE
);
388 bitmaps
[1] = new wxBitmap("alignr", wxBITMAP_TYPE_RESOURCE
);
389 bitmaps
[2] = new wxBitmap("alignt", wxBITMAP_TYPE_RESOURCE
);
390 bitmaps
[3] = new wxBitmap("alignb", wxBITMAP_TYPE_RESOURCE
);
391 bitmaps
[4] = new wxBitmap("horiz", wxBITMAP_TYPE_RESOURCE
);
392 bitmaps
[5] = new wxBitmap("vert", wxBITMAP_TYPE_RESOURCE
);
393 bitmaps
[6] = new wxBitmap("copysize", wxBITMAP_TYPE_RESOURCE
);
394 bitmaps
[7] = new wxBitmap("linearrow", wxBITMAP_TYPE_RESOURCE
);
395 bitmaps
[8] = new wxBitmap("newpoint", wxBITMAP_TYPE_RESOURCE
);
396 bitmaps
[9] = new wxBitmap("cutpoint", wxBITMAP_TYPE_RESOURCE
);
397 bitmaps
[10] = new wxBitmap("straighten", wxBITMAP_TYPE_RESOURCE
);
398 #elif defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
399 bitmaps
[0] = new wxBitmap( alignl_xpm
);
400 bitmaps
[1] = new wxBitmap( alignr_xpm
);
401 bitmaps
[2] = new wxBitmap( alignt_xpm
);
402 bitmaps
[3] = new wxBitmap( alignb_xpm
);
403 bitmaps
[4] = new wxBitmap( horiz_xpm
);
404 bitmaps
[5] = new wxBitmap( vert_xpm
);
405 bitmaps
[6] = new wxBitmap( copysize_xpm
);
406 bitmaps
[7] = new wxBitmap( linearrow_xpm
);
407 bitmaps
[8] = new wxBitmap( newpoint_xpm
);
408 bitmaps
[9] = new wxBitmap( cutpoint_xpm
);
409 bitmaps
[10] = new wxBitmap( straight_xpm
);
411 #error "Not implemented for this platform."
414 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNL
, *bitmaps
[0], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align left");
415 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNR
, *bitmaps
[1], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align right");
416 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNT
, *bitmaps
[2], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align top");
417 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNB
, *bitmaps
[3], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align bottom");
418 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGN_HORIZ
, *bitmaps
[4], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align horizontally");
419 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGN_VERT
, *bitmaps
[5], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align vertically");
420 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_COPY_SIZE
, *bitmaps
[6], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Copy size");
421 m_diagramToolBar
->AddSeparator();
422 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_LINE_ARROW
, *bitmaps
[7], wxNullBitmap
, TRUE
, -1, -1, NULL
, "Toggle arrow");
423 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_NEW_POINT
, *bitmaps
[8], wxNullBitmap
, FALSE
, -1, -1, NULL
, "New line point");
424 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_CUT_POINT
, *bitmaps
[9], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Cut line point");
425 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_STRAIGHTEN
, *bitmaps
[10], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Straighten lines");
427 m_diagramToolBar
->Realize();
430 for (i
= 0; i
< 11; i
++)
433 // Create a combobox for point size
434 int maxPointSize
= 40;
435 wxString
*pointSizes
= new wxString
[maxPointSize
];
436 for (i
= 1; i
<= maxPointSize
; i
++)
438 pointSizes
[i
-1].Printf("%d", i
);
454 m_pointSizeComboBox
= new wxComboBox(m_diagramToolBar
, ID_WINDOW_POINT_SIZE_COMBOBOX
,
455 "", wxPoint(controlX
, 1), wxSize(pointSizeW
, pointSizeH
), maxPointSize
, pointSizes
);
459 m_diagramToolBar
->AddControl(m_pointSizeComboBox
);
462 m_pointSizeComboBox
->SetSelection(10 - 1);
464 // Create a combobox for zooming
468 int noStrings
= (maxZoom
- minZoom
)/5 ;
469 wxString
*zoomStrings
= new wxString
[noStrings
];
470 for (i
= 0; i
< noStrings
; i
++)
472 zoomStrings
[noStrings
- i
- 1].Printf("%d%%", (i
*increment
+ minZoom
));
475 controlX
+= pointSizeW
+ 10;
477 m_zoomComboBox
= new wxComboBox(m_diagramToolBar
, ID_WINDOW_ZOOM_COMBOBOX
,
478 "", wxPoint(controlX
, 1), wxSize(zoomW
, zoomH
), noStrings
, zoomStrings
);
479 delete[] zoomStrings
;
482 m_diagramToolBar
->AddControl(m_zoomComboBox
);
485 // i = (zoom - minZoom)/increment
486 // index = noStrings - i - 1
488 i
= (100 - minZoom
)/increment
;
489 m_zoomComboBox
->SetSelection(noStrings
- i
- 1);
492 // Read/write configuration information
493 bool csApp::ReadOptions()
495 wxConfig
config("OGL Studio", "wxWindows");
497 config
.Read("mainX", & m_mainFramePos
.x
);
498 config
.Read("mainY", & m_mainFramePos
.y
);
499 config
.Read("mainWidth", & m_mainFrameSize
.x
);
500 config
.Read("mainHeight", & m_mainFrameSize
.y
);
501 config
.Read("gridStyle", & m_gridStyle
);
502 config
.Read("gridSpacing", & m_gridSpacing
);
507 bool csApp::WriteOptions()
509 wxConfig
config("OGL Studio", "wxWindows");
511 config
.Write("mainX", (long) m_mainFramePos
.x
);
512 config
.Write("mainY", (long) m_mainFramePos
.y
);
513 config
.Write("mainWidth", (long) m_mainFrameSize
.x
);
514 config
.Write("mainHeight", (long) m_mainFrameSize
.y
);
515 config
.Write("gridStyle", (long) m_gridStyle
);
516 config
.Write("gridSpacing", (long) m_gridSpacing
);
518 m_docManager
->FileHistorySave(config
);