Commit 9ed9a723 authored by charras's avatar charras

commit forgotten file

parent 5b701c42
/*
* file class_treeprojectfiles.h
*/
#ifndef CLASS_TREEPROJECTFILES_H
#define CLASS_TREEPROJECTFILES_H
/** Class TREEPROJECTFILES
* This is the class to show (as a tree) the files in the project directory
*/
class TREEPROJECTFILES : public wxTreeCtrl
{
DECLARE_DYNAMIC_CLASS( TREEPROJECTFILES )
private:
TREE_PROJECT_FRAME* m_Parent;
wxImageList* m_ImageList;
public:
TREE_PROJECT_FRAME* GetParent()
{
return m_Parent;
}
TREEPROJECTFILES( TREE_PROJECT_FRAME* parent );
~TREEPROJECTFILES();
private:
/* overridden sort function */
int OnCompareItems( const wxTreeItemId& item1, const wxTreeItemId& item2 );
};
#endif // CLASS_TREEPROJECTFILES_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment