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(__WXMOTIF__)
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
117 csFrame
* frame
= new csFrame(m_docManager
, NULL
, -1, "OGL Studio", m_mainFramePos
, m_mainFrameSize
,
118 wxDEFAULT_FRAME_STYLE
| wxHSCROLL
| wxVSCROLL
);
121 frame
->SetIcon(wxICON(studio
));
124 wxMenu
*fileMenu
= new wxMenu
;
126 fileMenu
->Append(wxID_NEW
, "&New...\tCtrl+N");
127 fileMenu
->Append(wxID_OPEN
, "&Open...\tCtrl+O");
129 fileMenu
->AppendSeparator();
131 fileMenu
->Append(wxID_PRINT
, "&Print...\tCtrl+P");
132 fileMenu
->Append(wxID_PRINT_SETUP
, "Print &Setup...");
133 fileMenu
->Append(wxID_PREVIEW
, "Print Pre&view");
134 fileMenu
->AppendSeparator();
135 fileMenu
->Append(wxID_EXIT
, "E&xit");
137 // A history of files visited. Use this menu.
138 m_docManager
->FileHistoryUseMenu(fileMenu
);
140 wxMenu
*viewMenu
= new wxMenu
;
141 viewMenu
->Append(ID_CS_SETTINGS
, "&Settings...");
143 wxMenu
*helpMenu
= new wxMenu
;
144 helpMenu
->Append(wxID_HELP
, "&Help Contents\tF1");
145 helpMenu
->Append(ID_CS_ABOUT
, "&About");
147 wxMenuBar
*menuBar
= new wxMenuBar
;
149 menuBar
->Append(fileMenu
, "&File");
150 menuBar
->Append(viewMenu
, "&View");
151 menuBar
->Append(helpMenu
, "&Help");
153 // Associate the menu bar with the frame
154 frame
->SetMenuBar(menuBar
);
156 // Load the file history
157 wxConfig
config("OGL Studio", "wxWindows");
158 m_docManager
->FileHistoryLoad(config
);
160 frame
->CreateStatusBar();
162 // The ordering of these is important for layout purposes
163 CreateDiagramToolBar(frame
);
164 CreatePalette(frame
);
165 CreateProjectWindow(frame
);
167 FillProjectTreeCtrl();
169 // Create the shape editing menu
170 m_shapeEditMenu
= new ShapeEditMenu
;
171 m_shapeEditMenu
->Append(ID_CS_EDIT_PROPERTIES
, "Edit properties");
172 m_shapeEditMenu
->AppendSeparator();
173 m_shapeEditMenu
->Append(ID_CS_ROTATE_CLOCKWISE
, "Rotate clockwise");
174 m_shapeEditMenu
->Append(ID_CS_ROTATE_ANTICLOCKWISE
, "Rotate anticlockwise");
175 m_shapeEditMenu
->AppendSeparator();
176 m_shapeEditMenu
->Append(ID_CS_CUT
, "Cut");
185 int csApp::OnExit(void)
189 delete m_symbolDatabase
;
190 m_symbolDatabase
= NULL
;
195 delete m_shapeEditMenu
;
196 m_shapeEditMenu
= NULL
;
204 * Centralised code for creating a document frame.
205 * Called from view.cpp, when a view is created.
208 wxMDIChildFrame
*csApp::CreateChildFrame(wxDocument
*doc
, wxView
*view
, wxMenu
** editMenuRet
)
210 //// Make a child frame
211 csMDIChildFrame
*subframe
= new csMDIChildFrame(doc
, view
, ((wxDocMDIParentFrame
*)GetTopWindow()), -1, "Child Frame",
212 wxPoint(10, 10), wxSize(300, 300), wxDEFAULT_FRAME_STYLE
);
215 subframe
->SetIcon(wxString("chart"));
218 subframe
->SetIcon(wxIcon("doc.xbm"));
222 wxMenu
*fileMenu
= new wxMenu
;
224 fileMenu
->Append(wxID_NEW
, "&New...\tCtrl+N");
225 fileMenu
->Append(wxID_OPEN
, "&Open...\tCtrl+O");
226 fileMenu
->Append(wxID_CLOSE
, "&Close\tCtrl+W");
227 fileMenu
->Append(wxID_SAVE
, "&Save\tCtrl+S");
228 fileMenu
->Append(wxID_SAVEAS
, "Save &As...\tF12");
230 fileMenu
->AppendSeparator();
231 fileMenu
->Append(wxID_PRINT
, "&Print...\tCtrl+P");
232 fileMenu
->Append(wxID_PRINT_SETUP
, "Print &Setup...");
233 fileMenu
->Append(wxID_PREVIEW
, "Print Pre&view");
235 fileMenu
->AppendSeparator();
236 fileMenu
->Append(wxID_EXIT
, "E&xit");
238 wxMenu
*editMenu
= NULL
;
240 editMenu
= new wxMenu
;
241 editMenu
->Append(wxID_UNDO
, "&Undo\tCtrl+Z");
242 editMenu
->Append(wxID_REDO
, "&Redo\tCtrl+Y");
243 editMenu
->AppendSeparator();
244 editMenu
->Append(wxID_CUT
, "Cu&t\tCtrl+X");
245 editMenu
->Append(wxID_COPY
, "&Copy\tCtrl+C");
246 editMenu
->Append(wxID_PASTE
, "&Paste\tCtrl+V");
247 editMenu
->Append(wxID_DUPLICATE
, "&Duplicate\tCtrl+D");
248 editMenu
->AppendSeparator();
249 editMenu
->Append(wxID_CLEAR
, "Cle&ar\tDelete");
250 editMenu
->Append(ID_CS_SELECT_ALL
, "Select A&ll\tCtrl+A");
251 editMenu
->AppendSeparator();
252 editMenu
->Append(ID_CS_EDIT_PROPERTIES
, "Edit P&roperties...");
254 *editMenuRet
= editMenu
;
256 m_docManager
->FileHistoryUseMenu(fileMenu
);
257 m_docManager
->FileHistoryAddFilesToMenu(fileMenu
);
259 doc
->GetCommandProcessor()->SetEditMenu(editMenu
);
261 wxMenu
*viewMenu
= new wxMenu
;
262 viewMenu
->Append(ID_CS_SETTINGS
, "&Settings...");
264 wxMenu
*helpMenu
= new wxMenu
;
265 helpMenu
->Append(wxID_HELP
, "&Help Contents\tF1");
266 helpMenu
->Append(ID_CS_ABOUT
, "&About");
268 wxMenuBar
*menuBar
= new wxMenuBar
;
270 menuBar
->Append(fileMenu
, "&File");
271 menuBar
->Append(editMenu
, "&Edit");
272 menuBar
->Append(viewMenu
, "&View");
273 menuBar
->Append(helpMenu
, "&Help");
275 //// Associate the menu bar with the frame
276 subframe
->SetMenuBar(menuBar
);
281 // Creates a canvas. Called by OnInit as a child of the main window
282 csCanvas
*csApp::CreateCanvas(wxView
*view
, wxFrame
*parent
)
285 parent
->GetClientSize(&width
, &height
);
287 // Non-retained canvas
288 csCanvas
*canvas
= new csCanvas((csDiagramView
*) view
, parent
, 1000, wxPoint(0, 0), wxSize(width
, height
), wxSUNKEN_BORDER
);
290 wxColour
bgColour("WHITE");
291 canvas
->SetBackgroundColour(bgColour
);
293 wxCursor
cursor(wxCURSOR_HAND
);
294 canvas
->SetCursor(cursor
);
296 // Give it scrollbars
297 canvas
->SetScrollbars(20, 20, 100, 100);
302 void csApp::InitToolBar(wxToolBar
* toolBar
)
304 wxBitmap
* bitmaps
[10];
307 bitmaps
[0] = new wxBitmap("new", wxBITMAP_TYPE_RESOURCE
);
308 bitmaps
[1] = new wxBitmap("open", wxBITMAP_TYPE_RESOURCE
);
309 bitmaps
[2] = new wxBitmap("save", wxBITMAP_TYPE_RESOURCE
);
310 bitmaps
[3] = new wxBitmap("copy", wxBITMAP_TYPE_RESOURCE
);
311 bitmaps
[4] = new wxBitmap("cut", wxBITMAP_TYPE_RESOURCE
);
312 bitmaps
[5] = new wxBitmap("paste", wxBITMAP_TYPE_RESOURCE
);
313 bitmaps
[6] = new wxBitmap("print", wxBITMAP_TYPE_RESOURCE
);
314 bitmaps
[7] = new wxBitmap("help", wxBITMAP_TYPE_RESOURCE
);
315 bitmaps
[8] = new wxBitmap("undo", wxBITMAP_TYPE_RESOURCE
);
316 bitmaps
[9] = new wxBitmap("redo", wxBITMAP_TYPE_RESOURCE
);
317 #elif defined(__WXGTK__) || defined(__WXMOTIF__)
318 bitmaps
[0] = new wxBitmap( new_xpm
);
319 bitmaps
[1] = new wxBitmap( open_xpm
);
320 bitmaps
[2] = new wxBitmap( save_xpm
);
321 bitmaps
[3] = new wxBitmap( copy_xpm
);
322 bitmaps
[4] = new wxBitmap( cut_xpm
);
323 bitmaps
[5] = new wxBitmap( paste_xpm
);
324 bitmaps
[6] = new wxBitmap( print_xpm
);
325 bitmaps
[7] = new wxBitmap( help_xpm
);
326 bitmaps
[8] = new wxBitmap( undo_xpm
);
327 bitmaps
[9] = new wxBitmap( redo_xpm
);
329 #error "Not implemented for this platform."
332 toolBar
->AddTool(wxID_NEW
, *bitmaps
[0], wxNullBitmap
, FALSE
, -1, -1, NULL
, "New file");
333 toolBar
->AddTool(wxID_OPEN
, *bitmaps
[1], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Open file");
334 toolBar
->AddTool(wxID_SAVE
, *bitmaps
[2], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Save file");
335 toolBar
->AddSeparator();
336 toolBar
->AddTool(wxID_PRINT
, *bitmaps
[6], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Print");
337 toolBar
->AddSeparator();
338 toolBar
->AddTool(wxID_COPY
, *bitmaps
[3], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Copy");
339 toolBar
->AddTool(wxID_CUT
, *bitmaps
[4], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Cut");
340 toolBar
->AddTool(wxID_PASTE
, *bitmaps
[5], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Paste");
341 toolBar
->AddSeparator();
342 toolBar
->AddTool(wxID_UNDO
, *bitmaps
[8], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Undo");
343 toolBar
->AddTool(wxID_REDO
, *bitmaps
[9], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Redo");
344 toolBar
->AddSeparator();
345 toolBar
->AddTool(wxID_HELP
, *bitmaps
[7], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Help");
349 toolBar
->EnableTool(wxID_COPY
, FALSE
);
350 toolBar
->EnableTool(wxID_PASTE
, FALSE
);
351 toolBar
->EnableTool(wxID_PRINT
, FALSE
);
352 toolBar
->EnableTool(wxID_UNDO
, FALSE
);
353 toolBar
->EnableTool(wxID_REDO
, FALSE
);
356 for (i
= 0; i
< 10; i
++)
360 // Create and initialise the diagram toolbar
361 void csApp::CreateDiagramToolBar(wxFrame
* parent
)
363 // First create a layout window
364 wxSashLayoutWindow
* win
= new wxSashLayoutWindow(parent
, ID_LAYOUT_WINDOW_DIAGRAM_TOOLBAR
, wxDefaultPosition
, wxSize(200, 30), wxNO_BORDER
|wxSW_3D
|wxCLIP_CHILDREN
);
365 win
->SetDefaultSize(wxSize(10000, 30));
366 win
->SetOrientation(wxLAYOUT_HORIZONTAL
);
367 win
->SetAlignment(wxLAYOUT_TOP
);
368 win
->SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
370 m_diagramToolBarSashWindow
= win
;
371 m_diagramToolBarSashWindow
->Show(FALSE
);
373 // Create the actual toolbar
374 m_diagramToolBar
= new wxToolBar(win
, -1, wxDefaultPosition
, wxDefaultSize
, wxTB_HORIZONTAL
|wxNO_BORDER
|wxTB_FLAT
);
376 wxBitmap
* bitmaps
[11];
379 bitmaps
[0] = new wxBitmap("alignl", wxBITMAP_TYPE_RESOURCE
);
380 bitmaps
[1] = new wxBitmap("alignr", wxBITMAP_TYPE_RESOURCE
);
381 bitmaps
[2] = new wxBitmap("alignt", wxBITMAP_TYPE_RESOURCE
);
382 bitmaps
[3] = new wxBitmap("alignb", wxBITMAP_TYPE_RESOURCE
);
383 bitmaps
[4] = new wxBitmap("horiz", wxBITMAP_TYPE_RESOURCE
);
384 bitmaps
[5] = new wxBitmap("vert", wxBITMAP_TYPE_RESOURCE
);
385 bitmaps
[6] = new wxBitmap("copysize", wxBITMAP_TYPE_RESOURCE
);
386 bitmaps
[7] = new wxBitmap("linearrow", wxBITMAP_TYPE_RESOURCE
);
387 bitmaps
[8] = new wxBitmap("newpoint", wxBITMAP_TYPE_RESOURCE
);
388 bitmaps
[9] = new wxBitmap("cutpoint", wxBITMAP_TYPE_RESOURCE
);
389 bitmaps
[10] = new wxBitmap("straighten", wxBITMAP_TYPE_RESOURCE
);
390 #elif defined(__WXGTK__) || defined(__WXMOTIF__)
391 bitmaps
[0] = new wxBitmap( alignl_xpm
);
392 bitmaps
[1] = new wxBitmap( alignr_xpm
);
393 bitmaps
[2] = new wxBitmap( alignt_xpm
);
394 bitmaps
[3] = new wxBitmap( alignb_xpm
);
395 bitmaps
[4] = new wxBitmap( horiz_xpm
);
396 bitmaps
[5] = new wxBitmap( vert_xpm
);
397 bitmaps
[6] = new wxBitmap( copysize_xpm
);
398 bitmaps
[7] = new wxBitmap( linearrow_xpm
);
399 bitmaps
[8] = new wxBitmap( newpoint_xpm
);
400 bitmaps
[9] = new wxBitmap( cutpoint_xpm
);
401 bitmaps
[10] = new wxBitmap( straight_xpm
);
403 #error "Not implemented for this platform."
406 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNL
, *bitmaps
[0], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align left");
407 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNR
, *bitmaps
[1], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align right");
408 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNT
, *bitmaps
[2], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align top");
409 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGNB
, *bitmaps
[3], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align bottom");
410 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGN_HORIZ
, *bitmaps
[4], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align horizontally");
411 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_ALIGN_VERT
, *bitmaps
[5], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Align vertically");
412 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_COPY_SIZE
, *bitmaps
[6], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Copy size");
413 m_diagramToolBar
->AddSeparator();
414 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_LINE_ARROW
, *bitmaps
[7], wxNullBitmap
, TRUE
, -1, -1, NULL
, "Toggle arrow");
415 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_NEW_POINT
, *bitmaps
[8], wxNullBitmap
, FALSE
, -1, -1, NULL
, "New line point");
416 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_CUT_POINT
, *bitmaps
[9], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Cut line point");
417 m_diagramToolBar
->AddTool(DIAGRAM_TOOLBAR_STRAIGHTEN
, *bitmaps
[10], wxNullBitmap
, FALSE
, -1, -1, NULL
, "Straighten lines");
419 m_diagramToolBar
->Realize();
422 for (i
= 0; i
< 11; i
++)
425 // Create a combobox for point size
426 int maxPointSize
= 40;
427 wxString
*pointSizes
= new wxString
[maxPointSize
];
428 for (i
= 1; i
<= maxPointSize
; i
++)
430 pointSizes
[i
-1].Printf("%d", i
);
446 m_pointSizeComboBox
= new wxComboBox(m_diagramToolBar
, ID_WINDOW_POINT_SIZE_COMBOBOX
,
447 "", wxPoint(controlX
, 1), wxSize(pointSizeW
, pointSizeH
), maxPointSize
, pointSizes
);
451 m_diagramToolBar
->AddControl(m_pointSizeComboBox
);
454 m_pointSizeComboBox
->SetSelection(10 - 1);
456 // Create a combobox for zooming
460 int noStrings
= (maxZoom
- minZoom
)/5 ;
461 wxString
*zoomStrings
= new wxString
[noStrings
];
462 for (i
= 0; i
< noStrings
; i
++)
464 zoomStrings
[noStrings
- i
- 1].Printf("%d%%", (i
*increment
+ minZoom
));
467 controlX
+= pointSizeW
+ 10;
469 m_zoomComboBox
= new wxComboBox(m_diagramToolBar
, ID_WINDOW_ZOOM_COMBOBOX
,
470 "", wxPoint(controlX
, 1), wxSize(zoomW
, zoomH
), noStrings
, zoomStrings
);
471 delete[] zoomStrings
;
474 m_diagramToolBar
->AddControl(m_zoomComboBox
);
477 // i = (zoom - minZoom)/increment
478 // index = noStrings - i - 1
480 i
= (100 - minZoom
)/increment
;
481 m_zoomComboBox
->SetSelection(noStrings
- i
- 1);
484 // Read/write configuration information
485 bool csApp::ReadOptions()
487 wxConfig
config("OGL Studio", "wxWindows");
489 config
.Read("mainX", & m_mainFramePos
.x
);
490 config
.Read("mainY", & m_mainFramePos
.y
);
491 config
.Read("mainWidth", & m_mainFrameSize
.x
);
492 config
.Read("mainHeight", & m_mainFrameSize
.y
);
493 config
.Read("gridStyle", & m_gridStyle
);
494 config
.Read("gridSpacing", & m_gridSpacing
);
499 bool csApp::WriteOptions()
501 wxConfig
config("OGL Studio", "wxWindows");
503 config
.Write("mainX", (long) m_mainFramePos
.x
);
504 config
.Write("mainY", (long) m_mainFramePos
.y
);
505 config
.Write("mainWidth", (long) m_mainFrameSize
.x
);
506 config
.Write("mainHeight", (long) m_mainFrameSize
.y
);
507 config
.Write("gridStyle", (long) m_gridStyle
);
508 config
.Write("gridSpacing", (long) m_gridSpacing
);
510 m_docManager
->FileHistorySave(config
);