Tree store for cell selection moved to GUI file

This commit is contained in:
2019-09-28 21:42:49 +02:00
parent 23775b079a
commit dc30950df5
3 changed files with 180 additions and 32 deletions

View File

@@ -43,14 +43,7 @@ enum cell_store_columns {
CELL_SEL_COLUMN_COUNT /**< @brief Not a column. Used to determine count of columns */
};
struct tree_stores {
GtkTreeView *base_tree_view;
GtkTreeStore *base_store;
GtkTreeModelFilter *filter;
GtkEntry *search_entry;
};
struct tree_stores *setup_cell_selector(GtkTreeView* view, GtkEntry *search_entry);
int setup_cell_selector(GtkTreeView* view, GtkEntry *search_entry);
#endif /* __TREE_STORE_H__ */