85 lines
3.1 KiB
C++
85 lines
3.1 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2010-2014 Jean-Pierre Charras
|
|
* Copyright (C) 2004-2014 KiCad Developers, see change_log.txt for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef TREEPROJECT_ITEM_H_
|
|
#define TREEPROJECT_ITEM_H_
|
|
|
|
/**
|
|
* Class TREEPROJECT_ITEM
|
|
* handles one item (a file or a directory name) for the tree file
|
|
*/
|
|
class TREEPROJECT_ITEM : public wxTreeItemData
|
|
{
|
|
//friend class KICAD_MANAGER_FRAME;
|
|
|
|
public:
|
|
|
|
TREEPROJECT_ITEM( TreeFileType type, const wxString& data,
|
|
wxTreeCtrl* parent );
|
|
|
|
TREEPROJECT_ITEM() : m_parent( NULL ) { }
|
|
|
|
TREEPROJECT_ITEM( const TREEPROJECT_ITEM& src ) :
|
|
m_Type( src.m_Type ), m_file_name( src.m_file_name ), m_parent( src.m_parent )
|
|
{
|
|
SetState( src.m_state );
|
|
m_IsPopulated = false;
|
|
}
|
|
|
|
TreeFileType GetType() const { return m_Type; }
|
|
void SetType( TreeFileType aType ) { m_Type = aType; }
|
|
|
|
const wxString& GetFileName() const { return m_file_name; }
|
|
void SetFileName( const wxString& name ) { m_file_name = name; }
|
|
|
|
bool IsRootFile() const { return m_IsRootFile; }
|
|
void SetRootFile( bool aValue ) { m_IsRootFile = aValue; }
|
|
|
|
bool IsPopulated() const { return m_IsPopulated; }
|
|
void SetPopulated( bool aValue ) { m_IsPopulated = aValue; }
|
|
|
|
/**
|
|
* @return the path of an item.
|
|
* if this item is a directory, returns the stored filename
|
|
* if this is a file, returns its path
|
|
*/
|
|
const wxString GetDir() const;
|
|
|
|
bool Rename( const wxString& name, bool check = true );
|
|
bool Delete( bool check = true );
|
|
void Activate( TREE_PROJECT_FRAME* prjframe );
|
|
void SetState( int state );
|
|
|
|
|
|
private:
|
|
TreeFileType m_Type; // = TREE_PROJECT, TREE_DIRECTORY ...
|
|
wxString m_file_name; // Filename for a file, or directory name
|
|
bool m_IsRootFile; // True if m_Filename is a root schematic (same name as project)
|
|
bool m_IsPopulated; // True if the name is a directory, and its content was read
|
|
wxTreeCtrl* m_parent;
|
|
int m_state;
|
|
};
|
|
|
|
#endif // TREEPROJECT_ITEM_H_
|