2004-12-09 13:30:44 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
|
2010-10-05 23:14:46 +04:00
|
|
|
* Copyright 2009 Paul Blokus <paul_pl@users.sourceforge.net>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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, see <http://www.gnu.org/licenses/>.
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Generic tree handling (implementation).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "content/content.h"
|
|
|
|
#include "content/hlcache.h"
|
2010-12-13 01:37:51 +03:00
|
|
|
#include "css/utils.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "desktop/browser.h"
|
2010-12-19 19:14:06 +03:00
|
|
|
#include "desktop/knockout.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "desktop/textarea.h"
|
|
|
|
#include "desktop/textinput.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "desktop/tree.h"
|
2013-05-26 01:46:27 +04:00
|
|
|
#include "utils/nsoption.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "desktop/plotters.h"
|
|
|
|
#include "render/font.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/messages.h"
|
|
|
|
#include "utils/utils.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "utils/url.h"
|
|
|
|
|
2011-06-05 01:33:33 +04:00
|
|
|
#undef TREE_NOISY_DEBUG
|
2011-06-05 00:22:24 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
#define MAXIMUM_URL_LENGTH 1024
|
|
|
|
|
2010-12-13 01:37:51 +03:00
|
|
|
#define TREE_TEXT_SIZE_PT 11
|
2010-12-12 16:01:27 +03:00
|
|
|
#define TREE_ICON_SIZE 17
|
2010-10-05 23:14:46 +04:00
|
|
|
#define NODE_INSTEP 20
|
2010-12-13 01:37:51 +03:00
|
|
|
|
|
|
|
static int tree_text_size_px;
|
2010-12-17 16:32:43 +03:00
|
|
|
static int TREE_LINE_HEIGHT;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2011-01-20 17:05:13 +03:00
|
|
|
static char *tree_icons_dir = NULL;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
static plot_font_style_t plot_fstyle = {
|
|
|
|
.family = PLOT_FONT_FAMILY_SANS_SERIF,
|
2010-12-13 01:37:51 +03:00
|
|
|
.size = TREE_TEXT_SIZE_PT * FONT_SIZE_SCALE,
|
2010-10-05 23:14:46 +04:00
|
|
|
.weight = 400,
|
2010-12-21 20:01:30 +03:00
|
|
|
.flags = FONTF_NONE
|
2010-10-05 23:14:46 +04:00
|
|
|
};
|
|
|
|
|
2011-11-10 17:47:24 +04:00
|
|
|
static plot_font_style_t plot_fstyle_def_folder = {
|
|
|
|
.family = PLOT_FONT_FAMILY_SANS_SERIF,
|
|
|
|
.size = TREE_TEXT_SIZE_PT * FONT_SIZE_SCALE,
|
|
|
|
.weight = 700,
|
|
|
|
.flags = FONTF_NONE
|
|
|
|
};
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
static plot_font_style_t plot_fstyle_selected = {
|
|
|
|
.family = PLOT_FONT_FAMILY_SANS_SERIF,
|
2010-12-13 01:37:51 +03:00
|
|
|
.size = TREE_TEXT_SIZE_PT * FONT_SIZE_SCALE,
|
2010-10-05 23:14:46 +04:00
|
|
|
.weight = 400,
|
2010-12-21 20:01:30 +03:00
|
|
|
.flags = FONTF_NONE
|
2010-10-05 23:14:46 +04:00
|
|
|
};
|
|
|
|
|
2011-11-10 17:47:24 +04:00
|
|
|
static plot_font_style_t plot_fstyle_selected_def_folder = {
|
|
|
|
.family = PLOT_FONT_FAMILY_SANS_SERIF,
|
|
|
|
.size = TREE_TEXT_SIZE_PT * FONT_SIZE_SCALE,
|
|
|
|
.weight = 700,
|
|
|
|
.flags = FONTF_NONE
|
|
|
|
};
|
|
|
|
|
2010-12-12 19:45:41 +03:00
|
|
|
/** plot style for treeview backgrounds. */
|
|
|
|
static plot_style_t plot_style_fill_tree_background = {
|
2010-12-21 20:01:30 +03:00
|
|
|
.fill_type = PLOT_OP_TYPE_SOLID
|
2010-12-12 19:45:41 +03:00
|
|
|
};
|
|
|
|
|
2010-12-21 20:01:30 +03:00
|
|
|
/** plot style for treeview backgrounds. */
|
|
|
|
static plot_style_t plot_style_fill_tree_selected = {
|
|
|
|
.fill_type = PLOT_OP_TYPE_SOLID
|
|
|
|
};
|
|
|
|
|
|
|
|
/** plot style for treeview furniture lines. */
|
2010-12-12 19:45:41 +03:00
|
|
|
static plot_style_t plot_style_stroke_tree_furniture = {
|
2010-12-21 20:01:30 +03:00
|
|
|
.stroke_type = PLOT_OP_TYPE_SOLID
|
|
|
|
};
|
|
|
|
|
|
|
|
/** plot style for treeview furniture fills. */
|
|
|
|
static plot_style_t plot_style_fill_tree_furniture = {
|
|
|
|
.fill_type = PLOT_OP_TYPE_SOLID
|
2010-12-12 19:45:41 +03:00
|
|
|
};
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node;
|
|
|
|
struct tree;
|
|
|
|
|
|
|
|
struct node_element_box {
|
|
|
|
int x; /**< X offset from origin */
|
|
|
|
int y; /**< Y offset from origin */
|
|
|
|
int width; /**< Element width */
|
|
|
|
int height; /**< Element height */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct node_element {
|
|
|
|
struct node *parent; /**< Parent node */
|
|
|
|
node_element_type type; /**< Element type */
|
|
|
|
struct node_element_box box; /**< Element bounding box */
|
2013-05-04 12:49:11 +04:00
|
|
|
char *text; /**< Text for the element */
|
2010-10-05 23:14:46 +04:00
|
|
|
void *bitmap; /**< Bitmap for the element */
|
|
|
|
struct node_element *next; /**< Next node element */
|
|
|
|
unsigned int flag; /**< Client specified flag for data
|
|
|
|
being represented */
|
|
|
|
bool editable; /**< Whether the node text can be
|
|
|
|
* modified, editable text is deleted
|
|
|
|
* without noticing the tree user
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
|
|
|
|
struct node {
|
|
|
|
bool selected; /**< Whether the node is selected */
|
|
|
|
bool expanded; /**< Whether the node is expanded */
|
|
|
|
bool folder; /**< Whether the node is a folder */
|
2011-11-28 00:07:26 +04:00
|
|
|
bool def_folder; /**< Whether the node is the default folder */
|
2010-10-05 23:14:46 +04:00
|
|
|
bool retain_in_memory; /**< Whether the node remains
|
|
|
|
in memory after deletion */
|
|
|
|
bool deleted; /**< Whether the node is currently
|
|
|
|
deleted */
|
|
|
|
bool processing; /**< Internal flag used when moving */
|
|
|
|
struct node_element_box box; /**< Bounding box of all elements */
|
|
|
|
struct node_element data; /**< Data to display */
|
|
|
|
struct node *parent; /**< Parent entry (NULL for root) */
|
|
|
|
struct node *child; /**< First child */
|
|
|
|
struct node *last_child; /**< Last child */
|
|
|
|
struct node *previous; /**< Previous child of the parent */
|
|
|
|
struct node *next; /**< Next child of the parent */
|
|
|
|
|
|
|
|
/** Sorting function for the node (for folder nodes only) */
|
|
|
|
int (*sort) (struct node *, struct node *);
|
|
|
|
/** Gets called for each deleted node_element and on node launch */
|
|
|
|
tree_node_user_callback user_callback;
|
|
|
|
/** User data to be passed to delete_callback */
|
|
|
|
void *callback_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tree {
|
|
|
|
struct node *root; /* Tree root element */
|
|
|
|
int width; /* Tree width */
|
|
|
|
int height; /* Tree height */
|
|
|
|
unsigned int flags; /* Tree flags */
|
2013-01-05 18:52:02 +04:00
|
|
|
struct textarea *textarea; /* Handle for UTF-8 textarea */
|
2013-01-29 21:34:08 +04:00
|
|
|
int ta_height; /* Textarea height */
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node_element *editing; /* Node element being edited */
|
|
|
|
|
|
|
|
bool redraw; /* Flag indicating whether the tree
|
|
|
|
should be redrawn on layout
|
|
|
|
changes */
|
|
|
|
tree_drag_type drag;
|
|
|
|
const struct treeview_table *callbacks;
|
|
|
|
void *client_data; /* User assigned data for the
|
|
|
|
callbacks */
|
2011-11-10 16:22:48 +04:00
|
|
|
struct node *def_folder; /* Node to be used for additions by default */
|
2010-10-05 23:14:46 +04:00
|
|
|
};
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2013-05-31 13:11:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "desktop/treeview.h"
|
2013-07-26 17:48:26 +04:00
|
|
|
#include "desktop/cookie_manager.h"
|
2013-05-31 13:11:22 +04:00
|
|
|
#include "desktop/global_history.h"
|
2013-08-12 13:32:54 +04:00
|
|
|
#include "desktop/sslcert_viewer.h"
|
2013-05-31 13:11:22 +04:00
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
int treeview_inits;
|
|
|
|
|
2013-05-31 13:11:22 +04:00
|
|
|
static void treeview_test_redraw_request(struct core_window *cw, struct rect r)
|
|
|
|
{
|
2013-06-01 00:02:56 +04:00
|
|
|
struct tree *tree = (struct tree *)cw;
|
2013-05-31 20:57:28 +04:00
|
|
|
|
|
|
|
tree->callbacks->redraw_request(r.x0, r.y0,
|
|
|
|
r.x1 - r.x0, r.y1 - r.y0,
|
|
|
|
tree->client_data);
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void treeview_test_update_size(struct core_window *cw,
|
|
|
|
int width, int height)
|
|
|
|
{
|
2013-06-30 20:54:08 +04:00
|
|
|
struct tree *tree = (struct tree *)cw;
|
|
|
|
|
|
|
|
tree->callbacks->resized(tree, width, height, tree->client_data);
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void treeview_test_scroll_visible(struct core_window *cw, struct rect r)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void treeview_test_get_window_dimensions(struct core_window *cw,
|
2013-07-01 18:10:45 +04:00
|
|
|
int *width, int *height)
|
2013-05-31 13:11:22 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-01 18:10:45 +04:00
|
|
|
static void treeview_test_drag_status(struct core_window *cw,
|
|
|
|
core_window_drag_status ds)
|
|
|
|
{
|
|
|
|
struct tree *tree = (struct tree *)cw;
|
|
|
|
|
|
|
|
switch (ds) {
|
|
|
|
case CORE_WINDOW_DRAG_NONE:
|
|
|
|
tree->drag = TREE_NO_DRAG;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CORE_WINDOW_DRAG_SELECTION:
|
|
|
|
tree->drag = TREE_SELECT_DRAG;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 13:11:22 +04:00
|
|
|
struct core_window_callback_table cw_t = {
|
|
|
|
.redraw_request = treeview_test_redraw_request,
|
|
|
|
.update_size = treeview_test_update_size,
|
|
|
|
.scroll_visible = treeview_test_scroll_visible,
|
2013-07-01 18:10:45 +04:00
|
|
|
.get_window_dimensions = treeview_test_get_window_dimensions,
|
|
|
|
.drag_status = treeview_test_drag_status
|
2013-05-31 13:11:22 +04:00
|
|
|
};
|
|
|
|
|
2013-07-01 17:07:25 +04:00
|
|
|
static bool treeview_test_init(struct tree *tree)
|
2013-05-31 13:11:22 +04:00
|
|
|
{
|
|
|
|
nserror err;
|
|
|
|
|
2013-08-13 17:09:15 +04:00
|
|
|
if (tree->flags & TREE_SSLCERT) {
|
|
|
|
|
|
|
|
treeview_inits++;
|
|
|
|
|
|
|
|
if (treeview_inits == 1)
|
|
|
|
treeview_init();
|
|
|
|
|
|
|
|
err = sslcert_viewer_init(&cw_t, (struct core_window *)tree,
|
|
|
|
ssl_current_session);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
warn_user("Couldn't init new sslcert viewer.", 0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we're testing the new treeview */
|
2013-07-01 17:07:25 +04:00
|
|
|
if (nsoption_bool(temp_treeview_test) == false)
|
|
|
|
return false;
|
2013-05-31 13:11:22 +04:00
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
treeview_inits++;
|
|
|
|
|
|
|
|
if (treeview_inits == 1)
|
|
|
|
treeview_init();
|
|
|
|
|
|
|
|
if (tree->flags & TREE_COOKIES) {
|
|
|
|
err = cookie_manager_init(&cw_t, (struct core_window *)tree);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
warn_user("Couldn't init new cookie manager.", 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tree->flags & TREE_HISTORY) {
|
|
|
|
err = global_history_init(&cw_t, (struct core_window *)tree);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
warn_user("Couldn't init new global history.", 0);
|
|
|
|
}
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
2013-07-01 17:07:25 +04:00
|
|
|
|
|
|
|
return true;
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 17:07:25 +04:00
|
|
|
static bool treeview_test_fini(struct tree *tree)
|
2013-05-31 13:11:22 +04:00
|
|
|
{
|
|
|
|
nserror err;
|
|
|
|
|
2013-08-13 17:09:15 +04:00
|
|
|
if (tree->flags & TREE_SSLCERT) {
|
|
|
|
err = sslcert_viewer_fini(ssl_current_session);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
warn_user("Couldn't finalise sslcert viewer.", 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (treeview_inits == 1)
|
|
|
|
treeview_fini();
|
|
|
|
treeview_inits--;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we're testing the new treeview */
|
2013-07-01 17:07:25 +04:00
|
|
|
if (nsoption_bool(temp_treeview_test) == false)
|
|
|
|
return false;
|
2013-05-31 13:11:22 +04:00
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
if (tree->flags & TREE_COOKIES) {
|
|
|
|
err = cookie_manager_fini();
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
warn_user("Couldn't finalise cookie manager.", 0);
|
|
|
|
}
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
2013-07-26 17:48:26 +04:00
|
|
|
if (tree->flags & TREE_HISTORY) {
|
|
|
|
err = global_history_fini();
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
warn_user("Couldn't finalise cookie manager.", 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (treeview_inits == 1)
|
|
|
|
treeview_fini();
|
|
|
|
treeview_inits--;
|
2013-07-01 17:07:25 +04:00
|
|
|
|
|
|
|
return true;
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 17:07:25 +04:00
|
|
|
static bool treeview_test_redraw(struct tree *tree, int x, int y,
|
2013-05-31 13:11:22 +04:00
|
|
|
int clip_x, int clip_y, int clip_width, int clip_height,
|
|
|
|
const struct redraw_context *ctx)
|
|
|
|
{
|
|
|
|
struct rect clip;
|
2013-07-01 17:07:25 +04:00
|
|
|
|
2013-05-31 13:11:22 +04:00
|
|
|
clip.x0 = clip_x;
|
|
|
|
clip.y0 = clip_y;
|
|
|
|
clip.x1 = clip_x + clip_width;
|
|
|
|
clip.y1 = clip_y + clip_height;
|
2013-06-03 23:10:19 +04:00
|
|
|
|
2013-08-13 17:09:15 +04:00
|
|
|
if (tree->flags & TREE_SSLCERT) {
|
|
|
|
sslcert_viewer_redraw(ssl_current_session, x, y, &clip, ctx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we're testing the new treeview */
|
|
|
|
if (nsoption_bool(temp_treeview_test) == false)
|
|
|
|
return false;
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
if (tree->flags & TREE_COOKIES) {
|
|
|
|
cookie_manager_redraw(x, y, &clip, ctx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (tree->flags & TREE_HISTORY) {
|
|
|
|
global_history_redraw(x, y, &clip, ctx);
|
|
|
|
return true;
|
|
|
|
}
|
2013-07-01 17:07:25 +04:00
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
return false;
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 17:07:25 +04:00
|
|
|
static bool treeview_test_mouse_action(struct tree *tree,
|
2013-05-31 16:26:14 +04:00
|
|
|
browser_mouse_state mouse, int x, int y)
|
|
|
|
{
|
2013-08-13 17:09:15 +04:00
|
|
|
if (tree->flags & TREE_SSLCERT) {
|
|
|
|
sslcert_viewer_mouse_action(ssl_current_session, mouse, x, y);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we're testing the new treeview */
|
2013-07-01 17:07:25 +04:00
|
|
|
if (nsoption_bool(temp_treeview_test) == false)
|
|
|
|
return false;
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
if (tree->flags & TREE_COOKIES) {
|
|
|
|
cookie_manager_mouse_action(mouse, x, y);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (tree->flags & TREE_HISTORY) {
|
|
|
|
global_history_mouse_action(mouse, x, y);
|
|
|
|
return true;
|
|
|
|
}
|
2013-07-01 17:07:25 +04:00
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
return false;
|
2013-05-31 16:26:14 +04:00
|
|
|
}
|
|
|
|
|
2013-07-01 17:07:25 +04:00
|
|
|
static bool treeview_test_keypress(struct tree *tree, uint32_t key)
|
2013-07-01 14:49:14 +04:00
|
|
|
{
|
2013-08-13 17:09:15 +04:00
|
|
|
if (tree->flags & TREE_SSLCERT) {
|
|
|
|
sslcert_viewer_keypress(ssl_current_session, key);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we're testing the new treeview */
|
2013-07-01 17:07:25 +04:00
|
|
|
if (nsoption_bool(temp_treeview_test) == false)
|
|
|
|
return false;
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
if (tree->flags & TREE_COOKIES) {
|
|
|
|
cookie_manager_keypress(key);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (tree->flags & TREE_HISTORY) {
|
|
|
|
global_history_keypress(key);
|
|
|
|
return true;
|
|
|
|
}
|
2013-07-01 17:07:25 +04:00
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
return false;
|
2013-07-01 14:49:14 +04:00
|
|
|
}
|
|
|
|
|
2013-05-31 13:11:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-20 17:05:13 +03:00
|
|
|
void tree_set_icon_dir(char *icon_dir)
|
|
|
|
{
|
|
|
|
LOG(("Tree icon directory set to %s", icon_dir));
|
|
|
|
tree_icons_dir = icon_dir;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-12-21 20:01:30 +03:00
|
|
|
/**
|
|
|
|
* Set up colours for plot styles used in tree redraw.
|
|
|
|
*/
|
2012-03-27 01:13:00 +04:00
|
|
|
void tree_setup_colours(void)
|
2010-12-21 20:01:30 +03:00
|
|
|
{
|
|
|
|
/* Background colour */
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_style_fill_tree_background.fill_colour =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Window");
|
2010-12-21 20:01:30 +03:00
|
|
|
|
|
|
|
/* Selection background colour */
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_style_fill_tree_selected.fill_colour =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Highlight");
|
2010-12-21 20:01:30 +03:00
|
|
|
|
|
|
|
/* Furniture line colour */
|
|
|
|
plot_style_stroke_tree_furniture.stroke_colour = blend_colour(
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Window"),
|
|
|
|
gui_system_colour_char("WindowText"));
|
2010-12-21 20:01:30 +03:00
|
|
|
|
|
|
|
/* Furniture fill colour */
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_style_fill_tree_furniture.fill_colour =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Window");
|
2010-12-21 20:01:30 +03:00
|
|
|
|
|
|
|
/* Text colour */
|
2012-03-27 14:34:38 +04:00
|
|
|
plot_fstyle.foreground = gui_system_colour_char("WindowText");
|
|
|
|
plot_fstyle.background = gui_system_colour_char("Window");
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_fstyle_def_folder.foreground =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("InfoText");
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_fstyle_def_folder.background =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Window");
|
2010-12-21 20:01:30 +03:00
|
|
|
|
|
|
|
/* Selected text colour */
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_fstyle_selected.foreground =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("HighlightText");
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_fstyle_selected.background =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Highlight");
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_fstyle_selected_def_folder.foreground =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("HighlightText");
|
2012-03-25 22:52:58 +04:00
|
|
|
plot_fstyle_selected_def_folder.background =
|
2012-03-27 14:34:38 +04:00
|
|
|
gui_system_colour_char("Highlight");
|
2010-12-21 20:01:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Creates and initialises a new tree.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-10 13:10:44 +04:00
|
|
|
* \param flags Flag word for flags to create the new tree with
|
|
|
|
* \param callbacks Callback functions to support the tree in the frontend.
|
|
|
|
* \param client_data Data to be passed to start_redraw and end_redraw
|
|
|
|
* \return The newly created tree, or NULL on memory exhaustion
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
struct tree *tree_create(unsigned int flags,
|
|
|
|
const struct treeview_table *callbacks, void *client_data)
|
|
|
|
{
|
|
|
|
struct tree *tree;
|
|
|
|
|
|
|
|
tree = calloc(sizeof(struct tree), 1);
|
|
|
|
if (tree == NULL) {
|
|
|
|
LOG(("calloc failed"));
|
2013-05-04 00:17:11 +04:00
|
|
|
warn_user(messages_get_errorcode(NSERROR_NOMEM), 0);
|
2010-10-05 23:14:46 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2013-05-04 00:17:11 +04:00
|
|
|
tree->root = tree_create_folder_node(NULL,
|
|
|
|
NULL,
|
|
|
|
messages_get("Root"),
|
2010-10-05 23:14:46 +04:00
|
|
|
false, false, false);
|
|
|
|
if (tree->root == NULL) {
|
|
|
|
free(tree);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
tree->root->expanded = true;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
tree->width = 0;
|
|
|
|
tree->height = 0;
|
|
|
|
tree->flags = flags;
|
|
|
|
tree->textarea = NULL;
|
|
|
|
tree->editing = NULL;
|
|
|
|
tree->redraw = false;
|
|
|
|
tree->drag = TREE_NO_DRAG;
|
|
|
|
tree->callbacks = callbacks;
|
|
|
|
tree->client_data = client_data;
|
|
|
|
|
2010-12-17 16:32:43 +03:00
|
|
|
/* Set text height in pixels */
|
|
|
|
tree_text_size_px =
|
|
|
|
(TREE_TEXT_SIZE_PT * FIXTOINT(nscss_screen_dpi) + 36) /
|
|
|
|
72;
|
|
|
|
/* Set line height appropriate for this text height in pixels
|
2011-01-20 17:05:13 +03:00
|
|
|
* Using 4/3 text height */
|
2010-12-17 16:32:43 +03:00
|
|
|
TREE_LINE_HEIGHT = (tree_text_size_px * 8 + 3) / 6;
|
|
|
|
|
|
|
|
/* But if that's too small for the icons, base the line height on
|
|
|
|
* the icon height. */
|
|
|
|
if (TREE_LINE_HEIGHT < TREE_ICON_SIZE + 2)
|
|
|
|
TREE_LINE_HEIGHT = TREE_ICON_SIZE + 2;
|
|
|
|
|
2010-12-21 20:01:30 +03:00
|
|
|
tree_setup_colours();
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
treeview_test_init(tree);
|
2013-05-31 13:11:22 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
return tree;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Recalculates the dimensions of a node element.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to which the element belongs, may be NULL
|
|
|
|
* \param element the element to recalculate
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_recalculate_node_element(struct tree *tree,
|
|
|
|
struct node_element *element)
|
|
|
|
{
|
|
|
|
struct bitmap *bitmap = NULL;
|
|
|
|
int width, height;
|
2011-06-05 01:10:39 +04:00
|
|
|
static char *cache_text = NULL;
|
|
|
|
static int cache_size = 0;
|
2011-11-10 17:47:24 +04:00
|
|
|
plot_font_style_t *fstyle;
|
|
|
|
static plot_font_style_t *cache_fstyle = NULL;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(element != NULL);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2011-11-10 17:47:24 +04:00
|
|
|
if (element->parent->def_folder)
|
|
|
|
fstyle = &plot_fstyle_def_folder;
|
|
|
|
else
|
|
|
|
fstyle = &plot_fstyle;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
switch (element->type) {
|
|
|
|
case NODE_ELEMENT_TEXT_PLUS_ICON:
|
|
|
|
case NODE_ELEMENT_TEXT:
|
|
|
|
if(element->text == NULL)
|
|
|
|
break;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree != NULL && element == tree->editing) {
|
|
|
|
textarea_get_dimensions(tree->textarea,
|
|
|
|
&element->box.width, NULL);
|
|
|
|
} else {
|
2011-06-05 01:10:39 +04:00
|
|
|
if ((cache_text != NULL) &&
|
2011-11-10 17:47:24 +04:00
|
|
|
(strcmp(cache_text, element->text) == 0) &&
|
|
|
|
(cache_fstyle == fstyle)) {
|
2011-06-05 01:10:39 +04:00
|
|
|
element->box.width = cache_size;
|
|
|
|
#ifdef TREE_NOISY_DEBUG
|
|
|
|
LOG(("Tree font width cache hit"));
|
|
|
|
#endif
|
|
|
|
} else {
|
2011-07-28 23:29:03 +04:00
|
|
|
if(cache_text != NULL) free(cache_text);
|
2011-11-10 18:02:37 +04:00
|
|
|
nsfont.font_width(fstyle,
|
2011-06-05 01:10:39 +04:00
|
|
|
element->text,
|
|
|
|
strlen(element->text),
|
|
|
|
&cache_size);
|
|
|
|
element->box.width = cache_size;
|
|
|
|
cache_text = strdup(element->text);
|
2011-11-10 17:47:24 +04:00
|
|
|
cache_fstyle = fstyle;
|
2011-06-05 01:10:39 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
element->box.width += 8;
|
2010-12-12 15:45:12 +03:00
|
|
|
element->box.height = TREE_LINE_HEIGHT;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (element->type == NODE_ELEMENT_TEXT_PLUS_ICON)
|
|
|
|
element->box.width += NODE_INSTEP;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case NODE_ELEMENT_BITMAP:
|
|
|
|
bitmap = element->bitmap;
|
|
|
|
if (bitmap != NULL) {
|
|
|
|
width = bitmap_get_width(bitmap);
|
|
|
|
height = bitmap_get_height(bitmap);
|
|
|
|
element->box.width = width + 1;
|
|
|
|
element->box.height = height + 2;
|
|
|
|
} else {
|
|
|
|
element->box.width = 0;
|
|
|
|
element->box.height = 0;
|
|
|
|
}
|
|
|
|
break;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Calculates the height of a node including any children
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to calculate the height of
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the total height of the node and children
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static int tree_get_node_height(struct node *node)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
int y1;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(node != NULL);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if ((node->child == NULL) || (node->expanded == false)) {
|
|
|
|
return node->box.height;
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
y1 = node->box.y;
|
|
|
|
if (y1 < 0) {
|
|
|
|
y1 = 0;
|
|
|
|
}
|
|
|
|
node = node->child;
|
|
|
|
|
2010-10-10 13:10:44 +04:00
|
|
|
while ((node->next != NULL) ||
|
2010-10-05 23:14:46 +04:00
|
|
|
((node->child != NULL) && (node->expanded))) {
|
|
|
|
for (; node->next != NULL; node = node->next);
|
|
|
|
|
|
|
|
if ((node->child != NULL) && (node->expanded)) {
|
|
|
|
node = node->child;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
return node->box.y + node->box.height - y1;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Calculates the width of a node including any children
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to calculate the height of
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the total width of the node and children
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static int tree_get_node_width(struct node *node)
|
|
|
|
{
|
|
|
|
int width = 0;
|
|
|
|
int child_width;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(node != NULL);
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
if (width < (node->box.x + node->box.width)) {
|
|
|
|
width = node->box.x + node->box.width;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if ((node->child != NULL) && (node->expanded)) {
|
|
|
|
child_width = tree_get_node_width(node->child);
|
|
|
|
if (width < child_width) {
|
|
|
|
width = child_width;
|
|
|
|
}
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
return width;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recalculates the position of a node, its siblings and children.
|
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to which 'root' belongs
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param root the root node to update from
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static void tree_recalculate_node_positions(struct tree *tree,
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *root)
|
|
|
|
{
|
2004-12-09 13:30:44 +03:00
|
|
|
struct node *parent;
|
|
|
|
struct node *node;
|
|
|
|
struct node *child;
|
|
|
|
struct node_element *element;
|
|
|
|
int y;
|
2010-10-05 23:14:46 +04:00
|
|
|
bool has_icon;
|
|
|
|
|
|
|
|
for (node = root; node != NULL; node = node->next) {
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
parent = node->parent;
|
|
|
|
|
|
|
|
if (node->previous != NULL) {
|
2004-12-09 13:30:44 +03:00
|
|
|
node->box.x = node->previous->box.x;
|
|
|
|
node->box.y = node->previous->box.y +
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_get_node_height(node->previous);
|
|
|
|
} else if (parent != NULL) {
|
2004-12-09 13:30:44 +03:00
|
|
|
node->box.x = parent->box.x + NODE_INSTEP;
|
|
|
|
node->box.y = parent->box.y +
|
2010-10-05 23:14:46 +04:00
|
|
|
parent->box.height;
|
2004-12-09 13:30:44 +03:00
|
|
|
for (child = parent->child; child != node;
|
2010-10-05 23:14:46 +04:00
|
|
|
child = child->next)
|
2004-12-09 13:30:44 +03:00
|
|
|
node->box.y += child->box.height;
|
|
|
|
} else {
|
2010-10-05 23:14:46 +04:00
|
|
|
node->box.x = tree->flags & TREE_NO_FURNITURE
|
|
|
|
? -NODE_INSTEP + 4 : 0;
|
2010-12-12 15:45:12 +03:00
|
|
|
node->box.y = -TREE_LINE_HEIGHT;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (!node->expanded) {
|
|
|
|
node->data.box.x = node->box.x;
|
|
|
|
node->data.box.y = node->box.y;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node->folder) {
|
2004-12-09 13:30:44 +03:00
|
|
|
node->data.box.x = node->box.x;
|
|
|
|
node->data.box.y = node->box.y;
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_recalculate_node_positions(tree, node->child);
|
|
|
|
} else {
|
|
|
|
y = node->box.y;
|
|
|
|
has_icon = false;
|
|
|
|
for (element = &node->data; element != NULL;
|
|
|
|
element = element->next)
|
|
|
|
if (element->type ==
|
|
|
|
NODE_ELEMENT_TEXT_PLUS_ICON) {
|
|
|
|
has_icon = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (element = &node->data; element != NULL;
|
|
|
|
element = element->next) {
|
|
|
|
element->box.x = node->box.x;
|
|
|
|
if (element->type !=
|
|
|
|
NODE_ELEMENT_TEXT_PLUS_ICON &&
|
|
|
|
has_icon)
|
|
|
|
element->box.x += NODE_INSTEP;
|
|
|
|
element->box.y = y;
|
|
|
|
y += element->box.height;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Recalculates the size of a node.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to which node belongs, may be NULL
|
|
|
|
* \param node the node to update
|
|
|
|
* \param recalculate_sizes whether the node elements have changed
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_recalculate_node_sizes(struct tree *tree, struct node *node,
|
|
|
|
bool recalculate_sizes)
|
|
|
|
{
|
|
|
|
struct node_element *element;
|
2011-07-27 01:30:38 +04:00
|
|
|
int height;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(node != NULL);
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
height = node->box.height;
|
|
|
|
node->box.width = 0;
|
|
|
|
node->box.height = 0;
|
|
|
|
if (node->expanded) {
|
|
|
|
for (element = &node->data; element != NULL;
|
|
|
|
element = element->next) {
|
2011-06-05 00:22:24 +04:00
|
|
|
if (recalculate_sizes) {
|
|
|
|
#ifdef TREE_NOISY_DEBUG
|
|
|
|
if(element->text) LOG(("%s", element->text));
|
|
|
|
#endif
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_recalculate_node_element(tree, element);
|
2011-06-05 00:22:24 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
node->box.width = (node->box.width > element->box.x +
|
|
|
|
element->box.width - node->box.x) ?
|
|
|
|
node->box.width :
|
|
|
|
element->box.width + element->box.x -
|
|
|
|
node->box.x;
|
|
|
|
node->box.height += element->box.height;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
} else {
|
|
|
|
if (recalculate_sizes)
|
|
|
|
for (element = &node->data; element != NULL;
|
2011-06-05 00:22:24 +04:00
|
|
|
element = element->next) {
|
|
|
|
#ifdef TREE_NOISY_DEBUG
|
|
|
|
if(element->text) LOG(("%s", element->text));
|
|
|
|
#endif
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_recalculate_node_element(tree, element);
|
2011-06-05 00:22:24 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
node->box.width = node->data.box.width;
|
|
|
|
node->box.height = node->data.box.height;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (tree != NULL && height != node->box.height)
|
|
|
|
tree_recalculate_node_positions(tree, tree->root);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-04 00:17:11 +04:00
|
|
|
/* exported interface documented in desktop/tree.h */
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *tree_create_folder_node(struct tree *tree, struct node *parent,
|
|
|
|
const char *title, bool editable, bool retain_in_memory,
|
|
|
|
bool deleted)
|
|
|
|
{
|
|
|
|
struct node *node;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(title != NULL);
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
node = calloc(sizeof(struct node), 1);
|
|
|
|
if (node == NULL) {
|
|
|
|
return NULL;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2013-05-04 00:17:11 +04:00
|
|
|
|
|
|
|
node->data.text = strdup(title);
|
|
|
|
if (node->data.text == NULL) {
|
|
|
|
free(node);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
node->folder = true;
|
|
|
|
node->retain_in_memory = retain_in_memory;
|
|
|
|
node->deleted = deleted;
|
|
|
|
node->data.parent = node;
|
|
|
|
node->data.type = NODE_ELEMENT_TEXT;
|
|
|
|
node->data.flag = TREE_ELEMENT_TITLE;
|
|
|
|
node->data.editable = editable;
|
|
|
|
node->sort = NULL;
|
|
|
|
node->user_callback = NULL;
|
2010-12-15 03:32:37 +03:00
|
|
|
node->previous = NULL;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
tree_recalculate_node_sizes(tree, node, true);
|
2013-05-04 12:49:11 +04:00
|
|
|
if (parent != NULL) {
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_link_node(tree, parent, node, false);
|
2013-05-04 12:49:11 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
return node;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
2013-05-04 12:49:11 +04:00
|
|
|
/* exported interface documented in desktop/tree.h */
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *tree_create_leaf_node(struct tree *tree, struct node *parent,
|
|
|
|
const char *title, bool editable, bool retain_in_memory,
|
|
|
|
bool deleted)
|
|
|
|
{
|
|
|
|
struct node *node;
|
|
|
|
|
|
|
|
assert(title != NULL);
|
|
|
|
|
|
|
|
node = calloc(sizeof(struct node), 1);
|
|
|
|
if (node == NULL) {
|
2013-05-04 12:49:11 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
node->data.text = strdup(title);
|
|
|
|
if (node->data.text == NULL) {
|
|
|
|
free(node);
|
2010-10-05 23:14:46 +04:00
|
|
|
return NULL;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
node->folder = false;
|
|
|
|
node->retain_in_memory = retain_in_memory;
|
|
|
|
node->deleted = deleted;
|
|
|
|
node->data.parent = node;
|
|
|
|
node->data.type = NODE_ELEMENT_TEXT;
|
|
|
|
node->data.flag = TREE_ELEMENT_TITLE;
|
|
|
|
node->data.editable = editable;
|
|
|
|
node->sort = NULL;
|
|
|
|
node->user_callback = NULL;
|
2010-12-15 03:32:37 +03:00
|
|
|
node->previous = NULL;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
tree_recalculate_node_sizes(tree, node, true);
|
2013-05-04 12:49:11 +04:00
|
|
|
if (parent != NULL) {
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_link_node(tree, parent, node, false);
|
2013-05-04 12:49:11 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
return node;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Creates an empty text node element and links it to a node.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param parent the parent node
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param type the required element type
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param flag user assigned flag used for searches
|
2011-01-20 17:05:13 +03:00
|
|
|
* \return the newly created element.
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node_element *tree_create_node_element(struct node *parent,
|
|
|
|
node_element_type type, unsigned int flag, bool editable)
|
|
|
|
{
|
|
|
|
struct node_element *element;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
element = calloc(sizeof(struct node_element), 1);
|
2010-10-10 13:10:44 +04:00
|
|
|
if (element == NULL)
|
2010-10-05 23:14:46 +04:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
element->parent = parent;
|
|
|
|
element->flag = flag;
|
|
|
|
element->type = type;
|
|
|
|
element->editable = editable;
|
|
|
|
element->next = parent->data.next;
|
|
|
|
parent->data.next = element;
|
|
|
|
|
|
|
|
return element;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Inserts a node into the correct place according to the parent's sort function
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param parent the node whose child node 'node' becomes
|
|
|
|
* \param node the node to be inserted
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_sort_insert(struct node *parent, struct node *node)
|
|
|
|
{
|
|
|
|
struct node *after;
|
|
|
|
|
|
|
|
assert(node != NULL);
|
|
|
|
assert(parent != NULL);
|
|
|
|
assert(parent->sort != NULL);
|
|
|
|
|
|
|
|
after = parent->last_child;
|
|
|
|
while ((after != NULL) &&
|
|
|
|
(parent->sort(node, after) == -1))
|
|
|
|
after = after->previous;
|
|
|
|
|
|
|
|
if (after != NULL) {
|
|
|
|
if (after->next != NULL)
|
|
|
|
after->next->previous = node;
|
|
|
|
node->next = after->next;
|
|
|
|
node->previous = after;
|
|
|
|
after->next = node;
|
|
|
|
} else {
|
|
|
|
node->previous = NULL;
|
|
|
|
node->next = parent->child;
|
|
|
|
if (parent->child != NULL) {
|
|
|
|
parent->child->previous = node;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
parent->child = node;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (node->next == NULL)
|
|
|
|
parent->last_child = node;
|
|
|
|
|
|
|
|
node->parent = parent;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Recalculates the size of a tree.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to recalculate
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_recalculate_size(struct tree *tree)
|
|
|
|
{
|
|
|
|
int width, height;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(tree != NULL);
|
|
|
|
|
|
|
|
width = tree->width;
|
|
|
|
height = tree->height;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
tree->width = tree_get_node_width(tree->root);
|
|
|
|
tree->height = tree_get_node_height(tree->root);
|
|
|
|
|
|
|
|
if ((width != tree->width) || (height != tree->height))
|
|
|
|
tree->callbacks->resized(tree, tree->width, tree->height,
|
|
|
|
tree->client_data);
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Recalculate the node data and redraw the relevant section of the tree.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to redraw, may be NULL
|
|
|
|
* \param node the node to update
|
|
|
|
* \param recalculate_sizes whether the elements have changed
|
|
|
|
* \param expansion the request is the result of a node expansion
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_handle_node_changed(struct tree *tree, struct node *node,
|
|
|
|
bool recalculate_sizes, bool expansion)
|
|
|
|
{
|
2010-10-10 13:10:44 +04:00
|
|
|
int node_width, node_height, tree_width, tree_height;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(node != NULL);
|
2012-10-11 17:06:48 +04:00
|
|
|
assert(tree != NULL);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2010-10-10 13:10:44 +04:00
|
|
|
node_width = node->box.width;
|
|
|
|
node_height = node->box.height;
|
|
|
|
tree_width = tree->width;
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_height = tree->height;
|
|
|
|
|
|
|
|
if ((recalculate_sizes) || (expansion)) {
|
|
|
|
tree_recalculate_node_sizes(tree, node, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tree != NULL) {
|
2010-10-10 13:10:44 +04:00
|
|
|
if ((node->box.height != node_height) || (expansion)) {
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_recalculate_node_positions(tree, tree->root);
|
|
|
|
tree_recalculate_size(tree);
|
2010-10-10 13:10:44 +04:00
|
|
|
if (tree->width > tree_width)
|
|
|
|
tree_width = tree->width;
|
|
|
|
if (tree->height > tree_height)
|
|
|
|
tree_height = tree->height;
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->redraw) {
|
|
|
|
tree->callbacks->redraw_request(0, node->box.y,
|
2010-10-10 13:10:44 +04:00
|
|
|
tree_width,
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_height - node->box.y,
|
|
|
|
tree->client_data);
|
|
|
|
}
|
|
|
|
} else {
|
2010-10-10 13:10:44 +04:00
|
|
|
if (node->box.width > node_width)
|
|
|
|
node_width = node->box.width;
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->redraw)
|
|
|
|
tree->callbacks->redraw_request(node->box.x,
|
|
|
|
node->box.y,
|
2010-10-10 13:10:44 +04:00
|
|
|
node_width, node->box.height,
|
2010-10-05 23:14:46 +04:00
|
|
|
tree->client_data);
|
|
|
|
if (recalculate_sizes) {
|
|
|
|
tree_recalculate_size(tree);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Links a node to another node.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree in which the link takes place, may be NULL
|
|
|
|
* \param link the node to link before/as a child (folders)
|
2011-01-20 17:05:13 +03:00
|
|
|
* or before/after (link)
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param node the node to link
|
|
|
|
* \param before whether to link siblings before or after the supplied node
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_link_node(struct tree *tree, struct node *link, struct node *node,
|
|
|
|
bool before)
|
|
|
|
{
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *parent;
|
|
|
|
bool sort = false;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(link != NULL);
|
|
|
|
assert(node != NULL);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if ((link->folder == 0) || (before)) {
|
|
|
|
parent = node->parent = link->parent;
|
|
|
|
if (parent->sort) {
|
|
|
|
sort = true;
|
|
|
|
} else {
|
|
|
|
if (before) {
|
|
|
|
node->next = link;
|
|
|
|
node->previous = link->previous;
|
|
|
|
if (link->previous != NULL)
|
|
|
|
link->previous->next = node;
|
|
|
|
link->previous = node;
|
|
|
|
if ((parent != NULL) && (parent->child == link))
|
|
|
|
parent->child = node;
|
|
|
|
} else {
|
|
|
|
node->previous = link;
|
|
|
|
node->next = link->next;
|
|
|
|
if (link->next != NULL)
|
|
|
|
link->next->previous = node;
|
|
|
|
link->next = node;
|
|
|
|
if ((parent != NULL) &&
|
|
|
|
(parent->last_child == link))
|
|
|
|
parent->last_child = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
parent = node->parent = link;
|
|
|
|
if (parent->sort != NULL) {
|
|
|
|
sort = true;
|
|
|
|
} else {
|
|
|
|
node->next = NULL;
|
|
|
|
if (link->child == NULL) {
|
|
|
|
link->child = link->last_child = node;
|
|
|
|
node->previous = NULL;
|
|
|
|
} else {
|
|
|
|
link->last_child->next = node;
|
|
|
|
node->previous = link->last_child;
|
|
|
|
link->last_child = node;
|
|
|
|
}
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2004-12-13 16:48:56 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (sort) {
|
|
|
|
tree_sort_insert(parent, node);
|
2005-12-31 09:17:36 +03:00
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_handle_node_changed(tree, link, false, true);
|
|
|
|
|
|
|
|
node->deleted = false;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Recalculate the node element and redraw the relevant section of the tree.
|
|
|
|
* The tree size is not updated.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to redraw, may be NULL
|
|
|
|
* \param element the node element to update
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_handle_node_element_changed(struct tree *tree,
|
2011-06-05 00:46:08 +04:00
|
|
|
struct node_element *element, bool text_changed)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
int width, height;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(element != NULL);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
width = element->box.width;
|
|
|
|
height = element->box.height;
|
2011-06-05 00:46:08 +04:00
|
|
|
|
|
|
|
if(text_changed == true) {
|
|
|
|
#ifdef TREE_NOISY_DEBUG
|
|
|
|
if(element->text) LOG(("%s", element->text));
|
|
|
|
#endif
|
|
|
|
tree_recalculate_node_element(tree, element);
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (element->box.height != height) {
|
|
|
|
tree_recalculate_node_sizes(tree, element->parent, false);
|
|
|
|
if ((tree != NULL) && (tree->redraw)) {
|
|
|
|
tree->callbacks->redraw_request(0, element->box.y,
|
|
|
|
tree->width + element->box.width -
|
|
|
|
width,
|
|
|
|
tree->height - element->box.y +
|
|
|
|
element->box.height - height,
|
|
|
|
tree->client_data);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (element->box.width != width) {
|
|
|
|
tree_recalculate_node_sizes(tree, element->parent,
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tree != NULL) {
|
|
|
|
width = (width > element->box.width) ? width :
|
|
|
|
element->box.width;
|
|
|
|
if (tree->redraw) {
|
|
|
|
tree->callbacks->redraw_request(element->box.x,
|
|
|
|
element->box.y,
|
2010-10-10 13:10:44 +04:00
|
|
|
width,
|
2010-10-05 23:14:46 +04:00
|
|
|
element->box.height,
|
|
|
|
tree->client_data);
|
|
|
|
}
|
|
|
|
}
|
2004-12-13 16:48:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Stops editing a node_element
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree The tree to stop editing for
|
|
|
|
* \param keep_changes If true the changes made to the text will be kept,
|
|
|
|
* if false they will be dropped
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_stop_edit(struct tree *tree, bool keep_changes)
|
|
|
|
{
|
|
|
|
int text_len;
|
|
|
|
char *text = NULL;
|
|
|
|
struct node_element *element;
|
|
|
|
struct node_msg_data msg_data;
|
|
|
|
node_callback_resp response;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(tree != NULL);
|
|
|
|
|
|
|
|
if (tree->editing == NULL || tree->textarea == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
element = tree->editing;
|
|
|
|
|
|
|
|
if (keep_changes) {
|
|
|
|
text_len = textarea_get_text(tree->textarea, NULL, 0);
|
|
|
|
text = malloc(text_len * sizeof(char));
|
|
|
|
if (text == NULL) {
|
|
|
|
LOG(("malloc failed"));
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
textarea_destroy(tree->textarea);
|
|
|
|
tree->textarea = NULL;
|
|
|
|
return;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
textarea_get_text(tree->textarea, text, text_len);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (keep_changes && element->parent->user_callback != NULL) {
|
|
|
|
msg_data.msg = NODE_ELEMENT_EDIT_FINISHING;
|
|
|
|
msg_data.flag = element->flag;
|
|
|
|
msg_data.node = element->parent;
|
|
|
|
msg_data.data.text = text;
|
|
|
|
response = element->parent->user_callback(
|
|
|
|
element->parent->callback_data,
|
|
|
|
&msg_data);
|
|
|
|
|
|
|
|
switch (response) {
|
|
|
|
case NODE_CALLBACK_REJECT:
|
|
|
|
free(text);
|
|
|
|
text = NULL;
|
|
|
|
break;
|
|
|
|
case NODE_CALLBACK_CONTINUE:
|
|
|
|
free(text);
|
|
|
|
text = NULL;
|
|
|
|
return;
|
|
|
|
case NODE_CALLBACK_HANDLED:
|
|
|
|
case NODE_CALLBACK_NOT_HANDLED:
|
|
|
|
text = msg_data.data.text;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea_destroy(tree->textarea);
|
|
|
|
tree->textarea = NULL;
|
|
|
|
tree->editing = NULL;
|
|
|
|
|
|
|
|
if (text != NULL)
|
|
|
|
tree_update_node_element(tree, element, text, NULL);
|
|
|
|
else
|
2011-06-05 00:46:08 +04:00
|
|
|
tree_handle_node_element_changed(tree, element, true);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
|
|
|
|
tree_recalculate_size(tree);
|
|
|
|
if (element->parent->user_callback != NULL) {
|
2010-12-17 14:10:22 +03:00
|
|
|
msg_data.msg = keep_changes ? NODE_ELEMENT_EDIT_FINISHED :
|
|
|
|
NODE_ELEMENT_EDIT_CANCELLED;
|
2010-10-05 23:14:46 +04:00
|
|
|
msg_data.flag = element->flag;
|
|
|
|
msg_data.node = element->parent;
|
|
|
|
element->parent->user_callback(element->parent->callback_data,
|
|
|
|
&msg_data);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Delinks a node from the tree structures.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree in which the delink takes place, may be NULL
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to delink
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_delink_node(struct tree *tree, struct node *node)
|
|
|
|
{
|
|
|
|
struct node *parent;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(node != NULL);
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/* do not remove the root */
|
|
|
|
if (tree != NULL && node == tree->root)
|
|
|
|
return;
|
|
|
|
if ((tree != NULL) && (tree->editing != NULL)) {
|
|
|
|
parent = tree->editing->parent;
|
|
|
|
while (parent != NULL) {
|
|
|
|
if (node == parent) {
|
|
|
|
tree_stop_edit(tree, false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
parent = parent->parent;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (node->parent->child == node)
|
|
|
|
node->parent->child = node->next;
|
|
|
|
if (node->parent->last_child == node)
|
|
|
|
node->parent->last_child = node->previous;
|
|
|
|
parent = node->parent;
|
|
|
|
node->parent = NULL;
|
|
|
|
|
|
|
|
if (node->previous != NULL)
|
|
|
|
node->previous->next = node->next;
|
|
|
|
if (node->next != NULL)
|
|
|
|
node->next->previous = node->previous;
|
|
|
|
node->previous = NULL;
|
|
|
|
node->next = NULL;
|
|
|
|
|
|
|
|
tree_handle_node_changed(tree, parent, false, true);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Deletes a node from the tree.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to delete from, may be NULL
|
|
|
|
* \param node the node to delete
|
|
|
|
* \param siblings whether to delete all siblings
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_delete_node_internal(struct tree *tree, struct node *node,
|
|
|
|
bool siblings)
|
|
|
|
{
|
|
|
|
struct node *next, *child, *parent;
|
|
|
|
struct node_element *e, *f;
|
|
|
|
node_callback_resp response;
|
|
|
|
struct node_msg_data msg_data;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(node != NULL);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree != NULL && tree->root == node)
|
|
|
|
return;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
next = node->next;
|
|
|
|
parent = node->parent;
|
|
|
|
if (tree != NULL && parent == tree->root)
|
|
|
|
parent = NULL;
|
2011-11-10 16:22:48 +04:00
|
|
|
if ((tree != NULL) && (tree->def_folder == node))
|
|
|
|
tree->def_folder = NULL;
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_delink_node(tree, node);
|
|
|
|
child = node->child;
|
|
|
|
node->child = NULL;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
node->deleted = true;
|
|
|
|
if (child != NULL)
|
|
|
|
tree_delete_node_internal(tree, child, true);
|
|
|
|
|
|
|
|
if (!node->retain_in_memory) {
|
2011-01-20 17:05:13 +03:00
|
|
|
node->retain_in_memory = true;
|
2010-10-05 23:14:46 +04:00
|
|
|
for (e = &node->data; e != NULL; e = f) {
|
|
|
|
if (e->text != NULL) {
|
|
|
|
response = NODE_CALLBACK_NOT_HANDLED;
|
|
|
|
if (!e->editable &&
|
|
|
|
node->user_callback != NULL) {
|
|
|
|
msg_data.msg = NODE_DELETE_ELEMENT_TXT;
|
|
|
|
msg_data.flag = e->flag;
|
|
|
|
msg_data.node = node;
|
|
|
|
msg_data.data.text = (void *)e->text;
|
|
|
|
response = node->user_callback(
|
|
|
|
node->callback_data,
|
|
|
|
&msg_data);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
if (response != NODE_CALLBACK_HANDLED)
|
|
|
|
free((void *)e->text);
|
|
|
|
e->text = NULL;
|
|
|
|
}
|
|
|
|
if (e->bitmap != NULL) {
|
|
|
|
response = NODE_CALLBACK_NOT_HANDLED;
|
|
|
|
if (node->user_callback != NULL) {
|
|
|
|
msg_data.msg = NODE_DELETE_ELEMENT_IMG;
|
|
|
|
msg_data.flag = e->flag;
|
|
|
|
msg_data.node = node;
|
|
|
|
msg_data.data.bitmap =
|
|
|
|
(void *)e->bitmap;
|
|
|
|
response = node->user_callback(
|
|
|
|
node->callback_data,
|
|
|
|
&msg_data);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
/* TODO the type of this field is platform
|
|
|
|
dependent */
|
|
|
|
if (response != NODE_CALLBACK_HANDLED)
|
|
|
|
free(e->bitmap);
|
|
|
|
e->bitmap = NULL;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
f = e->next;
|
|
|
|
if (e != &node->data)
|
|
|
|
free(e);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
free(node);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (siblings && next)
|
|
|
|
tree_delete_node_internal(tree, next, true);
|
|
|
|
if ((tree->flags & TREE_DELETE_EMPTY_DIRS) && parent != NULL &&
|
|
|
|
parent->child == NULL && !parent->deleted)
|
|
|
|
tree_delete_node_internal(tree, parent, false);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Deletes all nodes of a tree and the tree itself.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to be deleted
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_delete(struct tree *tree)
|
|
|
|
{
|
2011-12-20 18:46:29 +04:00
|
|
|
tree->redraw = false;
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
treeview_test_fini(tree);
|
2013-05-31 13:11:22 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->root->child != NULL)
|
|
|
|
tree_delete_node_internal(tree, tree->root->child, true);
|
|
|
|
|
|
|
|
free((void *)tree->root->data.text);
|
|
|
|
free(tree->root);
|
|
|
|
free(tree);
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Gets the redraw property of the given tree.
|
|
|
|
*
|
|
|
|
* \param tree the tree for which to retrieve the property
|
|
|
|
* \return the redraw property of the tree
|
|
|
|
*/
|
|
|
|
bool tree_get_redraw(struct tree *tree)
|
|
|
|
{
|
|
|
|
return tree->redraw;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Deletes a node from the tree.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to delete from, may be NULL
|
|
|
|
* \param node the node to delete
|
|
|
|
* \param siblings whether to delete all siblings
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_delete_node(struct tree *tree, struct node *node, bool siblings)
|
|
|
|
{
|
|
|
|
int y = node->box.y;
|
2011-12-20 18:46:29 +04:00
|
|
|
int height = tree->height;
|
2011-12-24 13:54:51 +04:00
|
|
|
int width = tree->width;
|
2011-12-20 18:46:29 +04:00
|
|
|
bool redraw_setting = tree->redraw;
|
|
|
|
|
|
|
|
tree->redraw = false;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_delete_node_internal(tree, node, siblings);
|
|
|
|
tree_recalculate_node_positions(tree, tree->root);
|
2011-12-20 18:46:29 +04:00
|
|
|
|
|
|
|
tree->redraw = redraw_setting;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->redraw)
|
2011-12-20 18:46:29 +04:00
|
|
|
tree->callbacks->redraw_request(0, y,
|
2011-12-24 13:54:51 +04:00
|
|
|
width, height, tree->client_data);
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_recalculate_size(tree);
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Sets an icon for a node
|
|
|
|
*
|
|
|
|
* \param tree The tree to which node belongs, may be NULL
|
|
|
|
* \param node The node for which the icon is set
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param icon the image to use
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
void tree_set_node_icon(struct tree *tree, struct node *node,
|
|
|
|
hlcache_handle *icon)
|
|
|
|
{
|
|
|
|
node->data.type = NODE_ELEMENT_TEXT_PLUS_ICON;
|
|
|
|
tree_update_node_element(tree, &(node->data), NULL, icon);
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Updates all siblings and descendants of a node to an expansion state.
|
|
|
|
* No update is performed for the tree changes.
|
|
|
|
*
|
|
|
|
* \param tree the tree to which 'node' belongs
|
|
|
|
* \param node the node to set all siblings and descendants of
|
|
|
|
* \param expanded the expansion state to set
|
|
|
|
*/
|
|
|
|
static void tree_set_node_expanded_all(struct tree *tree, struct node *node,
|
|
|
|
bool expanded)
|
|
|
|
{
|
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
if (node->expanded != expanded) {
|
|
|
|
node->expanded = expanded;
|
|
|
|
tree_recalculate_node_sizes(tree, node, false);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
if ((node->child != NULL) && (node->expanded))
|
|
|
|
tree_set_node_expanded_all(tree, node->child, expanded);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Updates [all siblings and descendants of] a node to an expansion state.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to update
|
|
|
|
* \param node the node to set [all siblings and descendants of]
|
|
|
|
* \param expanded the expansion state to set
|
|
|
|
* \param folder whether to update folders, if this together with leaf
|
|
|
|
* will be false only 'node' will be updated
|
|
|
|
* \param leaf whether to update leaves (check also description for folder)
|
|
|
|
* \return whether any changes were made
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static bool tree_set_node_expanded_internal(struct tree *tree,
|
|
|
|
struct node *node, bool expanded, bool folder, bool leaf)
|
|
|
|
{
|
|
|
|
bool redraw = false;
|
|
|
|
struct node *end = (folder == false && leaf == false) ?
|
|
|
|
node->next : NULL;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->editing != NULL && node == tree->editing->parent)
|
|
|
|
tree_stop_edit(tree, false);
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
for (; node != end; node = node->next) {
|
|
|
|
if ((node->expanded != expanded) && (node != tree->root) &&
|
|
|
|
((folder && (node->folder)) ||
|
|
|
|
(leaf && (!node->folder)) ||
|
|
|
|
(!folder && !leaf))) {
|
|
|
|
node->expanded = expanded;
|
|
|
|
if (node->child != NULL)
|
|
|
|
tree_set_node_expanded_all(tree,
|
|
|
|
node->child, false);
|
|
|
|
if ((node->data.next != NULL) &&
|
|
|
|
(node->data.next->box.height == 0))
|
|
|
|
tree_recalculate_node_sizes(tree, node, true);
|
|
|
|
else
|
|
|
|
tree_recalculate_node_sizes(tree, node, false);
|
|
|
|
redraw = true;
|
|
|
|
}
|
|
|
|
if ((folder || leaf) && (node->child != NULL) &&
|
|
|
|
(node->expanded))
|
|
|
|
redraw |= tree_set_node_expanded_internal(tree,
|
|
|
|
node->child, expanded, folder, leaf);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
return redraw;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Updates [all siblings and descendants of] a node to an expansion state.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to update
|
|
|
|
* \param node the node to set [all siblings and descendants of]
|
|
|
|
* \param expanded the expansion state to set
|
|
|
|
* \param folder whether to update folders, if this together with leaf
|
|
|
|
* will be false only 'node' will be updated
|
|
|
|
* \param leaf whether to update leaves (check also description for folder)
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_set_node_expanded(struct tree *tree, struct node *node, bool expanded,
|
|
|
|
bool folder, bool leaf)
|
|
|
|
{
|
|
|
|
if (tree_set_node_expanded_internal(tree, node, expanded, folder, leaf))
|
|
|
|
tree_handle_node_changed(tree, node, false, true);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Updates a node to an selected state. The required areas of the tree are
|
|
|
|
* redrawn.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to update nodes for, may be NULL
|
|
|
|
* \param node the node to set all siblings and descendants of
|
|
|
|
* \param all if true update node together with its siblings and
|
|
|
|
* descendants
|
|
|
|
* \param selected the selection state to set
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_set_node_selected(struct tree *tree, struct node *node, bool all,
|
|
|
|
bool selected)
|
|
|
|
{
|
|
|
|
struct node *end;
|
|
|
|
|
|
|
|
if (tree != NULL && node == tree->root)
|
|
|
|
node = tree->root->child;
|
|
|
|
if (node == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
end = all ? NULL : node->next;
|
|
|
|
|
|
|
|
for (; node != end; node = node->next) {
|
|
|
|
if (node->selected != selected) {
|
|
|
|
node->selected = selected;
|
|
|
|
if (tree != NULL && tree->redraw)
|
2011-08-24 19:03:02 +04:00
|
|
|
tree->callbacks->redraw_request(
|
|
|
|
node->data.box.x,
|
|
|
|
node->data.box.y,
|
|
|
|
node->data.box.width,
|
|
|
|
node->data.box.height,
|
|
|
|
tree->client_data);
|
2006-07-17 01:42:37 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
if (all && (node->child != NULL) && (node->expanded))
|
|
|
|
tree_set_node_selected(tree, node->child, all,
|
|
|
|
selected);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Sets the sort function for a node
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to which 'node' belongs, may be NULL
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param node the node to be inserted
|
|
|
|
* \param sort pointer to the sorting function
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_set_node_sort_function(struct tree *tree, struct node *node,
|
|
|
|
int (*sort) (struct node *, struct node *))
|
|
|
|
{
|
|
|
|
struct node *child;
|
|
|
|
|
|
|
|
node->sort = sort;
|
|
|
|
|
|
|
|
if (tree != NULL && tree->editing != NULL)
|
|
|
|
tree_stop_edit(tree, false);
|
|
|
|
|
|
|
|
/* the node had already some children so they must get sorted */
|
|
|
|
if (node->child != NULL) {
|
|
|
|
|
|
|
|
child = node->child;
|
|
|
|
node->child = NULL;
|
|
|
|
|
|
|
|
while (child != NULL) {
|
|
|
|
tree_sort_insert(node, child);
|
|
|
|
child = child->next;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if (tree != NULL)
|
|
|
|
tree_recalculate_node_positions(tree, node->child);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Sets the delete callback for a node.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node for which the callback is set
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param callback the callback functions to be set
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param data user data to be passed to callback
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_set_node_user_callback(struct node *node,
|
|
|
|
tree_node_user_callback callback, void *data)
|
|
|
|
{
|
|
|
|
node->user_callback = callback;
|
|
|
|
node->callback_data = data;
|
2006-07-16 04:21:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Sets the redraw property to the given value. If redraw is true, the tree will
|
|
|
|
* be redrawn on layout/appearance changes.
|
2006-07-16 04:21:15 +04:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree for which the property is set
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param redraw the value to set
|
2006-07-16 04:21:15 +04:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_set_redraw(struct tree *tree, bool redraw)
|
|
|
|
{
|
|
|
|
/* the tree might have no graphical representation, do not set the
|
|
|
|
redraw flag in such case */
|
|
|
|
if (tree->callbacks == NULL)
|
|
|
|
return;
|
|
|
|
tree->redraw = redraw;
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Checks whether a node, its siblings or any children are selected.
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the root node to check from
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return whether 'node', its siblings or any children are selected.
|
|
|
|
*/
|
|
|
|
bool tree_node_has_selection(struct node *node)
|
|
|
|
{
|
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
if (node->selected)
|
|
|
|
return true;
|
|
|
|
if ((node->child != NULL) && (node->expanded) &&
|
|
|
|
(tree_node_has_selection(node->child)))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2006-04-10 03:21:13 +04:00
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Returns the current value of the nodes deleted property.
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to be checked
|
|
|
|
* \return the current value of the nodes deleted property
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
bool tree_node_is_deleted(struct node *node)
|
|
|
|
{
|
|
|
|
return node->deleted;
|
|
|
|
}
|
2006-04-10 03:21:13 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the node is a folder
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to be checked
|
|
|
|
* \return true if the node is a folder, false otherwise
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
bool tree_node_is_folder(struct node *node)
|
|
|
|
{
|
|
|
|
return node->folder;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-10 17:07:47 +04:00
|
|
|
/**
|
|
|
|
* Returns true if the node is the default folder for a tree
|
|
|
|
*
|
|
|
|
* \param node the node to be checked
|
|
|
|
* \return true if the node is a default folder, false otherwise
|
|
|
|
*/
|
|
|
|
bool tree_node_is_default(struct node *node)
|
|
|
|
{
|
|
|
|
return node->def_folder;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Update the text of a node element if it has changed.
|
|
|
|
*
|
|
|
|
* \param element The node element to update.
|
|
|
|
* \param text The text to update the element with. The ownership of
|
2011-01-20 17:05:13 +03:00
|
|
|
* this string is taken by this function and must not be
|
|
|
|
* referred to after the function exits.
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
bool tree_update_element_text(struct tree *tree,
|
|
|
|
struct node_element *element, char *text)
|
|
|
|
{
|
|
|
|
const char *node_text; /* existing node text */
|
|
|
|
|
|
|
|
if (text == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (element == NULL) {
|
|
|
|
free(text);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
node_text = tree_node_element_get_text(element);
|
|
|
|
|
|
|
|
if ((node_text == NULL) || (strcmp(node_text, text) != 0)) {
|
|
|
|
tree_update_node_element(tree, element, text, NULL);
|
2006-04-10 03:21:13 +04:00
|
|
|
} else {
|
2010-10-05 23:14:46 +04:00
|
|
|
/* text does not need changing, free it */
|
|
|
|
free(text);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Updates the content of a node_element.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree owning element, may be NULL
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param element the element to be updated
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param text new text to be set, may be NULL
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param bitmap new bitmap to be set, may be NULL
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_update_node_element(struct tree *tree, struct node_element *element,
|
|
|
|
const char *text, void *bitmap)
|
|
|
|
{
|
|
|
|
node_callback_resp response;
|
|
|
|
struct node_msg_data msg_data;
|
2011-06-05 00:46:08 +04:00
|
|
|
bool text_changed = false;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
assert(element != NULL);
|
|
|
|
|
2013-05-04 12:49:11 +04:00
|
|
|
if ((tree != NULL) && (element == tree->editing)) {
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_stop_edit(tree, false);
|
2013-05-04 12:49:11 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2013-05-04 12:49:11 +04:00
|
|
|
if ((text != NULL) &&
|
|
|
|
(element->type == NODE_ELEMENT_TEXT ||
|
|
|
|
element->type == NODE_ELEMENT_TEXT_PLUS_ICON)) {
|
2010-10-05 23:14:46 +04:00
|
|
|
if (element->text != NULL) {
|
2013-05-04 12:49:11 +04:00
|
|
|
if (strcmp(element->text, text) == 0) {
|
|
|
|
text_changed = true;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
response = NODE_CALLBACK_NOT_HANDLED;
|
2013-05-04 12:49:11 +04:00
|
|
|
if ((!element->editable) &&
|
|
|
|
(element->parent->user_callback != NULL)) {
|
2010-10-05 23:14:46 +04:00
|
|
|
msg_data.msg = NODE_DELETE_ELEMENT_TXT;
|
|
|
|
msg_data.flag = element->flag;
|
|
|
|
msg_data.node = element->parent;
|
|
|
|
msg_data.data.text = (void *)element->text;
|
|
|
|
response = element->parent->user_callback(
|
|
|
|
element->parent->callback_data,
|
|
|
|
&msg_data);
|
|
|
|
}
|
2013-05-04 12:49:11 +04:00
|
|
|
if (response != NODE_CALLBACK_HANDLED) {
|
|
|
|
free(element->text);
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2013-05-04 12:49:11 +04:00
|
|
|
element->text = (char *)text;
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2013-05-04 12:49:11 +04:00
|
|
|
if ((bitmap != NULL) &&
|
|
|
|
((element->type == NODE_ELEMENT_BITMAP) ||
|
|
|
|
(element->type == NODE_ELEMENT_TEXT_PLUS_ICON))) {
|
2010-10-05 23:14:46 +04:00
|
|
|
if (element->bitmap != NULL) {
|
|
|
|
response = NODE_CALLBACK_NOT_HANDLED;
|
|
|
|
if (element->parent->user_callback != NULL) {
|
|
|
|
msg_data.msg = NODE_DELETE_ELEMENT_IMG;
|
|
|
|
msg_data.flag = element->flag;
|
|
|
|
msg_data.node = element->parent;
|
|
|
|
msg_data.data.bitmap = (void *)element->bitmap;
|
|
|
|
response = element->parent->user_callback(
|
|
|
|
element->parent->callback_data,
|
|
|
|
&msg_data);
|
|
|
|
}
|
2013-05-04 12:49:11 +04:00
|
|
|
|
|
|
|
if (response != NODE_CALLBACK_HANDLED) {
|
2010-10-05 23:14:46 +04:00
|
|
|
free(element->bitmap);
|
2013-05-04 12:49:11 +04:00
|
|
|
}
|
|
|
|
} else {
|
2011-06-05 00:22:24 +04:00
|
|
|
/* Increase the box width to accomodate the new icon */
|
|
|
|
element->box.width += NODE_INSTEP;
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
element->bitmap = bitmap;
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2011-06-05 00:46:08 +04:00
|
|
|
tree_handle_node_element_changed(tree, element, text_changed);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Returns the node element's text
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the node element's text
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
const char *tree_node_element_get_text(struct node_element *element)
|
|
|
|
{
|
|
|
|
return element->text;
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
|
|
|
|
2013-05-18 19:35:48 +04:00
|
|
|
/**
|
|
|
|
* Returns the node element's icon
|
|
|
|
*
|
|
|
|
* \return the node element's icon
|
|
|
|
*/
|
|
|
|
struct bitmap *tree_node_element_get_icon(struct node_element *element)
|
|
|
|
{
|
|
|
|
return element->bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Get the root node of a tree
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to get the root of
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the root of the tree
|
|
|
|
*/
|
|
|
|
struct node *tree_get_root(struct tree *tree)
|
|
|
|
{
|
|
|
|
return tree->root;
|
2006-07-13 16:46:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Returns whether the current tree is being edited at this time
|
2006-07-13 16:46:02 +04:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to be checked
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return true if the tree is currently being edited
|
2006-07-13 16:46:02 +04:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
bool tree_is_edited(struct tree *tree)
|
|
|
|
{
|
|
|
|
return tree->editing == NULL ? false : true;
|
|
|
|
}
|
2006-07-13 16:46:02 +04:00
|
|
|
|
|
|
|
|
2010-10-29 21:40:36 +04:00
|
|
|
/**
|
|
|
|
* Get the drag state of a tree
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to get the state of
|
2010-10-29 21:40:36 +04:00
|
|
|
* \return drag type (defined in desktop/tree.h)
|
|
|
|
*/
|
|
|
|
tree_drag_type tree_drag_status(struct tree *tree)
|
|
|
|
{
|
|
|
|
return tree->drag;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-10 16:22:48 +04:00
|
|
|
/**
|
|
|
|
* Get the default node of a tree for additions
|
|
|
|
*
|
|
|
|
* \param tree the tree to get the default node of
|
|
|
|
* \return the default node
|
|
|
|
*/
|
|
|
|
struct node *tree_get_default_folder_node(struct tree *tree)
|
|
|
|
{
|
|
|
|
if (tree->def_folder != NULL) {
|
|
|
|
return tree->def_folder;
|
|
|
|
} else {
|
|
|
|
return tree_get_root(tree);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the default node of a tree to the selected node
|
|
|
|
*
|
|
|
|
* \param tree the tree to set the default node of
|
2011-11-10 17:07:47 +04:00
|
|
|
* \param node the node to set as default (NULL for selected node)
|
2011-11-10 16:22:48 +04:00
|
|
|
* \return success
|
|
|
|
*/
|
2011-11-10 17:07:47 +04:00
|
|
|
bool tree_set_default_folder_node(struct tree *tree, struct node *node)
|
2011-11-10 16:22:48 +04:00
|
|
|
{
|
|
|
|
struct node *sel_node;
|
|
|
|
|
2011-11-10 17:07:47 +04:00
|
|
|
if (node == NULL) {
|
|
|
|
sel_node = tree_get_selected_node(tree->root);
|
|
|
|
} else {
|
|
|
|
sel_node = node;
|
|
|
|
}
|
2011-11-10 16:22:48 +04:00
|
|
|
|
|
|
|
if((sel_node == NULL) ||
|
|
|
|
(tree_node_is_folder(sel_node) == false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-10 17:47:24 +04:00
|
|
|
tree_clear_default_folder_node(tree);
|
|
|
|
|
2011-11-10 16:22:48 +04:00
|
|
|
tree->def_folder = sel_node;
|
2011-11-10 17:07:47 +04:00
|
|
|
sel_node->def_folder = true;
|
2011-11-10 17:47:24 +04:00
|
|
|
tree_handle_node_changed(tree, sel_node, true, false);
|
|
|
|
|
2011-11-10 16:22:48 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the default node of a tree
|
|
|
|
*
|
|
|
|
* \param tree the tree to clear the default node of
|
|
|
|
*/
|
|
|
|
void tree_clear_default_folder_node(struct tree *tree)
|
|
|
|
{
|
2011-11-10 17:07:47 +04:00
|
|
|
struct node *def_node = NULL;
|
|
|
|
def_node = tree_get_default_folder_node(tree);
|
|
|
|
|
|
|
|
if (def_node != NULL) {
|
|
|
|
tree->def_folder = NULL;
|
|
|
|
def_node->def_folder = false;
|
2011-11-10 18:02:37 +04:00
|
|
|
tree_handle_node_changed(tree, def_node, true, false);
|
2011-11-10 17:07:47 +04:00
|
|
|
}
|
2011-11-10 16:22:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-28 00:07:26 +04:00
|
|
|
/**
|
|
|
|
* Returns the parent of a node
|
|
|
|
*
|
|
|
|
* \param node the node to get the parent of
|
|
|
|
* \return the node's parent
|
|
|
|
*/
|
|
|
|
struct node *tree_node_get_parent(struct node *node)
|
|
|
|
{
|
|
|
|
return node->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Returns the first child of a node
|
|
|
|
*
|
|
|
|
* \param node the node to get the child of
|
|
|
|
* \return the nodes first child
|
|
|
|
*/
|
|
|
|
struct node *tree_node_get_child(struct node *node)
|
|
|
|
{
|
|
|
|
return node->child;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Returns the closest sibling a node
|
2005-12-31 09:17:36 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param node the node to get the sibling of
|
|
|
|
* \return the nodes sibling
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *tree_node_get_next(struct node *node)
|
|
|
|
{
|
|
|
|
return node->next;
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
2010-12-12 23:39:46 +03:00
|
|
|
* Draws an element's expansion icon
|
2010-10-05 23:14:46 +04:00
|
|
|
*
|
2011-06-30 19:48:07 +04:00
|
|
|
* \param tree the tree to draw the expansion for
|
|
|
|
* \param element the element to draw the expansion for
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree_x X coordinate of the tree
|
|
|
|
* \param tree_y Y coordinate of the tree
|
2011-06-30 19:48:07 +04:00
|
|
|
* \param ctx current redraw context
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
2010-12-12 16:55:25 +03:00
|
|
|
static void tree_draw_node_expansion_toggle(struct tree *tree,
|
2011-06-30 19:48:07 +04:00
|
|
|
struct node *node, int tree_x, int tree_y,
|
|
|
|
const struct redraw_context *ctx)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
2011-06-30 19:48:07 +04:00
|
|
|
const struct plotter_table *plot = ctx->plot;
|
2010-10-05 23:14:46 +04:00
|
|
|
int x, y;
|
|
|
|
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
if ((node->child != NULL) || (node->data.next != NULL)) {
|
|
|
|
x = tree_x + node->box.x - (NODE_INSTEP / 2) - 4;
|
2010-12-13 00:24:35 +03:00
|
|
|
y = tree_y + node->box.y + (TREE_LINE_HEIGHT - 9) / 2;
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->rectangle(x, y, x + 9, y + 9,
|
2010-12-21 20:01:30 +03:00
|
|
|
&plot_style_fill_tree_furniture);
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->rectangle(x , y, x + 8, y + 8,
|
|
|
|
&plot_style_stroke_tree_furniture);
|
|
|
|
plot->line(x + 2, y + 4, x + 7, y + 4,
|
|
|
|
&plot_style_stroke_tree_furniture);
|
2010-10-05 23:14:46 +04:00
|
|
|
if (!node->expanded)
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->line(x + 4, y + 2, x + 4, y + 7,
|
|
|
|
&plot_style_stroke_tree_furniture);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2005-02-09 02:34:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Draws an element, including any expansion icons
|
2005-12-31 09:17:36 +03:00
|
|
|
*
|
2010-12-15 03:32:37 +03:00
|
|
|
* \param tree the tree to draw an element for
|
|
|
|
* \param element the element to draw
|
|
|
|
* \param tree_x X coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param tree_y Y coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param clip clipping rectangle (wrt plot origin)
|
2011-06-30 19:48:07 +04:00
|
|
|
* \param ctx current redraw context
|
2005-02-09 02:34:56 +03:00
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static void tree_draw_node_element(struct tree *tree,
|
2010-12-15 03:32:37 +03:00
|
|
|
struct node_element *element, int tree_x, int tree_y,
|
2011-06-30 19:48:07 +04:00
|
|
|
const struct rect *clip, const struct redraw_context *ctx)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
2011-06-30 19:48:07 +04:00
|
|
|
const struct plotter_table *plot = ctx->plot;
|
2010-10-05 23:14:46 +04:00
|
|
|
struct bitmap *bitmap = NULL;
|
|
|
|
int x, y, width;
|
|
|
|
bool selected = false;
|
2011-11-10 17:47:24 +04:00
|
|
|
bool def_folder = false;
|
2010-10-05 23:14:46 +04:00
|
|
|
hlcache_handle *icon;
|
|
|
|
plot_font_style_t *fstyle;
|
2010-12-13 00:13:55 +03:00
|
|
|
const int icon_inset = (TREE_LINE_HEIGHT - TREE_ICON_SIZE) / 2;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(element != NULL);
|
|
|
|
assert(element->parent != NULL);
|
|
|
|
|
|
|
|
x = tree_x + element->box.x;
|
|
|
|
y = tree_y + element->box.y;
|
|
|
|
width = element->box.width;
|
2011-11-10 17:47:24 +04:00
|
|
|
if (&element->parent->data == element) {
|
2010-10-05 23:14:46 +04:00
|
|
|
if (element->parent->selected)
|
|
|
|
selected = true;
|
2011-11-10 17:47:24 +04:00
|
|
|
if (element->parent->def_folder)
|
|
|
|
def_folder = true;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
switch (element->type) {
|
|
|
|
case NODE_ELEMENT_TEXT_PLUS_ICON:
|
|
|
|
icon = element->bitmap;
|
2010-12-13 00:13:55 +03:00
|
|
|
if (icon != NULL && (content_get_status(icon) ==
|
|
|
|
CONTENT_STATUS_READY ||
|
|
|
|
content_get_status(icon) ==
|
2010-12-15 13:38:41 +03:00
|
|
|
CONTENT_STATUS_DONE) &&
|
2011-02-15 01:05:39 +03:00
|
|
|
x + TREE_ICON_SIZE > clip->x0 &&
|
|
|
|
x < clip->x1) {
|
2010-12-15 03:32:37 +03:00
|
|
|
struct rect c;
|
|
|
|
/* Clip to image area */
|
|
|
|
c.x0 = x;
|
|
|
|
c.y0 = y + icon_inset;
|
|
|
|
c.x1 = x + TREE_ICON_SIZE;
|
|
|
|
c.y1 = y + icon_inset + TREE_ICON_SIZE;
|
2011-02-15 01:05:39 +03:00
|
|
|
if (c.x0 < clip->x0) c.x0 = clip->x0;
|
|
|
|
if (c.y0 < clip->y0) c.y0 = clip->y0;
|
|
|
|
if (c.x1 > clip->x1) c.x1 = clip->x1;
|
|
|
|
if (c.y1 > clip->y1) c.y1 = clip->y1;
|
2010-12-15 03:32:37 +03:00
|
|
|
|
2010-12-15 13:38:41 +03:00
|
|
|
if (c.x1 > c.x0 && c.y1 > c.y0) {
|
|
|
|
/* Valid clip rectangles only */
|
2011-06-29 00:17:39 +04:00
|
|
|
struct content_redraw_data data;
|
|
|
|
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->clip(&c);
|
2011-06-29 00:17:39 +04:00
|
|
|
|
|
|
|
data.x = x;
|
|
|
|
data.y = y + icon_inset;
|
|
|
|
data.width = TREE_ICON_SIZE;
|
|
|
|
data.height = TREE_ICON_SIZE;
|
|
|
|
|
|
|
|
data.background_colour = 0xFFFFFF;
|
|
|
|
data.scale = 1;
|
|
|
|
data.repeat_x = false;
|
|
|
|
data.repeat_y = false;
|
|
|
|
|
2011-06-30 19:48:07 +04:00
|
|
|
content_redraw(icon, &data, &c, ctx);
|
2010-12-15 13:38:41 +03:00
|
|
|
|
|
|
|
/* Restore previous clipping area */
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->clip(clip);
|
2010-12-15 13:38:41 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
x += NODE_INSTEP;
|
2011-07-28 23:29:43 +04:00
|
|
|
width -= NODE_INSTEP;
|
2006-04-10 03:21:13 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/* fall through */
|
|
|
|
case NODE_ELEMENT_TEXT:
|
2011-02-15 01:05:39 +03:00
|
|
|
if (element->text == NULL || clip->x1 < x)
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
2005-02-09 02:34:56 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (element == tree->editing)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (selected) {
|
2011-11-10 17:47:24 +04:00
|
|
|
if (def_folder == true)
|
|
|
|
fstyle = &plot_fstyle_selected_def_folder;
|
|
|
|
else
|
|
|
|
fstyle = &plot_fstyle_selected;
|
|
|
|
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->rectangle(x, y, x + width,
|
2010-10-05 23:14:46 +04:00
|
|
|
y + element->box.height,
|
2010-12-21 20:01:30 +03:00
|
|
|
&plot_style_fill_tree_selected);
|
2010-10-05 23:14:46 +04:00
|
|
|
} else {
|
2011-11-10 17:47:24 +04:00
|
|
|
if (def_folder == true)
|
|
|
|
fstyle = &plot_fstyle_def_folder;
|
|
|
|
else
|
2010-10-05 23:14:46 +04:00
|
|
|
fstyle = &plot_fstyle;
|
|
|
|
}
|
|
|
|
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->text(x + 4, y + (TREE_LINE_HEIGHT * 3 + 2) / 4,
|
2010-12-13 01:37:51 +03:00
|
|
|
element->text, strlen(element->text),
|
|
|
|
fstyle);
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
|
|
|
case NODE_ELEMENT_BITMAP:
|
|
|
|
bitmap = element->bitmap;
|
|
|
|
if (bitmap == NULL)
|
|
|
|
break;
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->bitmap(x, y, element->box.width - 1,
|
2010-10-05 23:14:46 +04:00
|
|
|
element->box.height - 2,
|
|
|
|
bitmap, 0xFFFFFF, BITMAPF_NONE);
|
|
|
|
if (!(tree->flags & TREE_NO_FURNITURE))
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->rectangle(x, y, x + element->box.width - 1,
|
2010-10-05 23:14:46 +04:00
|
|
|
y + element->box.height - 3,
|
2010-12-12 19:45:41 +03:00
|
|
|
&plot_style_stroke_tree_furniture);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-13 16:46:02 +04:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Redraws a node.
|
2006-07-13 16:46:02 +04:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param tree the tree to draw
|
|
|
|
* \param node the node to draw children and siblings of
|
2010-12-15 03:32:37 +03:00
|
|
|
* \param tree_x X coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param tree_y Y coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param clip clipping rectangle (wrt plot origin)
|
2011-06-30 19:48:07 +04:00
|
|
|
* \param ctx current redraw context
|
2006-07-13 16:46:02 +04:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
static void tree_draw_node(struct tree *tree, struct node *node,
|
2011-06-30 19:48:07 +04:00
|
|
|
int tree_x, int tree_y, struct rect clip,
|
|
|
|
const struct redraw_context *ctx)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
2011-06-30 19:48:07 +04:00
|
|
|
const struct plotter_table *plot = ctx->plot;
|
2006-07-13 16:46:02 +04:00
|
|
|
struct node_element *element;
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *parent;
|
|
|
|
int x0, y0, x1, y1;
|
2010-12-15 03:32:37 +03:00
|
|
|
struct rect node_extents;
|
2006-07-13 16:46:02 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(tree != NULL);
|
|
|
|
assert(node != NULL);
|
2006-07-13 16:46:02 +04:00
|
|
|
|
2010-12-15 03:32:37 +03:00
|
|
|
/* Find node's extents, including children's area */
|
|
|
|
node_extents.x0 = tree_x + node->box.x - NODE_INSTEP;
|
|
|
|
node_extents.y0 = tree_y + node->box.y;
|
|
|
|
node_extents.x1 = tree_x + node->box.x + node->box.width + NODE_INSTEP;
|
|
|
|
if (node->next != NULL)
|
|
|
|
node_extents.y1 = tree_y + node->next->box.y;
|
|
|
|
else
|
|
|
|
node_extents.y1 = tree_y + node->box.y + node->box.height;
|
2006-07-13 16:46:02 +04:00
|
|
|
|
2010-12-15 03:32:37 +03:00
|
|
|
/* Nothing to draw, if node is outside clip region */
|
|
|
|
if ((node_extents.x1 < clip.x0) && (node_extents.y1 < clip.y0) &&
|
|
|
|
(node_extents.x0 > clip.x1) &&
|
|
|
|
(node_extents.y0 > clip.y1)) {
|
2010-10-05 23:14:46 +04:00
|
|
|
return;
|
2010-12-15 03:32:37 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2010-12-15 03:32:37 +03:00
|
|
|
/* Intersect clip region with node's extents */
|
|
|
|
if (clip.x0 < node_extents.x0) clip.x0 = node_extents.x0;
|
|
|
|
if (clip.y0 < node_extents.y0) clip.y0 = node_extents.y0;
|
|
|
|
if (clip.x1 > node_extents.x1) clip.x1 = node_extents.x1;
|
|
|
|
if (clip.y1 > node_extents.y1) clip.y1 = node_extents.y1;
|
|
|
|
|
2010-12-15 13:38:41 +03:00
|
|
|
if (clip.x0 >= clip.x1 || clip.y0 >= clip.y1) {
|
|
|
|
/* Invalid clip rectangle */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-12-15 03:32:37 +03:00
|
|
|
/* Set up the clipping area */
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->clip(&clip);
|
2010-12-15 03:32:37 +03:00
|
|
|
|
2010-12-15 04:05:10 +03:00
|
|
|
/* Draw node's furniture */
|
2010-12-15 03:32:37 +03:00
|
|
|
if (!(tree->flags & TREE_NO_FURNITURE)) {
|
|
|
|
/* Display furniture */
|
2010-12-15 04:05:10 +03:00
|
|
|
if (node->previous != NULL) {
|
|
|
|
/* There is a node above this
|
|
|
|
* Display furniture; line connecting up to previous */
|
|
|
|
x0 = x1 = tree_x + node->box.x - (NODE_INSTEP / 2);
|
|
|
|
y0 = tree_y + node->previous->box.y;
|
|
|
|
y1 = tree_y + node->box.y + (TREE_LINE_HEIGHT / 2);
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->line(x0, y0, x1, y1,
|
2010-12-15 04:05:10 +03:00
|
|
|
&plot_style_stroke_tree_furniture);
|
|
|
|
}
|
|
|
|
if (node->next != NULL) {
|
|
|
|
/* There is a node below this
|
|
|
|
* Display furniture; line connecting down to next */
|
|
|
|
x0 = x1 = tree_x + node->box.x - (NODE_INSTEP / 2);
|
|
|
|
y0 = tree_y + node->box.y + (TREE_LINE_HEIGHT / 2);
|
|
|
|
y1 = tree_y + node->next->box.y;
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->line(x0, y0, x1, y1,
|
2010-12-15 04:05:10 +03:00
|
|
|
&plot_style_stroke_tree_furniture);
|
|
|
|
}
|
|
|
|
|
2010-12-15 03:32:37 +03:00
|
|
|
parent = node->parent;
|
|
|
|
if ((parent != NULL) && (parent != tree->root) &&
|
|
|
|
(parent->child == node)) {
|
|
|
|
/* Node is first child */
|
|
|
|
x0 = x1 = tree_x + parent->box.x + (NODE_INSTEP / 2);
|
|
|
|
y0 = tree_y + parent->data.box.y +
|
|
|
|
parent->data.box.height;
|
|
|
|
y1 = y0 + (TREE_LINE_HEIGHT / 2);
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->line(x0, y0, x1, y1,
|
2010-12-12 19:45:41 +03:00
|
|
|
&plot_style_stroke_tree_furniture);
|
2006-07-13 16:46:02 +04:00
|
|
|
}
|
2010-12-15 03:32:37 +03:00
|
|
|
/* Line from expansion toggle to icon */
|
|
|
|
x0 = tree_x + node->box.x - (NODE_INSTEP / 2);
|
|
|
|
x1 = x0 + (NODE_INSTEP / 2) - 2;
|
|
|
|
y0 = y1 = tree_y + node->data.box.y + node->data.box.height -
|
|
|
|
(TREE_LINE_HEIGHT / 2);
|
2011-06-30 19:48:07 +04:00
|
|
|
plot->line(x0, y0, x1, y1, &plot_style_stroke_tree_furniture);
|
2010-12-15 04:05:10 +03:00
|
|
|
|
2011-06-30 19:48:07 +04:00
|
|
|
tree_draw_node_expansion_toggle(tree, node,
|
|
|
|
tree_x, tree_y, ctx);
|
2010-12-15 03:32:37 +03:00
|
|
|
}
|
2010-12-15 04:05:10 +03:00
|
|
|
|
|
|
|
/* Draw node's element(s)
|
|
|
|
* NOTE: node's children are handled later in tree_draw_tree() */
|
2010-12-15 03:32:37 +03:00
|
|
|
if (node->expanded) {
|
|
|
|
for (element = &node->data; element != NULL;
|
|
|
|
element = element->next) {
|
|
|
|
/* Draw each element of expanded node */
|
|
|
|
tree_draw_node_element(tree, element, tree_x, tree_y,
|
2011-06-30 19:48:07 +04:00
|
|
|
&clip, ctx);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2010-12-15 03:32:37 +03:00
|
|
|
} else {
|
|
|
|
/* Draw main title element of node */
|
2011-02-15 01:05:39 +03:00
|
|
|
tree_draw_node_element(tree, &node->data, tree_x, tree_y,
|
2011-06-30 19:48:07 +04:00
|
|
|
&clip, ctx);
|
2010-12-15 03:32:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraws a node's descendants.
|
|
|
|
*
|
|
|
|
* \param tree the tree to draw
|
|
|
|
* \param node the node to draw children and siblings of
|
|
|
|
* \param tree_x X coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param tree_y Y coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param clip clipping rectangle (wrt plot origin)
|
2011-06-30 19:48:07 +04:00
|
|
|
* \param ctx current redraw context
|
2010-12-15 03:32:37 +03:00
|
|
|
*/
|
|
|
|
static void tree_draw_tree(struct tree *tree, struct node *node,
|
2011-06-30 19:48:07 +04:00
|
|
|
int tree_x, int tree_y, struct rect clip,
|
|
|
|
const struct redraw_context *ctx)
|
2010-12-15 03:32:37 +03:00
|
|
|
{
|
|
|
|
struct node *child;
|
|
|
|
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
for (child = node->child; child != NULL; child = child->next) {
|
|
|
|
/* Draw children that are inside the clip region */
|
|
|
|
|
|
|
|
if (child->next != NULL &&
|
|
|
|
(child->next->box.y + tree_y < clip.y0))
|
|
|
|
/* Child is above clip region */
|
|
|
|
continue;
|
|
|
|
if (child->box.y + tree_y > clip.y1)
|
|
|
|
/* Child is below clip region
|
|
|
|
* further siblings will be too */
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Draw current child */
|
2011-06-30 19:48:07 +04:00
|
|
|
tree_draw_node(tree, child, tree_x, tree_y, clip, ctx);
|
2010-12-15 03:32:37 +03:00
|
|
|
/* And its children */
|
|
|
|
if ((child->child != NULL) && (child->expanded)) {
|
|
|
|
/* Child has children and they are visible */
|
2011-06-30 19:48:07 +04:00
|
|
|
tree_draw_tree(tree, child, tree_x, tree_y, clip, ctx);
|
2010-12-12 16:55:25 +03:00
|
|
|
}
|
2006-07-13 16:46:02 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2006-07-15 15:59:25 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraws a tree.
|
|
|
|
*
|
|
|
|
* \param tree the tree to draw
|
2010-12-15 03:32:37 +03:00
|
|
|
* \param x X coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param y Y coordinate to draw the tree at (wrt plot origin)
|
|
|
|
* \param clip_x minimum x of the clipping rectangle (wrt tree origin)
|
|
|
|
* \param clip_y minimum y of the clipping rectangle (wrt tree origin)
|
|
|
|
* \param clip_width width of the clipping rectangle
|
|
|
|
* \param clip_height height of the clipping rectangle
|
2011-06-30 19:48:07 +04:00
|
|
|
* \param ctx current redraw context
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
void tree_draw(struct tree *tree, int x, int y,
|
2011-06-30 19:48:07 +04:00
|
|
|
int clip_x, int clip_y, int clip_width, int clip_height,
|
|
|
|
const struct redraw_context *ctx)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
2011-06-30 19:48:07 +04:00
|
|
|
struct redraw_context new_ctx = *ctx;
|
2010-12-15 03:32:37 +03:00
|
|
|
struct rect clip;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(tree != NULL);
|
|
|
|
assert(tree->root != NULL);
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
if (treeview_test_redraw(tree, x, y, clip_x, clip_y,
|
|
|
|
clip_width, clip_height, ctx)) {
|
|
|
|
return;
|
2013-05-31 13:11:22 +04:00
|
|
|
}
|
|
|
|
|
2010-12-19 19:14:06 +03:00
|
|
|
/* Start knockout rendering if it's available for this plotter */
|
2011-06-30 19:48:07 +04:00
|
|
|
if (ctx->plot->option_knockout)
|
|
|
|
knockout_plot_start(ctx, &new_ctx);
|
2010-12-19 19:14:06 +03:00
|
|
|
|
2010-12-15 22:48:59 +03:00
|
|
|
/* Set up clip rectangle */
|
2010-12-15 03:32:37 +03:00
|
|
|
clip.x0 = x + clip_x;
|
|
|
|
clip.y0 = y + clip_y;
|
|
|
|
clip.x1 = clip.x0 + clip_width;
|
|
|
|
clip.y1 = clip.y0 + clip_height;
|
2011-06-30 19:48:07 +04:00
|
|
|
new_ctx.plot->clip(&clip);
|
2010-12-15 03:32:37 +03:00
|
|
|
|
2010-12-15 22:48:59 +03:00
|
|
|
/* Flat fill extents of clipping area */
|
2011-06-30 19:48:07 +04:00
|
|
|
new_ctx.plot->rectangle(clip.x0, clip.y0, clip.x1, clip.y1,
|
2010-12-12 19:45:41 +03:00
|
|
|
&plot_style_fill_tree_background);
|
2010-12-15 22:48:59 +03:00
|
|
|
|
2010-12-18 19:35:52 +03:00
|
|
|
/* don't draw empty trees or trees with redraw flag set to false */
|
2010-12-29 19:39:23 +03:00
|
|
|
if (tree->root->child != NULL && tree->redraw) {
|
|
|
|
|
|
|
|
/* Draw the tree */
|
2011-06-30 19:48:07 +04:00
|
|
|
tree_draw_tree(tree, tree->root, x, y, clip, &new_ctx);
|
2010-12-29 19:39:23 +03:00
|
|
|
|
|
|
|
/* Draw textarea, if present */
|
2011-01-20 17:05:13 +03:00
|
|
|
if (tree->editing != NULL) {
|
2010-12-29 19:39:23 +03:00
|
|
|
x = x + tree->editing->box.x;
|
|
|
|
y = y + tree->editing->box.y;
|
|
|
|
if (tree->editing->type == NODE_ELEMENT_TEXT_PLUS_ICON)
|
|
|
|
x += NODE_INSTEP;
|
2013-01-13 00:59:32 +04:00
|
|
|
textarea_redraw(tree->textarea, x, y,
|
|
|
|
plot_style_fill_tree_background.
|
|
|
|
fill_colour,
|
2013-02-09 03:25:40 +04:00
|
|
|
1.0, &clip, &new_ctx);
|
2011-01-20 17:05:13 +03:00
|
|
|
}
|
2010-12-29 19:39:23 +03:00
|
|
|
}
|
2010-12-19 19:14:06 +03:00
|
|
|
|
|
|
|
/* Rendering complete */
|
2011-06-30 19:48:07 +04:00
|
|
|
if (ctx->plot->option_knockout)
|
2010-12-19 19:14:06 +03:00
|
|
|
knockout_plot_end();
|
2006-07-13 16:46:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Finds a node element from a node with a specific user_type
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to examine
|
|
|
|
* \param flag user assinged flag used is searches
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param after if this is not NULL the search will start after the given
|
|
|
|
* node_element
|
2011-01-20 17:05:13 +03:00
|
|
|
* \return the corresponding element
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node_element *tree_node_find_element(struct node *node,
|
|
|
|
unsigned int flag, struct node_element *after)
|
|
|
|
{
|
2004-12-09 13:30:44 +03:00
|
|
|
struct node_element *element;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (after == NULL)
|
|
|
|
element = &node->data;
|
|
|
|
else {
|
|
|
|
assert(after->parent == node);
|
|
|
|
element = after->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; element != NULL; element = element->next)
|
|
|
|
if (element->flag == flag) return element;
|
|
|
|
|
|
|
|
return NULL;
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Deletes all selected nodes from the tree.
|
2004-12-09 13:30:44 +03:00
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to delete from
|
|
|
|
* \param node the node to delete
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
void tree_delete_selected_nodes(struct tree *tree, struct node *node)
|
|
|
|
{
|
|
|
|
struct node *next;
|
2011-12-20 18:46:29 +04:00
|
|
|
int y = node->box.y;
|
|
|
|
int height = tree->height;
|
2011-12-24 13:54:51 +04:00
|
|
|
int width = tree->width;
|
2011-12-20 18:46:29 +04:00
|
|
|
bool redraw_setting = tree->redraw;
|
|
|
|
|
|
|
|
tree->redraw = false;
|
2005-12-31 09:17:36 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (node == tree->root) {
|
|
|
|
if (node->child != NULL)
|
|
|
|
tree_delete_selected_nodes(tree, node->child);
|
2011-12-20 18:46:29 +04:00
|
|
|
|
|
|
|
tree->redraw = redraw_setting;
|
|
|
|
|
|
|
|
if (tree->redraw)
|
|
|
|
tree->callbacks->redraw_request(0, y,
|
2011-12-24 13:54:51 +04:00
|
|
|
width, height,
|
2011-12-20 18:46:29 +04:00
|
|
|
tree->client_data);
|
2004-12-09 13:30:44 +03:00
|
|
|
return;
|
2006-07-16 04:21:15 +04:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
while (node != NULL) {
|
|
|
|
next = node->next;
|
|
|
|
if (node->selected)
|
|
|
|
tree_delete_node(tree, node, false);
|
|
|
|
else if (node->child != NULL)
|
|
|
|
tree_delete_selected_nodes(tree, node->child);
|
|
|
|
node = next;
|
|
|
|
}
|
2011-12-20 18:46:29 +04:00
|
|
|
|
|
|
|
tree->redraw = redraw_setting;
|
|
|
|
|
|
|
|
if (tree->redraw)
|
|
|
|
tree->callbacks->redraw_request(0, y,
|
2011-12-24 13:54:51 +04:00
|
|
|
width, height,
|
2011-12-20 18:46:29 +04:00
|
|
|
tree->client_data);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the selected node, or NULL if multiple nodes are selected.
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param node the node to search sibling and children
|
|
|
|
* \return the selected node, or NULL if multiple nodes are selected
|
2004-12-09 13:30:44 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *tree_get_selected_node(struct node *node)
|
|
|
|
{
|
2004-12-09 13:30:44 +03:00
|
|
|
struct node *result = NULL;
|
|
|
|
struct node *temp;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
for (; node != NULL; node = node->next) {
|
2004-12-09 13:30:44 +03:00
|
|
|
if (node->selected) {
|
2010-10-05 23:14:46 +04:00
|
|
|
if (result != NULL)
|
2004-12-09 13:30:44 +03:00
|
|
|
return NULL;
|
|
|
|
result = node;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
if ((node->child != NULL) && (node->expanded)) {
|
2004-12-09 13:30:44 +03:00
|
|
|
temp = tree_get_selected_node(node->child);
|
2010-10-05 23:14:46 +04:00
|
|
|
if (temp != NULL) {
|
|
|
|
if (result != NULL)
|
2004-12-09 13:30:44 +03:00
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
result = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds a node element at a specific location.
|
|
|
|
*
|
|
|
|
* \param node the root node to check from
|
|
|
|
* \param x the x co-ordinate
|
|
|
|
* \param y the y co-ordinate
|
2010-12-12 17:30:33 +03:00
|
|
|
* \param expansion_toggle whether the coordinate was in an expansion toggle
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the node at the specified position, or NULL for none
|
|
|
|
*/
|
|
|
|
static struct node_element *tree_get_node_element_at(struct node *node,
|
2010-12-12 17:30:33 +03:00
|
|
|
int x, int y, bool *expansion_toggle)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
struct node_element *element;
|
|
|
|
int x0, x1, y0, y1;
|
|
|
|
|
2010-12-12 17:30:33 +03:00
|
|
|
*expansion_toggle = false;
|
2010-10-05 23:14:46 +04:00
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
if (node->box.y > y) return NULL;
|
|
|
|
if ((node->box.x - NODE_INSTEP < x) && (node->box.y < y) &&
|
|
|
|
(node->box.x + node->box.width >= x) &&
|
|
|
|
(node->box.y + node->box.height >= y)) {
|
|
|
|
if (node->expanded) {
|
|
|
|
for (element = &node->data; element != NULL;
|
|
|
|
element = element->next) {
|
|
|
|
x0 = element->box.x;
|
|
|
|
y0 = element->box.y;
|
|
|
|
x1 = element->box.x +
|
|
|
|
element->box.width;
|
|
|
|
y1 = element->box.y +
|
|
|
|
element->box.height;
|
|
|
|
if ((x0 < x) && (y0 < y) && (x1 >= x)
|
|
|
|
&& (y1 >= y))
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
x0 = node->data.box.x;
|
|
|
|
y0 = node->data.box.y;
|
|
|
|
x1 = node->data.box.x + node->data.box.width;
|
|
|
|
y1 = node->data.box.y + node->data.box.height;
|
|
|
|
if ((x0 < x) && (y0 < y) && (x1 >= x) &&
|
|
|
|
(y1>= y))
|
|
|
|
return &node->data;
|
|
|
|
}
|
|
|
|
if (((node->child != NULL) ||
|
|
|
|
(node->data.next != NULL)) &&
|
|
|
|
(node->data.box.x - NODE_INSTEP + 4 < x)
|
|
|
|
&& (node->data.box.y + 4 < y) &&
|
|
|
|
(node->data.box.x > x) &&
|
2010-12-12 15:45:12 +03:00
|
|
|
(node->data.box.y + TREE_LINE_HEIGHT > y)) {
|
2010-12-12 17:30:33 +03:00
|
|
|
/* Node either has node children, or node
|
|
|
|
* has more than one element.
|
|
|
|
* Coordinate is over node expansion toggle area
|
|
|
|
*/
|
|
|
|
*expansion_toggle = true;
|
2010-10-05 23:14:46 +04:00
|
|
|
return &node->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
element = tree_get_node_element_at(node->child, x, y,
|
2010-12-12 17:30:33 +03:00
|
|
|
expansion_toggle);
|
2010-10-05 23:14:46 +04:00
|
|
|
if ((node->child != NULL) && (node->expanded) &&
|
|
|
|
(element != NULL))
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds a node at a specific location.
|
|
|
|
*
|
|
|
|
* \param root the root node to check from
|
|
|
|
* \param x the x co-ordinate
|
|
|
|
* \param y the y co-ordinate
|
2010-12-12 17:30:33 +03:00
|
|
|
* \param expansion_toggle whether the coordinate was in an expansion toggle
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the node at the specified position, or NULL for none
|
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static struct node *tree_get_node_at(struct node *root, int x, int y,
|
2010-12-12 17:30:33 +03:00
|
|
|
bool *expansion_toggle)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
struct node_element *result;
|
|
|
|
|
2010-12-12 17:30:33 +03:00
|
|
|
if ((result = tree_get_node_element_at(root, x, y, expansion_toggle)))
|
2010-10-05 23:14:46 +04:00
|
|
|
return result->parent;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets link characteristics to insert a node at a specified position.
|
|
|
|
*
|
|
|
|
* \param tree the tree to find link information for
|
|
|
|
* \param x the x co-ordinate
|
|
|
|
* \param y the y co-ordinate
|
|
|
|
* \param before set to whether the node should be linked before on exit
|
2011-01-20 17:05:13 +03:00
|
|
|
* \return the node to link with
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
struct node *tree_get_link_details(struct tree *tree, int x, int y,
|
|
|
|
bool *before)
|
|
|
|
{
|
|
|
|
struct node *node = NULL;
|
2010-12-12 17:30:33 +03:00
|
|
|
bool expansion_toggle;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(tree->root != NULL);
|
|
|
|
|
|
|
|
*before = false;
|
|
|
|
if (tree->root->child != NULL)
|
2010-12-12 17:30:33 +03:00
|
|
|
node = tree_get_node_at(tree->root->child, x, y,
|
|
|
|
&expansion_toggle);
|
|
|
|
if ((node == NULL) || (expansion_toggle))
|
2010-10-05 23:14:46 +04:00
|
|
|
return tree->root;
|
|
|
|
|
|
|
|
if (y < (node->box.y + (node->box.height / 2))) {
|
|
|
|
*before = true;
|
|
|
|
} else if ((node->folder) && (node->expanded) &&
|
|
|
|
(node->child != NULL)) {
|
|
|
|
node = node->child;
|
|
|
|
*before = true;
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Launches all the selected nodes of the tree
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree for which all nodes will be launched
|
|
|
|
* \param node the node which will be checked together with its children
|
2011-07-02 15:41:06 +04:00
|
|
|
* \param tabs launch node in a new tab instead of a new window
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
2011-07-02 15:41:06 +04:00
|
|
|
static void tree_launch_selected_internal(struct tree *tree, struct node *node,
|
|
|
|
bool tabs)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
struct node_msg_data msg_data;
|
|
|
|
|
2011-07-02 15:41:06 +04:00
|
|
|
msg_data.data.bw = NULL;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
if (node->selected && node->user_callback != NULL) {
|
|
|
|
msg_data.msg = NODE_LAUNCH;
|
2011-07-02 15:41:06 +04:00
|
|
|
if (tabs == true) {
|
|
|
|
msg_data.flag = TREE_ELEMENT_LAUNCH_IN_TABS;
|
|
|
|
} else {
|
|
|
|
msg_data.flag = TREE_ELEMENT_TITLE;
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
msg_data.node = node;
|
|
|
|
node->user_callback(node->callback_data, &msg_data);
|
|
|
|
}
|
|
|
|
if (node->child != NULL)
|
2011-07-02 15:41:06 +04:00
|
|
|
tree_launch_selected_internal(tree, node->child, tabs);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Launches all the selected nodes of the tree
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree for which all nodes will be launched
|
2011-07-02 15:41:06 +04:00
|
|
|
* \param tabs launch nodes in new tabs instead of new windows
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
2011-07-02 15:41:06 +04:00
|
|
|
void tree_launch_selected(struct tree *tree, bool tabs)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
if (tree->root->child != NULL)
|
2011-07-02 15:41:06 +04:00
|
|
|
tree_launch_selected_internal(tree, tree->root->child, tabs);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-11 17:09:12 +04:00
|
|
|
/**
|
|
|
|
* Updates the node at position x,y to a selected state.
|
|
|
|
* The required areas of the tree are redrawn.
|
|
|
|
*
|
|
|
|
* \param tree the tree to update nodes for, may be NULL
|
|
|
|
* \param x x position in tree
|
|
|
|
* \param y y position in tree
|
|
|
|
* \param selected the selection state to set
|
|
|
|
*/
|
|
|
|
void tree_set_node_selected_at(struct tree *tree, int x, int y, bool selected)
|
|
|
|
{
|
|
|
|
bool expansion_toggle;
|
|
|
|
struct node *node;
|
|
|
|
|
|
|
|
node = tree_get_node_at(tree->root, x, y, &expansion_toggle);
|
|
|
|
|
|
|
|
if ((node == NULL) || (expansion_toggle == true))
|
|
|
|
return;
|
|
|
|
|
|
|
|
tree_set_node_selected(tree, node, false, selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Handles a mouse action for a tree
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree to handle a click for
|
|
|
|
* \param mouse the mouse state
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param x X coordinate of mouse action
|
|
|
|
* \param y Y coordinate of mouse action
|
|
|
|
* \return whether the click was handled
|
|
|
|
*/
|
|
|
|
bool tree_mouse_action(struct tree *tree, browser_mouse_state mouse, int x,
|
|
|
|
int y)
|
|
|
|
{
|
2010-12-12 17:30:33 +03:00
|
|
|
bool expansion_toggle;
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *node;
|
|
|
|
struct node *last;
|
|
|
|
struct node_element *element;
|
|
|
|
struct node_msg_data msg_data;
|
|
|
|
|
2010-12-16 02:55:39 +03:00
|
|
|
bool double_click_1 = mouse & BROWSER_MOUSE_DOUBLE_CLICK &&
|
|
|
|
mouse & BROWSER_MOUSE_CLICK_1;
|
|
|
|
bool double_click_2 = mouse & BROWSER_MOUSE_DOUBLE_CLICK &&
|
|
|
|
mouse & BROWSER_MOUSE_CLICK_2;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
assert(tree != NULL);
|
|
|
|
assert(tree->root != NULL);
|
|
|
|
|
2013-07-26 17:48:26 +04:00
|
|
|
if (treeview_test_mouse_action(tree, mouse, x, y)) {
|
|
|
|
return true;
|
2013-05-31 16:26:14 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->root->child == NULL)
|
|
|
|
return true;
|
|
|
|
|
2010-12-12 17:30:33 +03:00
|
|
|
element = tree_get_node_element_at(tree->root->child, x, y,
|
|
|
|
&expansion_toggle);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/* pass in-textarea mouse action and drags which started in it
|
|
|
|
to the textarea */
|
|
|
|
if (tree->editing != NULL) {
|
|
|
|
int x0, x1, y0, y1;
|
|
|
|
x0 = tree->editing->box.x;
|
|
|
|
if (tree->editing->type == NODE_ELEMENT_TEXT_PLUS_ICON)
|
|
|
|
x0 += NODE_INSTEP;
|
|
|
|
x1 = tree->editing->box.x + tree->editing->box.width;
|
|
|
|
y0 = tree->editing->box.y;
|
2013-01-29 21:34:08 +04:00
|
|
|
y1 = tree->editing->box.y + tree->ta_height;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2013-01-29 21:34:08 +04:00
|
|
|
if (tree->drag == TREE_TEXTAREA_DRAG &&
|
2010-12-16 00:58:01 +03:00
|
|
|
(mouse & (BROWSER_MOUSE_HOLDING_1 |
|
|
|
|
BROWSER_MOUSE_HOLDING_2))) {
|
|
|
|
/* Track the drag path */
|
2010-10-05 23:14:46 +04:00
|
|
|
textarea_mouse_action(tree->textarea, mouse,
|
|
|
|
x - x0, y - y0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((x >= x0) && (x < x1) && (y >= y0) && (y < y1)) {
|
|
|
|
textarea_mouse_action(tree->textarea, mouse,
|
|
|
|
x - x0, y - y0);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-16 00:58:01 +03:00
|
|
|
/* we are not interested in the drag path, return */
|
|
|
|
if (mouse & (BROWSER_MOUSE_HOLDING_1 | BROWSER_MOUSE_HOLDING_2))
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
/* cancel edit */
|
|
|
|
if (tree->editing != NULL)
|
2011-01-20 17:05:13 +03:00
|
|
|
tree_stop_edit(tree, false);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/* no item either means cancel selection on (select) click or a drag */
|
|
|
|
if (element == NULL) {
|
|
|
|
if (tree->flags & TREE_SINGLE_SELECT) {
|
|
|
|
tree_set_node_selected(tree, tree->root->child, true,
|
|
|
|
false);
|
2011-01-20 17:05:13 +03:00
|
|
|
return true;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
if (mouse & (BROWSER_MOUSE_CLICK_1 | BROWSER_MOUSE_DRAG_1))
|
|
|
|
tree_set_node_selected(tree, tree->root->child, true,
|
|
|
|
false);
|
|
|
|
if (mouse & (BROWSER_MOUSE_DRAG_1 | BROWSER_MOUSE_DRAG_2)) {
|
|
|
|
|
|
|
|
/** @todo the tree window has to scroll the tree when
|
|
|
|
* mouse reaches border while dragging this isn't
|
|
|
|
* solved for the browser window too.
|
|
|
|
*/
|
|
|
|
tree->drag = TREE_SELECT_DRAG;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = element->parent;
|
|
|
|
|
2010-12-12 17:30:33 +03:00
|
|
|
/* A click on expansion toggle or double click on folder toggles node
|
|
|
|
* expansion */
|
|
|
|
if (((expansion_toggle) && (mouse & (BROWSER_MOUSE_CLICK_1 |
|
2010-12-16 02:55:39 +03:00
|
|
|
BROWSER_MOUSE_CLICK_2))) ||
|
|
|
|
(((!expansion_toggle) && (node->child != NULL)) &&
|
|
|
|
(double_click_1 || double_click_2))) {
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/* clear any selection */
|
|
|
|
tree_set_node_selected(tree, tree->root->child, true, false);
|
|
|
|
|
|
|
|
/* expand / contract node and redraw */
|
|
|
|
tree_set_node_expanded(tree, node, !node->expanded,
|
|
|
|
false, false);
|
|
|
|
|
|
|
|
/* find the last child node if expanded */
|
|
|
|
last = node;
|
|
|
|
if ((last->child != NULL) && (last->expanded)) {
|
|
|
|
last = last->child;
|
|
|
|
while ((last->next != NULL) ||
|
|
|
|
((last->child != NULL) &&
|
|
|
|
(last->expanded))) {
|
|
|
|
if (last->next != NULL)
|
|
|
|
last = last->next;
|
|
|
|
else
|
|
|
|
last = last->child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* scroll to the bottom element then back to the top */
|
|
|
|
element = &last->data;
|
|
|
|
if (last->expanded)
|
|
|
|
for (; element->next != NULL; element = element->next);
|
|
|
|
tree->callbacks->scroll_visible(element->box.y,
|
|
|
|
element->box.height,
|
|
|
|
tree->client_data);
|
|
|
|
tree->callbacks->scroll_visible(node->data.box.y,
|
|
|
|
node->data.box.height,
|
|
|
|
tree->client_data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-12 17:30:33 +03:00
|
|
|
/* no use for any other expansion toggle click */
|
|
|
|
if (expansion_toggle)
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
/* single/double ctrl+click or alt+click starts editing */
|
|
|
|
if ((element->editable) && (!tree->editing) &&
|
|
|
|
((element->type == NODE_ELEMENT_TEXT) ||
|
|
|
|
(element->type == NODE_ELEMENT_TEXT_PLUS_ICON)) &&
|
2010-12-16 02:55:39 +03:00
|
|
|
(mouse & BROWSER_MOUSE_CLICK_1 || double_click_1) &&
|
2010-10-05 23:14:46 +04:00
|
|
|
(mouse & BROWSER_MOUSE_MOD_2 ||
|
|
|
|
mouse & BROWSER_MOUSE_MOD_3)) {
|
|
|
|
tree_set_node_selected(tree, tree->root->child, true, false);
|
|
|
|
tree_start_edit(tree, element);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* double click launches the leaf */
|
2010-12-16 02:55:39 +03:00
|
|
|
if (double_click_1 || double_click_2) {
|
2010-10-05 23:14:46 +04:00
|
|
|
if (node->user_callback == NULL)
|
|
|
|
return false;
|
|
|
|
msg_data.msg = NODE_LAUNCH;
|
|
|
|
msg_data.flag = TREE_ELEMENT_TITLE;
|
|
|
|
msg_data.node = node;
|
|
|
|
if (node->user_callback(node->callback_data, &msg_data) !=
|
|
|
|
NODE_CALLBACK_HANDLED)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* single click (select) cancels current selection and selects item */
|
|
|
|
if (mouse & BROWSER_MOUSE_CLICK_1 || (mouse & BROWSER_MOUSE_CLICK_2 &&
|
|
|
|
tree->flags & TREE_SINGLE_SELECT)) {
|
|
|
|
if (tree->flags & TREE_NO_SELECT)
|
|
|
|
return true;
|
|
|
|
if (!node->selected) {
|
|
|
|
tree_set_node_selected(tree, tree->root->child, true,
|
|
|
|
false);
|
|
|
|
node->selected = true;
|
2011-06-05 00:46:08 +04:00
|
|
|
tree_handle_node_element_changed(tree, &node->data, false);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* single click (adjust) toggles item selection */
|
|
|
|
if (mouse & BROWSER_MOUSE_CLICK_2) {
|
|
|
|
if (tree->flags & TREE_NO_SELECT)
|
|
|
|
return true;
|
|
|
|
node->selected = !node->selected;
|
2011-06-05 00:46:08 +04:00
|
|
|
tree_handle_node_element_changed(tree, &node->data, false);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* drag starts a drag operation */
|
|
|
|
if ((!tree->editing) && (mouse & (BROWSER_MOUSE_DRAG_1 |
|
|
|
|
BROWSER_MOUSE_DRAG_2))) {
|
|
|
|
if (tree->flags & TREE_NO_DRAGS)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!node->selected) {
|
|
|
|
tree_set_node_selected(tree, tree->root->child, true,
|
|
|
|
false);
|
|
|
|
node->selected = true;
|
2011-06-05 00:46:08 +04:00
|
|
|
tree_handle_node_element_changed(tree, &node->data, false);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
|
2010-10-30 13:23:03 +04:00
|
|
|
if (tree->flags & TREE_MOVABLE)
|
|
|
|
tree->drag = TREE_MOVE_DRAG;
|
2010-10-30 14:43:14 +04:00
|
|
|
else tree->drag = TREE_UNKNOWN_DRAG;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the selected state for a region of nodes.
|
|
|
|
*
|
|
|
|
* \param tree the tree to update
|
|
|
|
* \param node the node to update children and siblings of
|
|
|
|
* \param y the minimum y of the selection rectangle
|
|
|
|
* \param height the height of the selection rectangle
|
|
|
|
* \param invert whether to invert the selected state
|
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static void tree_handle_selection_area_node(struct tree *tree,
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *node, int y, int height, bool invert)
|
|
|
|
{
|
|
|
|
struct node_element *element;
|
|
|
|
struct node *update;
|
|
|
|
int y_max;
|
|
|
|
int y0, y1;
|
|
|
|
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
y_max = y + height;
|
|
|
|
|
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
if (node->box.y > y_max) return;
|
|
|
|
y0 = node->box.y;
|
|
|
|
y1 = node->box.y + node->box.height;
|
|
|
|
if ((y0 < y_max) && (y1 >= y)) {
|
|
|
|
update = NULL;
|
|
|
|
if (node->expanded) {
|
|
|
|
for (element = &node->data; element != NULL;
|
|
|
|
element = element->next) {
|
|
|
|
y0 = element->box.y;
|
|
|
|
y1 = element->box.y +
|
|
|
|
element->box.height;
|
|
|
|
if ((y0 < y_max) && (y1 >= y)) {
|
|
|
|
update = element->parent;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
y0 = node->data.box.y;
|
|
|
|
y1 = node->data.box.y + node->data.box.height;
|
|
|
|
if ((y0 < y_max) && (y1 >= y))
|
|
|
|
update = node->data.parent;
|
|
|
|
}
|
|
|
|
if ((update) && (node != tree->root)) {
|
|
|
|
if (invert) {
|
|
|
|
node->selected = !node->selected;
|
|
|
|
tree_handle_node_element_changed(tree,
|
2011-06-05 00:46:08 +04:00
|
|
|
&node->data, false);
|
2010-10-05 23:14:46 +04:00
|
|
|
} else if (!node->selected) {
|
|
|
|
node->selected = true;
|
|
|
|
tree_handle_node_element_changed(tree,
|
2011-06-05 00:46:08 +04:00
|
|
|
&node->data, false);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((node->child != NULL) && (node->expanded))
|
|
|
|
tree_handle_selection_area_node(tree, node->child, y,
|
|
|
|
height, invert);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the selected state for a region of nodes.
|
|
|
|
*
|
|
|
|
* \param tree the tree to update
|
|
|
|
* \param y the minimum y of the selection rectangle
|
|
|
|
* \param height the height of the selection rectangle
|
|
|
|
* \param invert whether to invert the selected state
|
|
|
|
*/
|
|
|
|
static void tree_handle_selection_area(struct tree *tree, int y, int height,
|
|
|
|
bool invert)
|
|
|
|
{
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(tree->root != NULL);
|
|
|
|
|
|
|
|
if (tree->root->child == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (height < 0) {
|
|
|
|
y += height;
|
|
|
|
height = -height;
|
|
|
|
}
|
|
|
|
tree_handle_selection_area_node(tree, tree->root->child, y, height,
|
|
|
|
invert);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears the processing flag.
|
|
|
|
*
|
|
|
|
* \param node the node to process siblings and children of
|
|
|
|
*/
|
|
|
|
static void tree_clear_processing(struct node *node)
|
|
|
|
{
|
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
node->processing = false;
|
|
|
|
if (node->child != NULL)
|
|
|
|
tree_clear_processing(node->child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the processing flag to the selection state.
|
|
|
|
*
|
|
|
|
* \param node the node to process siblings and children of
|
|
|
|
*/
|
|
|
|
static void tree_selected_to_processing(struct node *node)
|
|
|
|
{
|
|
|
|
for (; node != NULL; node = node->next) {
|
|
|
|
node->processing = node->selected;
|
|
|
|
if ((node->child != NULL) && (node->expanded))
|
|
|
|
tree_selected_to_processing(node->child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Moves the first node in a tree with the processing flag set.
|
|
|
|
*
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param tree the tree in which the move takes place
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param node the node to move siblings/children of
|
|
|
|
* \param link the node to link before/as a child (folders) or before/after
|
|
|
|
* (link)
|
|
|
|
* \param before whether to link siblings before or after the supplied node
|
2011-01-20 17:05:13 +03:00
|
|
|
* \param first whether to always link after the supplied node (ie not
|
2010-10-05 23:14:46 +04:00
|
|
|
* inside of folders)
|
2011-01-20 17:05:13 +03:00
|
|
|
* \return the node moved
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static struct node *tree_move_processing_node(struct tree *tree,
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *node, struct node *link, bool before, bool first)
|
|
|
|
{
|
|
|
|
struct node *result;
|
|
|
|
|
|
|
|
bool folder = link->folder;
|
|
|
|
for (; node != NULL; node = node->next) {
|
2011-01-20 17:05:13 +03:00
|
|
|
if (node->processing) {
|
|
|
|
node->processing = false;
|
|
|
|
tree_delink_node(tree, node);
|
|
|
|
if (!first)
|
|
|
|
link->folder = false;
|
|
|
|
tree_link_node(tree, link, node, before);
|
|
|
|
if (!first)
|
|
|
|
link->folder = folder;
|
|
|
|
return node;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
if (node->child != NULL) {
|
2011-01-20 17:05:13 +03:00
|
|
|
result = tree_move_processing_node(tree, node->child,
|
2010-10-05 23:14:46 +04:00
|
|
|
link, before, first);
|
|
|
|
if (result != NULL)
|
2011-01-20 17:05:13 +03:00
|
|
|
return result;
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Moves nodes within a tree.
|
|
|
|
*
|
|
|
|
* \param tree the tree to process
|
|
|
|
* \param destination the node to link before/as a child (folders)
|
2011-01-20 17:05:13 +03:00
|
|
|
* or before/after (link)
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param before whether to link siblings before or after the supplied
|
|
|
|
* node
|
|
|
|
*/
|
2010-10-10 13:10:44 +04:00
|
|
|
static void tree_move_selected_nodes(struct tree *tree,
|
2010-10-05 23:14:46 +04:00
|
|
|
struct node *destination, bool before)
|
|
|
|
{
|
|
|
|
struct node *link;
|
|
|
|
struct node *test;
|
|
|
|
bool error;
|
|
|
|
|
|
|
|
tree_clear_processing(tree->root);
|
|
|
|
tree_selected_to_processing(tree->root);
|
|
|
|
|
|
|
|
/* the destination node cannot be a child of any node with
|
|
|
|
the processing flag set */
|
|
|
|
error = destination->processing;
|
|
|
|
for (test = destination; test != NULL; test = test->parent)
|
|
|
|
error |= test->processing;
|
|
|
|
if (error) {
|
|
|
|
tree_clear_processing(tree->root);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((destination->folder) && (!destination->expanded) && (!before)) {
|
|
|
|
tree_set_node_expanded(tree, destination, true, false, false);
|
|
|
|
}
|
|
|
|
link = tree_move_processing_node(tree, tree->root, destination, before,
|
|
|
|
true);
|
|
|
|
while (link != NULL)
|
|
|
|
link = tree_move_processing_node(tree, tree->root, link, false,
|
|
|
|
false);
|
|
|
|
|
|
|
|
tree_clear_processing(tree->root);
|
|
|
|
tree_recalculate_node_positions(tree, tree->root);
|
|
|
|
if (tree->redraw)
|
|
|
|
tree->callbacks->redraw_request(0, 0, tree->width, tree->height,
|
|
|
|
tree->client_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the end of a drag operation
|
|
|
|
*
|
|
|
|
* \param tree the tree on which the drag was performed
|
|
|
|
* \param mouse mouse state during drag end
|
|
|
|
* \param x0 x coordinate of drag start
|
|
|
|
* \param y0 y coordinate of drag start
|
|
|
|
* \param x1 x coordinate of drag end
|
|
|
|
* \param y1 y coordinate of drag end
|
|
|
|
*/
|
|
|
|
void tree_drag_end(struct tree *tree, browser_mouse_state mouse, int x0, int y0,
|
|
|
|
int x1, int y1)
|
|
|
|
{
|
|
|
|
|
|
|
|
bool before;
|
|
|
|
struct node *node;
|
|
|
|
int x, y;
|
|
|
|
|
2013-06-15 18:50:41 +04:00
|
|
|
if (tree->flags & TREE_MOVABLE) {
|
2013-07-01 17:07:25 +04:00
|
|
|
if (treeview_test_mouse_action(tree, BROWSER_MOUSE_HOVER,
|
|
|
|
x1, y1)) {
|
|
|
|
return;
|
|
|
|
}
|
2013-06-15 18:50:41 +04:00
|
|
|
}
|
|
|
|
|
2013-01-29 21:34:08 +04:00
|
|
|
switch (tree->drag) {
|
|
|
|
case TREE_NO_DRAG:
|
|
|
|
case TREE_UNKNOWN_DRAG:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TREE_TEXTAREA_DRAG:
|
2010-10-05 23:14:46 +04:00
|
|
|
x = tree->editing->box.x;
|
|
|
|
y = tree->editing->box.y;
|
|
|
|
if (tree->editing->type == NODE_ELEMENT_TEXT_PLUS_ICON)
|
|
|
|
x += NODE_INSTEP;
|
2013-01-29 21:34:08 +04:00
|
|
|
textarea_mouse_action(tree->textarea, BROWSER_MOUSE_HOVER,
|
|
|
|
x1 - x, y1 - y);
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
2013-01-29 21:34:08 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case TREE_SELECT_DRAG:
|
|
|
|
tree_handle_selection_area(tree, y0, y1 - y0,
|
|
|
|
(mouse | BROWSER_MOUSE_HOLDING_2));
|
|
|
|
break;
|
2013-01-29 21:34:08 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case TREE_MOVE_DRAG:
|
|
|
|
if (!(tree->flags & TREE_MOVABLE))
|
|
|
|
return;
|
|
|
|
node = tree_get_link_details(tree, x1, y1, &before);
|
|
|
|
tree_move_selected_nodes(tree, node, before);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tree->drag = TREE_NO_DRAG;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key press handling for a tree.
|
|
|
|
*
|
|
|
|
* \param tree The tree which got the keypress
|
|
|
|
* \param key The ucs4 character codepoint
|
2011-01-20 17:05:13 +03:00
|
|
|
* \return true if the keypress is dealt with, false otherwise.
|
2010-10-05 23:14:46 +04:00
|
|
|
*/
|
|
|
|
bool tree_keypress(struct tree *tree, uint32_t key)
|
|
|
|
{
|
2013-07-26 17:48:26 +04:00
|
|
|
if (treeview_test_keypress(tree, key)) {
|
|
|
|
return true;
|
2013-07-01 14:49:14 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->editing != NULL)
|
|
|
|
switch (key) {
|
|
|
|
case KEY_ESCAPE:
|
|
|
|
tree_stop_edit(tree, false);
|
|
|
|
return true;
|
|
|
|
case KEY_NL:
|
2010-10-17 17:00:51 +04:00
|
|
|
case KEY_CR:
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_stop_edit(tree, true);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return textarea_keypress(tree->textarea, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Alphabetical comparison function for nodes
|
|
|
|
*
|
|
|
|
* \param n1 first node to compare
|
|
|
|
* \param n2 first node to compare
|
|
|
|
* \return 0 if equal, greater then zero if n1 > n2,
|
|
|
|
* less then zero if n2 < n1
|
|
|
|
*/
|
|
|
|
int tree_alphabetical_sort(struct node *n1, struct node *n2)
|
|
|
|
{
|
|
|
|
return strcmp(n1->data.text, n2->data.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraw requests from the textarea are piped through this because we have to
|
|
|
|
* check the redraw flag of the tree before requesting a redraw and change the
|
|
|
|
* position to tree origin relative.
|
|
|
|
*/
|
2013-01-29 21:34:08 +04:00
|
|
|
|
|
|
|
static void tree_textarea_callback(void *data, struct textarea_msg *msg)
|
2010-10-05 23:14:46 +04:00
|
|
|
{
|
|
|
|
struct tree *tree = data;
|
2013-01-29 21:34:08 +04:00
|
|
|
int x, y;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2013-01-29 21:34:08 +04:00
|
|
|
switch (msg->type) {
|
|
|
|
case TEXTAREA_MSG_DRAG_REPORT:
|
|
|
|
if (msg->data.drag == TEXTAREA_DRAG_NONE) {
|
|
|
|
/* Textarea drag finished */
|
|
|
|
tree->drag = TREE_NO_DRAG;
|
|
|
|
} else {
|
|
|
|
/* Textarea drag started */
|
|
|
|
tree->drag = TREE_TEXTAREA_DRAG;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TEXTAREA_MSG_REDRAW_REQUEST:
|
|
|
|
x = msg->data.redraw.x0 + tree->editing->box.x;
|
|
|
|
y = msg->data.redraw.y0 + tree->editing->box.y;
|
|
|
|
|
|
|
|
if (tree->editing->type == NODE_ELEMENT_TEXT_PLUS_ICON)
|
|
|
|
x += NODE_INSTEP;
|
|
|
|
|
|
|
|
/* Redraw the textarea */
|
|
|
|
if (tree->redraw)
|
|
|
|
tree->callbacks->redraw_request(x, y,
|
|
|
|
msg->data.redraw.x1 -
|
|
|
|
msg->data.redraw.x0,
|
|
|
|
msg->data.redraw.y1 -
|
|
|
|
msg->data.redraw.y0,
|
|
|
|
tree->client_data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts editing a node_element
|
|
|
|
*
|
|
|
|
* \param tree The tree to which element belongs
|
|
|
|
* \param element The element to start being edited
|
|
|
|
*/
|
|
|
|
void tree_start_edit(struct tree *tree, struct node_element *element)
|
|
|
|
{
|
|
|
|
struct node *parent;
|
|
|
|
int width, height;
|
2013-01-13 00:46:01 +04:00
|
|
|
textarea_setup ta_setup;
|
2013-02-03 02:58:35 +04:00
|
|
|
textarea_flags ta_flags;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
assert(tree != NULL);
|
|
|
|
assert(element != NULL);
|
|
|
|
|
|
|
|
if (tree->editing != NULL)
|
|
|
|
tree_stop_edit(tree, true);
|
|
|
|
|
|
|
|
parent = element->parent;
|
|
|
|
if (&parent->data == element)
|
|
|
|
parent = parent->parent;
|
|
|
|
for (; parent != NULL; parent = parent->parent) {
|
|
|
|
if (!parent->expanded) {
|
|
|
|
tree_set_node_expanded(tree, parent, true,
|
|
|
|
false, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tree->editing = element;
|
|
|
|
tree->callbacks->get_window_dimensions(&width, NULL, tree->client_data);
|
|
|
|
width -= element->box.x;
|
|
|
|
height = element->box.height;
|
|
|
|
if (element->type == NODE_ELEMENT_TEXT_PLUS_ICON)
|
|
|
|
width -= NODE_INSTEP;
|
|
|
|
|
2013-01-29 21:34:08 +04:00
|
|
|
tree->ta_height = height;
|
|
|
|
|
2013-02-03 02:58:35 +04:00
|
|
|
ta_flags = TEXTAREA_INTERNAL_CARET;
|
|
|
|
|
2013-01-13 00:46:01 +04:00
|
|
|
ta_setup.width = width;
|
2013-01-29 21:34:08 +04:00
|
|
|
ta_setup.height = tree->ta_height;
|
2013-01-13 00:46:01 +04:00
|
|
|
ta_setup.pad_top = 0;
|
|
|
|
ta_setup.pad_right = 4;
|
|
|
|
ta_setup.pad_bottom = 0;
|
|
|
|
ta_setup.pad_left = 4;
|
|
|
|
ta_setup.border_width = 1;
|
|
|
|
ta_setup.border_col = 0x000000;
|
|
|
|
ta_setup.selected_text = 0xffffff;
|
|
|
|
ta_setup.selected_bg = 0x000000;
|
|
|
|
ta_setup.text = plot_fstyle;
|
|
|
|
ta_setup.text.foreground = 0x000000;
|
|
|
|
ta_setup.text.background = 0xffffff;
|
|
|
|
|
2013-02-03 02:58:35 +04:00
|
|
|
tree->textarea = textarea_create(ta_flags, &ta_setup,
|
2013-01-29 21:34:08 +04:00
|
|
|
tree_textarea_callback, tree);
|
2010-10-05 23:14:46 +04:00
|
|
|
if (tree->textarea == NULL) {
|
|
|
|
tree_stop_edit(tree, false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
textarea_set_text(tree->textarea, element->text);
|
|
|
|
|
2011-06-05 00:46:08 +04:00
|
|
|
tree_handle_node_element_changed(tree, element, true);
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_recalculate_size(tree);
|
|
|
|
tree->callbacks->scroll_visible(element->box.y, element->box.height,
|
|
|
|
tree->client_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for fetchcache(). Should be removed once bitmaps get loaded directly
|
|
|
|
* from disc
|
|
|
|
*/
|
|
|
|
static nserror tree_icon_callback(hlcache_handle *handle,
|
|
|
|
const hlcache_event *event, void *pw)
|
|
|
|
{
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tree utility function. Placed here so that this code doesn't have to be
|
|
|
|
* copied by each user.
|
|
|
|
*
|
|
|
|
* \param name the name of the loaded icon, if it's not a full path the icon is
|
2011-01-20 17:05:13 +03:00
|
|
|
* looked for in the directory specified by tree_icons_dir
|
2010-10-05 23:14:46 +04:00
|
|
|
* \return the icon in form of a content or NULL on failure
|
|
|
|
*/
|
|
|
|
hlcache_handle *tree_load_icon(const char *name)
|
|
|
|
{
|
|
|
|
char *url = NULL;
|
|
|
|
const char *icon_url = NULL;
|
|
|
|
int len;
|
|
|
|
hlcache_handle *c;
|
|
|
|
nserror err;
|
2011-10-03 19:56:47 +04:00
|
|
|
nsurl *icon_nsurl;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/** @todo something like bitmap_from_disc is needed here */
|
|
|
|
|
|
|
|
if (!strncmp(name, "file://", 7)) {
|
|
|
|
icon_url = name;
|
|
|
|
} else {
|
|
|
|
char *native_path;
|
|
|
|
|
2011-01-20 17:05:13 +03:00
|
|
|
if (tree_icons_dir == NULL)
|
2010-10-05 23:14:46 +04:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* path + separator + leafname + '\0' */
|
2011-01-20 17:05:13 +03:00
|
|
|
len = strlen(tree_icons_dir) + 1 + strlen(name) + 1;
|
2010-10-05 23:14:46 +04:00
|
|
|
native_path = malloc(len);
|
|
|
|
if (native_path == NULL) {
|
|
|
|
LOG(("malloc failed"));
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Build native path */
|
2011-01-20 17:05:13 +03:00
|
|
|
memcpy(native_path, tree_icons_dir,
|
|
|
|
strlen(tree_icons_dir) + 1);
|
2010-10-05 23:14:46 +04:00
|
|
|
path_add_part(native_path, len, name);
|
|
|
|
|
|
|
|
/* Convert native path to URL */
|
|
|
|
url = path_to_url(native_path);
|
|
|
|
|
|
|
|
free(native_path);
|
|
|
|
icon_url = url;
|
|
|
|
}
|
|
|
|
|
2011-10-03 19:56:47 +04:00
|
|
|
err = nsurl_create(icon_url, &icon_nsurl);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
if (url != NULL)
|
|
|
|
free(url);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/* Fetch the icon */
|
2011-10-03 19:56:47 +04:00
|
|
|
err = hlcache_handle_retrieve(icon_nsurl, 0, 0, 0,
|
2011-05-07 00:40:09 +04:00
|
|
|
tree_icon_callback, 0, 0,
|
|
|
|
CONTENT_IMAGE, &c);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2011-10-03 19:56:47 +04:00
|
|
|
nsurl_unref(icon_nsurl);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/* If we built the URL here, free it */
|
|
|
|
if (url != NULL)
|
|
|
|
free(url);
|
|
|
|
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|