2018-07-25 16:44:04 +02:00
|
|
|
/*
|
|
|
|
* GDSII-Converter
|
|
|
|
* Copyright (C) 2018 Mario Hüttel <mario.huettel@gmx.net>
|
|
|
|
*
|
|
|
|
* This file is part of GDSII-Converter.
|
|
|
|
*
|
|
|
|
* GDSII-Converter is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* GDSII-Converter 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 GDSII-Converter. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file tree-store.h
|
|
|
|
* @brief Header file for Tree store implementation
|
|
|
|
* @author Mario Hüttel <mario.huettel@gmx.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup MainApplication
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2018-05-22 12:59:28 +02:00
|
|
|
#ifndef __TREE_STORE_H__
|
|
|
|
#define __TREE_STORE_H__
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2018-07-25 16:44:04 +02:00
|
|
|
/** @brief Columns of selection tree view */
|
2018-05-22 12:59:28 +02:00
|
|
|
enum cell_store_columns {
|
|
|
|
CELL_SEL_LIBRARY = 0,
|
|
|
|
CELL_SEL_CELL,
|
2019-03-05 20:50:54 +01:00
|
|
|
CELL_SEL_CELL_ERROR_STATE, /**< Used for cell color and selectability */
|
2018-05-22 12:59:28 +02:00
|
|
|
CELL_SEL_MODDATE,
|
|
|
|
CELL_SEL_ACCESSDATE,
|
2019-03-05 21:46:29 +01:00
|
|
|
CELL_SEL_COLUMN_COUNT /**< @brief Not a column. Used to determine count of columns */
|
2018-05-22 12:59:28 +02:00
|
|
|
};
|
|
|
|
|
2019-02-05 19:44:29 +01:00
|
|
|
struct tree_stores {
|
2019-02-05 20:38:52 +01:00
|
|
|
GtkTreeView *base_tree_view;
|
2019-02-05 19:44:29 +01:00
|
|
|
GtkTreeStore *base_store;
|
2019-02-05 20:38:52 +01:00
|
|
|
GtkTreeModelFilter *filter;
|
|
|
|
GtkEntry *search_entry;
|
2019-02-05 19:44:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct tree_stores *setup_cell_selector(GtkTreeView* view, GtkEntry *search_entry);
|
2018-05-22 12:59:28 +02:00
|
|
|
|
|
|
|
#endif /* __TREE_STORE_H__ */
|
2018-07-25 16:44:04 +02:00
|
|
|
|
|
|
|
/** @} */
|