diff options
author | saurabhb17 | 2020-02-26 16:20:48 +0530 |
---|---|---|
committer | GitHub | 2020-02-26 16:20:48 +0530 |
commit | b77f5d9d8097c38159c6f60917995d6af13bbe1c (patch) | |
tree | 1392c90227aeea231c1d86371131e04c40382918 /kicad/class_treeproject_item.h | |
parent | dadc4d490966a24efe15b5cc533ef8695986048a (diff) | |
parent | 003d02608917e7a69d1a98438837e94ccf68352a (diff) | |
download | KiCad-eSim-b77f5d9d8097c38159c6f60917995d6af13bbe1c.tar.gz KiCad-eSim-b77f5d9d8097c38159c6f60917995d6af13bbe1c.tar.bz2 KiCad-eSim-b77f5d9d8097c38159c6f60917995d6af13bbe1c.zip |
Merge pull request #4 from FOSSEE/develop
merging dev into master
Diffstat (limited to 'kicad/class_treeproject_item.h')
-rw-r--r-- | kicad/class_treeproject_item.h | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/kicad/class_treeproject_item.h b/kicad/class_treeproject_item.h new file mode 100644 index 0000000..052f462 --- /dev/null +++ b/kicad/class_treeproject_item.h @@ -0,0 +1,84 @@ +/* + * 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_ |