git-svn-id: svn://10.65.10.50/branches/R_10_00@23238 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        project.cpp
 | |
| // Purpose:     Studio project classes
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:     27/7/98
 | |
| // RCS-ID:      $Id: project.cpp 27708 2004-06-09 16:42:34Z ABX $
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| // For compilers that support precompilation, includes "wx/wx.h".
 | |
| #include "wx/wxprec.h"
 | |
| 
 | |
| #ifdef __BORLANDC__
 | |
| #pragma hdrstop
 | |
| #endif
 | |
| 
 | |
| #ifndef WX_PRECOMP
 | |
| #include "wx/wx.h"
 | |
| #include "wx/mdi.h"
 | |
| #endif
 | |
| 
 | |
| #include "wx/laywin.h"
 | |
| #include "studio.h"
 | |
| #include "project.h"
 | |
| 
 | |
| IMPLEMENT_CLASS(csProjectTreeCtrl, wxTreeCtrl)
 | |
| 
 | |
| BEGIN_EVENT_TABLE(csProjectTreeCtrl, wxTreeCtrl)
 | |
| END_EVENT_TABLE()
 | |
| 
 | |
| // Define my frame constructor
 | |
| csProjectTreeCtrl::csProjectTreeCtrl(wxWindow *parent, const wxWindowID id, const wxPoint& pos, const wxSize& size, long style):
 | |
| 
 | |
|   wxTreeCtrl(parent, id, pos, size, style),
 | |
|   m_imageList(16, 16)
 | |
| {
 | |
|     m_imageList.Add(wxIcon(_T("folder1")));
 | |
|     m_imageList.Add(wxIcon(_T("file1")));
 | |
| 
 | |
|     SetImageList(& m_imageList);
 | |
| }
 | |
| 
 | |
| csProjectTreeCtrl::~csProjectTreeCtrl()
 | |
| {
 | |
|     SetImageList(NULL);
 | |
| }
 | |
| 
 | |
| // Create the project window
 | |
| bool csApp::CreateProjectWindow(wxFrame *WXUNUSED(parent))
 | |
| {
 | |
| #if 0
 | |
|     // Create a layout window
 | |
|     wxSashLayoutWindow* win = new wxSashLayoutWindow(parent, ID_LAYOUT_WINDOW_PROJECT, wxDefaultPosition, wxSize(200, 30), wxNO_BORDER|wxSW_3D|wxCLIP_CHILDREN);
 | |
|     win->SetDefaultSize(wxSize(150, 10000));
 | |
|     win->SetOrientation(wxLAYOUT_VERTICAL);
 | |
|     win->SetAlignment(wxLAYOUT_LEFT);
 | |
|     win->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
 | |
|     win->SetSashVisible(wxSASH_RIGHT, true);
 | |
|     win->SetExtraBorderSize(5);
 | |
| 
 | |
|     m_projectSashWindow = win;
 | |
| 
 | |
|     m_projectTreeCtrl = new csProjectTreeCtrl(win, ID_WINDOW_PROJECT_TREE, wxDefaultPosition,
 | |
|         wxDefaultSize, wxTR_HAS_BUTTONS|wxTR_LINES_AT_ROOT|wxDOUBLE_BORDER);
 | |
| 
 | |
|     // For now, hide the window
 | |
|     m_projectSashWindow->Show(false);
 | |
| #endif
 | |
| 
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| // Fill out the project tree control
 | |
| void csApp::FillProjectTreeCtrl()
 | |
| {
 | |
| #if 0
 | |
|     csProjectTreeCtrl& tree = *GetProjectTreeCtrl();
 | |
| 
 | |
|     // Dummy data for now
 | |
|     long level0 = tree.InsertItem(0, "Applications", 0, 0);
 | |
|     long level1 = tree.InsertItem(level0, "Projects", 0, 0);
 | |
|     tree.InsertItem(level1, "project1", 1, 1);
 | |
|     tree.InsertItem(level1, "project2", 1, 1);
 | |
| #endif
 | |
| }
 | |
| 
 |