2000-03-03 06:25:10 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-02-10 06:59:52 -05:00
|
|
|
// Name: contrib/samples/ogl/studio/project.h
|
2000-03-03 06:25:10 -05:00
|
|
|
// Purpose: Studio project classes
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 27/7/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2006-02-10 06:59:52 -05:00
|
|
|
// Licence: wxWindows licence
|
2000-03-03 06:25:10 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _STUDIO_PROJECT_H_
|
|
|
|
#define _STUDIO_PROJECT_H_
|
|
|
|
|
2006-02-10 06:59:52 -05:00
|
|
|
#include "wx/treectrl.h"
|
|
|
|
#include "wx/imaglist.h"
|
2000-03-03 06:25:10 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the project tree control.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class csProjectTreeCtrl: public wxTreeCtrl
|
|
|
|
{
|
|
|
|
|
|
|
|
DECLARE_CLASS(csProjectTreeCtrl)
|
|
|
|
public:
|
|
|
|
|
|
|
|
csProjectTreeCtrl(wxWindow *parent, const wxWindowID id, const wxPoint& pos, const wxSize& size,
|
|
|
|
long style = wxTR_HAS_BUTTONS|wxTR_LINES_AT_ROOT);
|
|
|
|
|
|
|
|
~csProjectTreeCtrl();
|
|
|
|
|
2004-12-17 07:09:55 -05:00
|
|
|
wxImageList *GetImageList() const { return (wxImageList *)&m_imageList; }
|
2000-03-03 06:25:10 -05:00
|
|
|
protected:
|
2004-12-17 07:09:55 -05:00
|
|
|
wxImageList m_imageList;
|
2000-03-03 06:25:10 -05:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _STUDIO_PROJECT_H_
|