2004-06-30 21:44:11 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Hotlist (implementation).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
2004-07-03 20:28:09 +04:00
|
|
|
#include <time.h>
|
2004-06-30 21:44:11 +04:00
|
|
|
#include "oslib/colourtrans.h"
|
2004-07-04 18:59:29 +04:00
|
|
|
#include "oslib/osfile.h"
|
2004-06-30 21:44:11 +04:00
|
|
|
#include "oslib/wimp.h"
|
|
|
|
#include "oslib/wimpspriteop.h"
|
2004-07-02 02:56:26 +04:00
|
|
|
#include "netsurf/content/content.h"
|
2004-06-30 21:44:11 +04:00
|
|
|
#include "netsurf/riscos/gui.h"
|
|
|
|
#include "netsurf/riscos/wimp.h"
|
|
|
|
#include "netsurf/utils/log.h"
|
2004-07-03 21:30:28 +04:00
|
|
|
#include "netsurf/utils/messages.h"
|
2004-06-30 21:44:11 +04:00
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
|
|
|
#define HOTLIST_EXPAND 0
|
|
|
|
#define HOTLIST_COLLAPSE 1
|
|
|
|
#define HOTLIST_ENTRY 2
|
|
|
|
#define HOTLIST_LINE 3
|
|
|
|
#define HOTLIST_TLINE 4
|
|
|
|
#define HOTLIST_BLINE 5
|
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
#define HOTLIST_TEXT_BUFFER 256
|
2004-07-03 20:28:09 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
#define HOTLIST_LEAF_INSET 32
|
|
|
|
#define HOTLIST_ICON_WIDTH 36
|
|
|
|
#define HOTLIST_LINE_HEIGHT 44
|
|
|
|
#define HOTLIST_TEXT_PADDING 16
|
|
|
|
|
|
|
|
#define HOTLIST_LOAD_BUFFER 1024
|
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
struct hotlist_entry {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** The next hotlist entry at this level, or NULL for no more
|
|
|
|
*/
|
|
|
|
struct hotlist_entry *next_entry;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** The child hotlist entry (NULL for no children).
|
|
|
|
The children value must be set for this value to take effect.
|
|
|
|
*/
|
|
|
|
struct hotlist_entry *child_entry;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** The number of children (-1 for non-folders, >=0 for folders)
|
|
|
|
*/
|
|
|
|
int children;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** The title of the hotlist entry/folder
|
|
|
|
*/
|
|
|
|
char *title;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** The URL of the hotlist entry (NULL for folders)
|
|
|
|
*/
|
|
|
|
char *url;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** Whether this entry is expanded
|
|
|
|
*/
|
|
|
|
bool expanded;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** Whether this entry is selected
|
|
|
|
*/
|
|
|
|
bool selected;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/** The content filetype (not for folders)
|
|
|
|
*/
|
|
|
|
int filetype;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/** The number of visits
|
|
|
|
*/
|
|
|
|
int visits;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/** Add/last visit dates
|
2004-07-02 02:56:26 +04:00
|
|
|
*/
|
2004-07-03 20:28:09 +04:00
|
|
|
time_t add_date;
|
|
|
|
time_t last_date;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** Position on last reformat (relative to window origin)
|
|
|
|
*/
|
|
|
|
int x0;
|
|
|
|
int y0;
|
|
|
|
int width;
|
|
|
|
int height;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/** Cached values
|
|
|
|
*/
|
|
|
|
int collapsed_width;
|
|
|
|
int expanded_width;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/** The width of the various lines sub-text
|
|
|
|
*/
|
|
|
|
int widths[4];
|
2004-06-30 21:44:11 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* A basic window for the toolbar and status
|
|
|
|
*/
|
|
|
|
static wimp_window hotlist_window_definition = {
|
|
|
|
{0, 0, 600, 800},
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
wimp_TOP,
|
|
|
|
wimp_WINDOW_NEW_FORMAT | wimp_WINDOW_MOVEABLE | wimp_WINDOW_BACK_ICON |
|
|
|
|
wimp_WINDOW_CLOSE_ICON | wimp_WINDOW_TITLE_ICON |
|
|
|
|
wimp_WINDOW_TOGGLE_ICON | wimp_WINDOW_SIZE_ICON |wimp_WINDOW_VSCROLL,
|
|
|
|
wimp_COLOUR_BLACK,
|
|
|
|
wimp_COLOUR_LIGHT_GREY,
|
|
|
|
wimp_COLOUR_LIGHT_GREY,
|
|
|
|
wimp_COLOUR_VERY_LIGHT_GREY,
|
|
|
|
wimp_COLOUR_DARK_GREY,
|
|
|
|
wimp_COLOUR_MID_LIGHT_GREY,
|
|
|
|
wimp_COLOUR_CREAM,
|
|
|
|
0,
|
|
|
|
{0, -800, 16384, 0},
|
|
|
|
wimp_ICON_TEXT | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED,
|
|
|
|
(wimp_BUTTON_DOUBLE_CLICK_DRAG << wimp_ICON_BUTTON_TYPE_SHIFT),
|
|
|
|
wimpspriteop_AREA,
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
{"Hotlist"},
|
2004-07-04 22:44:51 +04:00
|
|
|
0
|
2004-06-30 21:44:11 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* An icon to plot text with
|
|
|
|
*/
|
|
|
|
static wimp_icon text_icon;
|
|
|
|
static wimp_icon sprite_icon;
|
|
|
|
static char null_text_string[] = "\0";
|
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Temporary workspace for plotting
|
|
|
|
*/
|
|
|
|
static char icon_name[12];
|
2004-07-03 21:30:28 +04:00
|
|
|
static char extended_text[HOTLIST_TEXT_BUFFER];
|
2004-07-02 02:56:26 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Whether a reformat is pending
|
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
static bool reformat_pending = false;
|
|
|
|
static int max_width = 0;
|
|
|
|
static int max_height = 0;
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
/* The hotlist window and plot origins
|
|
|
|
*/
|
|
|
|
wimp_w hotlist_window;
|
2004-07-02 02:56:26 +04:00
|
|
|
static int origin_x, origin_y;
|
|
|
|
|
|
|
|
/* The current redraw rectangle
|
|
|
|
*/
|
|
|
|
static int clip_x0, clip_y0, clip_x1, clip_y1;
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
/* The root entry
|
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
static struct hotlist_entry root;
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
/* The sprite ids for far faster plotting
|
|
|
|
*/
|
|
|
|
static osspriteop_id sprite[6];
|
|
|
|
|
|
|
|
/* Pixel translation tables
|
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
static osspriteop_trans_tab *pixel_table;
|
2004-06-30 21:44:11 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* The drag buttons
|
|
|
|
*/
|
|
|
|
wimp_mouse_state drag_buttons;
|
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Whether the current selection was from a menu click
|
|
|
|
*/
|
|
|
|
bool menu_selection = false;
|
|
|
|
|
|
|
|
/* Hotlist loading buffer
|
|
|
|
*/
|
|
|
|
char *load_buf;
|
2004-06-30 21:44:11 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
static bool ro_gui_hotlist_load(void);
|
2004-07-04 22:44:51 +04:00
|
|
|
static bool ro_gui_hotlist_save_entry(FILE *fp, struct hotlist_entry *entry);
|
|
|
|
static bool ro_gui_hotlist_load_entry(FILE *fp, struct hotlist_entry *entry);
|
2004-06-30 21:44:11 +04:00
|
|
|
static void ro_gui_hotlist_link_entry(struct hotlist_entry *parent, struct hotlist_entry *entry);
|
2004-07-02 02:56:26 +04:00
|
|
|
static void ro_gui_hotlist_visited_update(struct content *content, struct hotlist_entry *entry);
|
2004-06-30 21:44:11 +04:00
|
|
|
static int ro_gui_hotlist_redraw_tree(struct hotlist_entry *entry, int level, int x0, int y0);
|
|
|
|
static int ro_gui_hotlist_redraw_item(struct hotlist_entry *entry, int level, int x0, int y0);
|
2004-07-02 02:56:26 +04:00
|
|
|
static struct hotlist_entry *ro_gui_hotlist_create(const char *title, const char *url,
|
|
|
|
int filetype, struct hotlist_entry *folder);
|
2004-06-30 21:44:11 +04:00
|
|
|
static void ro_gui_hotlist_update_entry_size(struct hotlist_entry *entry);
|
|
|
|
static struct hotlist_entry *ro_gui_hotlist_find_entry(int x, int y, struct hotlist_entry *entry);
|
2004-07-01 03:11:11 +04:00
|
|
|
static int ro_gui_hotlist_selection_state(struct hotlist_entry *entry, bool selected, bool redraw);
|
2004-07-03 21:30:28 +04:00
|
|
|
static void ro_gui_hotlist_selection_drag(struct hotlist_entry *entry,
|
|
|
|
int x0, int y0, int x1, int y1,
|
|
|
|
bool toggle, bool redraw);
|
2004-07-04 18:59:29 +04:00
|
|
|
static int ro_gui_hotlist_selection_count(struct hotlist_entry *entry);
|
|
|
|
static void ro_gui_hotlist_update_expansion(struct hotlist_entry *entry, bool only_selected,
|
2004-07-04 22:44:51 +04:00
|
|
|
bool folders, bool links, bool expand, bool contract);
|
|
|
|
static void ro_gui_hotlist_launch_selection(struct hotlist_entry *entry);
|
2004-07-04 18:59:29 +04:00
|
|
|
|
2004-07-03 20:28:09 +04:00
|
|
|
static char *last_visit_to_string(time_t last_visit);
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
void ro_gui_hotlist_init(void) {
|
|
|
|
os_error *error;
|
2004-07-04 16:42:54 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Set the initial root options
|
|
|
|
*/
|
|
|
|
root.next_entry = NULL;
|
|
|
|
root.child_entry = NULL;
|
|
|
|
root.children = 0;
|
|
|
|
root.expanded = true;
|
|
|
|
|
|
|
|
/* Load the hotlist
|
|
|
|
*/
|
|
|
|
if (!ro_gui_hotlist_load()) {
|
2004-07-04 22:44:51 +04:00
|
|
|
// return;
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Get our sprite ids for faster plotting. This could be done in a
|
|
|
|
far more elegant manner, but it's late and my girlfriend will
|
|
|
|
kill me if I don't go to bed soon. Sorry.
|
|
|
|
*/
|
|
|
|
error = xosspriteop_select_sprite(osspriteop_USER_AREA, gui_sprites,
|
|
|
|
(osspriteop_id)"tr_expand",
|
|
|
|
(osspriteop_header **)&sprite[HOTLIST_EXPAND]);
|
|
|
|
if (!error)
|
|
|
|
error = xosspriteop_select_sprite(osspriteop_USER_AREA, gui_sprites,
|
|
|
|
(osspriteop_id)"tr_collapse",
|
|
|
|
(osspriteop_header **)&sprite[HOTLIST_COLLAPSE]);
|
|
|
|
if (!error)
|
|
|
|
error = xosspriteop_select_sprite(osspriteop_USER_AREA, gui_sprites,
|
|
|
|
(osspriteop_id)"tr_entry",
|
|
|
|
(osspriteop_header **)&sprite[HOTLIST_ENTRY]);
|
|
|
|
if (!error)
|
|
|
|
error = xosspriteop_select_sprite(osspriteop_USER_AREA, gui_sprites,
|
|
|
|
(osspriteop_id)"tr_line",
|
|
|
|
(osspriteop_header **)&sprite[HOTLIST_LINE]);
|
|
|
|
if (!error)
|
|
|
|
error = xosspriteop_select_sprite(osspriteop_USER_AREA, gui_sprites,
|
|
|
|
(osspriteop_id)"tr_halflinet",
|
|
|
|
(osspriteop_header **)&sprite[HOTLIST_TLINE]);
|
|
|
|
if (!error)
|
|
|
|
error = xosspriteop_select_sprite(osspriteop_USER_AREA, gui_sprites,
|
|
|
|
(osspriteop_id)"tr_halflineb",
|
|
|
|
(osspriteop_header **)&sprite[HOTLIST_BLINE]);
|
|
|
|
if (error) {
|
|
|
|
warn_user("MiscError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Update our text icon
|
|
|
|
*/
|
|
|
|
text_icon.data.indirected_text.validation = null_text_string;
|
|
|
|
text_icon.data.indirected_text.size = 256;
|
|
|
|
sprite_icon.flags = wimp_ICON_SPRITE | wimp_ICON_INDIRECTED |
|
2004-07-02 03:20:40 +04:00
|
|
|
wimp_ICON_HCENTRED | wimp_ICON_VCENTRED |
|
|
|
|
(wimp_COLOUR_BLACK << wimp_ICON_FG_COLOUR_SHIFT) |
|
|
|
|
(wimp_COLOUR_VERY_LIGHT_GREY << wimp_ICON_BG_COLOUR_SHIFT);
|
2004-06-30 21:44:11 +04:00
|
|
|
sprite_icon.data.indirected_sprite.area = wimpspriteop_AREA;
|
|
|
|
sprite_icon.data.indirected_text.size = 12;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Create our window
|
|
|
|
*/
|
|
|
|
error = xwimp_create_window(&hotlist_window_definition, &hotlist_window);
|
|
|
|
if (error) {
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the hotlist window.
|
2004-07-04 23:27:42 +04:00
|
|
|
*/
|
2004-06-30 21:44:11 +04:00
|
|
|
void ro_gui_hotlist_show(void) {
|
|
|
|
os_error *error;
|
|
|
|
int screen_width, screen_height;
|
|
|
|
wimp_window_state state;
|
|
|
|
int dimension;
|
|
|
|
int scroll_width;
|
|
|
|
|
|
|
|
/* We may have failed to initialise
|
|
|
|
*/
|
|
|
|
if (!hotlist_window) return;
|
|
|
|
|
|
|
|
/* Get the window state
|
|
|
|
*/
|
|
|
|
state.w = hotlist_window;
|
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we're open we jump to the top of the stack, if not then we
|
|
|
|
open in the centre of the screen.
|
|
|
|
*/
|
|
|
|
if (!(state.flags & wimp_WINDOW_OPEN)) {
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Clear the selection/expansion states
|
2004-07-03 21:30:28 +04:00
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
ro_gui_hotlist_update_expansion(root.child_entry, false, true, true, false, true);
|
2004-07-03 21:30:28 +04:00
|
|
|
ro_gui_hotlist_selection_state(root.child_entry, false, false);
|
2004-07-01 03:11:11 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Get the current screen size
|
|
|
|
*/
|
|
|
|
ro_gui_screen_size(&screen_width, &screen_height);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Move to the centre
|
|
|
|
*/
|
|
|
|
dimension = state.visible.x1 - state.visible.x0;
|
|
|
|
scroll_width = ro_get_vscroll_width(hotlist_window);
|
|
|
|
state.visible.x0 = (screen_width - (dimension + scroll_width)) / 2;
|
|
|
|
state.visible.x1 = state.visible.x0 + dimension;
|
|
|
|
dimension = state.visible.y1 - state.visible.y0;
|
|
|
|
state.visible.y0 = (screen_height - dimension) / 2;
|
|
|
|
state.visible.y1 = state.visible.y0 + dimension;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the window at the top of the stack
|
|
|
|
*/
|
|
|
|
state.next = wimp_TOP;
|
|
|
|
error = xwimp_open_window((wimp_open*)&state);
|
|
|
|
if (error) {
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
bool ro_gui_hotlist_load(void) {
|
|
|
|
FILE *fp;
|
|
|
|
fileswitch_object_type obj_type = 0;
|
2004-06-30 21:44:11 +04:00
|
|
|
struct hotlist_entry *netsurf;
|
2004-07-02 02:56:26 +04:00
|
|
|
struct hotlist_entry *entry;
|
2004-07-04 22:44:51 +04:00
|
|
|
bool success = true;
|
|
|
|
bool found = false;
|
2004-07-04 16:42:54 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Check if we have an initial hotlist. OS_File does funny things relating to errors,
|
|
|
|
so we use the object type to determine success
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
2004-07-04 18:59:29 +04:00
|
|
|
xosfile_read_stamped_no_path("<Choices$Write>.WWW.NetSurf.Hotlist", &obj_type,
|
|
|
|
(bits)0, (bits)0, 0, (fileswitch_attr)0, (bits)0);
|
|
|
|
if (obj_type != 0) {
|
|
|
|
/* Open our file
|
|
|
|
*/
|
|
|
|
fp = fopen("<Choices$Write>.WWW.NetSurf.Hotlist", "r");
|
|
|
|
if (!fp) {
|
|
|
|
warn_user("HotlistLoadError", 0);
|
|
|
|
return false;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Get some memory to work with
|
|
|
|
*/
|
|
|
|
load_buf = malloc(HOTLIST_LOAD_BUFFER);
|
|
|
|
if (!load_buf) {
|
|
|
|
warn_user("HotlistLoadError", 0);
|
|
|
|
fclose(fp);
|
|
|
|
return false;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Check for the opening <HTML> to vaguely validate our file
|
|
|
|
*/
|
|
|
|
if ((fgets(load_buf, HOTLIST_LOAD_BUFFER, fp) == NULL) ||
|
|
|
|
(strncmp("<html>", load_buf, 6) != 0)) {
|
|
|
|
warn_user("HotlistLoadError", 0);
|
|
|
|
free(load_buf);
|
|
|
|
fclose(fp);
|
|
|
|
return false;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Keep reading until we get to a <ul>
|
|
|
|
*/
|
|
|
|
while (!found && (fgets(load_buf, HOTLIST_LOAD_BUFFER, fp))) {
|
2004-07-04 23:27:42 +04:00
|
|
|
if (strncmp("<ul>", load_buf, 4) == 0) found = true;
|
2004-07-04 22:44:51 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Start our recursive load
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if (found) success = ro_gui_hotlist_load_entry(fp, &root);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Tell the user if we had any problems
|
|
|
|
*/
|
|
|
|
if (!success) {
|
|
|
|
warn_user("HotlistLoadError", 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close our file and return
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
free(load_buf);
|
2004-07-04 18:59:29 +04:00
|
|
|
fclose(fp);
|
|
|
|
return success;
|
|
|
|
} else {
|
|
|
|
/* Create a folder
|
|
|
|
*/
|
|
|
|
netsurf = ro_gui_hotlist_create("NetSurf", NULL, 0, &root);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Add some content
|
|
|
|
*/
|
|
|
|
entry = ro_gui_hotlist_create("NetSurf homepage", "http://netsurf.sf.net",
|
|
|
|
0xfaf, netsurf);
|
|
|
|
entry->add_date = (time_t)-1;
|
|
|
|
entry = ro_gui_hotlist_create("NetSurf test builds", "http://netsurf.strcprstskrzkrk.co.uk",
|
|
|
|
0xfaf, netsurf);
|
|
|
|
entry->add_date = (time_t)-1;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* We succeeded
|
|
|
|
*/
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2004-07-04 16:42:54 +04:00
|
|
|
|
2004-07-04 23:27:42 +04:00
|
|
|
void ro_gui_hotlist_save(void) {
|
2004-07-04 18:59:29 +04:00
|
|
|
FILE *fp;
|
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Don't save if we didn't load
|
|
|
|
*/
|
|
|
|
if (!hotlist_window) return;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Ensure we have a directory to save to later.
|
|
|
|
*/
|
|
|
|
xosfile_create_dir("<Choices$Write>.WWW", 0);
|
|
|
|
xosfile_create_dir("<Choices$Write>.WWW.NetSurf", 0);
|
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Open our file
|
|
|
|
*/
|
|
|
|
fp = fopen("<Choices$Write>.WWW.NetSurf.Hotlist", "w");
|
|
|
|
if (!fp) {
|
|
|
|
warn_user("HotlistSaveError", 0);
|
|
|
|
return;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* HTML header
|
|
|
|
*/
|
|
|
|
fprintf(fp, "<html>\n<head>\n<title>Hotlist</title>\n<body>\n");
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Start our recursive save
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if (!ro_gui_hotlist_save_entry(fp, root.child_entry)) {
|
2004-07-04 18:59:29 +04:00
|
|
|
warn_user("HotlistSaveError", 0);
|
|
|
|
}
|
2004-07-04 22:44:51 +04:00
|
|
|
|
|
|
|
/* HTML footer
|
|
|
|
*/
|
|
|
|
fprintf(fp, "</body>\n</html>\n");
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Close our file
|
|
|
|
*/
|
|
|
|
fclose(fp);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Set the filetype to HTML
|
|
|
|
*/
|
|
|
|
xosfile_set_type("<Choices$Write>.WWW.NetSurf.Hotlist", 0xfaf);
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
bool ro_gui_hotlist_save_entry(FILE *fp, struct hotlist_entry *entry) {
|
|
|
|
if (!entry) return true;
|
|
|
|
|
|
|
|
/* We're starting a new child
|
|
|
|
*/
|
|
|
|
fprintf(fp, "<ul>\n");
|
|
|
|
|
|
|
|
/* Work through the entries
|
|
|
|
*/
|
|
|
|
while (entry) {
|
|
|
|
/* Save this entry
|
|
|
|
*/
|
|
|
|
if (entry->url) {
|
|
|
|
fprintf(fp, "<li><a href=\"%s\">%s</a>\n", entry->url, entry->title);
|
|
|
|
} else {
|
|
|
|
fprintf(fp, "<li>%s\n", entry->title);
|
|
|
|
}
|
|
|
|
fprintf(fp, "<!-- Title:%s -->\n", entry->title);
|
|
|
|
if (entry->url) {
|
|
|
|
fprintf(fp, "<!-- URL:%s -->\n", entry->url);
|
|
|
|
fprintf(fp, "<!-- Type:%i -->\n", entry->filetype);
|
|
|
|
}
|
|
|
|
if (entry->add_date != -1) fprintf(fp, "<!-- Added:%i -->\n", (int)entry->add_date);
|
|
|
|
if (entry->last_date != -1) fprintf(fp, "<!-- LastVisit:%i -->\n", (int)entry->last_date);
|
|
|
|
if (entry->visits != 0) fprintf(fp, "<!-- Visits:%i -->\n", entry->visits);
|
|
|
|
|
|
|
|
/* Continue onwards
|
|
|
|
*/
|
|
|
|
if (entry->child_entry) {
|
|
|
|
ro_gui_hotlist_save_entry(fp, entry->child_entry);
|
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* We're starting a new child
|
|
|
|
*/
|
2004-07-04 23:27:42 +04:00
|
|
|
fprintf(fp, "</ul>\n");
|
|
|
|
return true;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
bool ro_gui_hotlist_load_entry(FILE *fp, struct hotlist_entry *entry) {
|
|
|
|
struct hotlist_entry *last_entry = NULL;
|
|
|
|
char *title = NULL;
|
|
|
|
char *url = NULL;
|
|
|
|
int add_date = -1;
|
|
|
|
int last_date = -1;
|
|
|
|
int visits = 0;
|
|
|
|
int filetype = 0;
|
|
|
|
int val_length;
|
|
|
|
|
|
|
|
/* Check we can add to something
|
|
|
|
*/
|
|
|
|
if (entry == NULL) return false;
|
|
|
|
|
|
|
|
/* Keep reading until we get to a <ul>
|
|
|
|
*/
|
|
|
|
while (fgets(load_buf, HOTLIST_LOAD_BUFFER, fp)) {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Check if we should commit what we have
|
|
|
|
*/
|
|
|
|
if ((strncmp("<li>", load_buf, 4) == 0) ||
|
|
|
|
(strncmp("</ul>", load_buf, 5) == 0) ||
|
|
|
|
(strncmp("<ul>", load_buf, 4) == 0)) {
|
|
|
|
if (title != NULL) {
|
|
|
|
/* Add the entry
|
|
|
|
*/
|
|
|
|
last_entry = ro_gui_hotlist_create(title, url, filetype, entry);
|
|
|
|
last_entry->add_date = add_date;
|
|
|
|
if (last_entry->url) {
|
|
|
|
last_entry->last_date = last_date;
|
|
|
|
last_entry->visits = visits;
|
|
|
|
last_entry->filetype = filetype;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Reset for the next entry
|
|
|
|
*/
|
|
|
|
free(title);
|
|
|
|
title = NULL;
|
|
|
|
if (url) {
|
|
|
|
free(url);
|
|
|
|
url = NULL;
|
|
|
|
}
|
|
|
|
add_date = -1;
|
|
|
|
last_date = -1;
|
|
|
|
visits = 0;
|
|
|
|
filetype = 0;
|
|
|
|
}
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Check if we've reached the end of our run
|
|
|
|
*/
|
|
|
|
if (strncmp("</ul>", load_buf, 5) == 0) return true;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Check for some data
|
|
|
|
*/
|
|
|
|
if (strncmp("<!-- ", load_buf, 5) == 0) {
|
|
|
|
val_length = strlen(load_buf) - 5 - 4;
|
|
|
|
load_buf[val_length + 5] = '\0';
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
if (strncmp("Title:", load_buf + 5, 6) == 0) {
|
|
|
|
if (title) free(title);
|
|
|
|
title = malloc(val_length);
|
|
|
|
if (!title) return false;
|
|
|
|
strcpy(title, load_buf + 5 + 6);
|
|
|
|
} else if (strncmp("URL:", load_buf + 5, 4) == 0) {
|
|
|
|
if (url) free(url);
|
|
|
|
url = malloc(val_length);
|
|
|
|
if (!url) return false;
|
|
|
|
strcpy(url, load_buf + 5 + 4);
|
|
|
|
} else if (strncmp("Added:", load_buf + 5, 6) == 0) {
|
|
|
|
add_date = atoi(load_buf + 5 + 6);
|
|
|
|
} else if (strncmp("LastVisit:", load_buf + 5, 10) == 0) {
|
|
|
|
last_date = atoi(load_buf + 5 + 10);
|
|
|
|
} else if (strncmp("Visits:", load_buf + 5, 7) == 0) {
|
|
|
|
visits = atoi(load_buf + 5 + 7);
|
|
|
|
} else if (strncmp("Type:", load_buf + 5, 5) == 0) {
|
|
|
|
filetype = atoi(load_buf + 5 + 5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if we are starting a child
|
2004-07-04 23:27:42 +04:00
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if (strncmp("<ul>", load_buf, 4) == 0) {
|
|
|
|
if (!ro_gui_hotlist_load_entry(fp, last_entry)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
return true;
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a hotlist entry to the root of the tree.
|
|
|
|
*
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param title the entry title
|
2004-07-02 02:56:26 +04:00
|
|
|
* \param content the content to add
|
2004-07-04 23:27:42 +04:00
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
void ro_gui_hotlist_add(char *title, struct content *content) {
|
|
|
|
ro_gui_hotlist_create(title, content->url, ro_content_filetype(content), &root);
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-02 02:56:26 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the hotlist that some content has been visited
|
|
|
|
*
|
|
|
|
* \param content the content visited
|
|
|
|
*/
|
2004-07-03 21:30:28 +04:00
|
|
|
void hotlist_visited(struct content *content) {
|
2004-07-02 02:56:26 +04:00
|
|
|
if ((!content) || (!content->url)) return;
|
2004-07-04 23:27:42 +04:00
|
|
|
ro_gui_hotlist_visited_update(content, root.child_entry);
|
2004-07-02 02:56:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the hotlist that some content has been visited (internal)
|
|
|
|
*
|
|
|
|
* \param content the content visited
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param entry the entry to check siblings and children of
|
2004-07-02 02:56:26 +04:00
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_visited_update(struct content *content, struct hotlist_entry *entry) {
|
|
|
|
char *url;
|
2004-07-03 21:30:28 +04:00
|
|
|
bool full = false;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Update the hotlist
|
|
|
|
*/
|
|
|
|
url = content->url;
|
|
|
|
while (entry) {
|
|
|
|
if (entry->url) {
|
|
|
|
if (strcmp(url, entry->url) == 0) {
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Check if we're going to need a full redraw downwards
|
|
|
|
*/
|
|
|
|
full = ((entry->visits == 0) || (entry->last_date == -1));
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Update our values
|
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
entry->visits++;
|
2004-07-03 20:28:09 +04:00
|
|
|
entry->last_date = time(NULL);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Update the entry width (extreme case - never likely to happen)
|
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
ro_gui_hotlist_update_entry_size(entry);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Redraw the least we can get away with
|
|
|
|
*/
|
2004-07-02 03:20:40 +04:00
|
|
|
if (entry->expanded) {
|
2004-07-03 21:30:28 +04:00
|
|
|
if (full) {
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
|
|
|
0, -16384, 16384,
|
|
|
|
entry->y0 + entry->height);
|
|
|
|
} else {
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
|
|
|
entry->x0, entry->y0,
|
|
|
|
entry->x0 + entry->width,
|
|
|
|
entry->y0 + entry->height);
|
|
|
|
}
|
2004-07-02 03:20:40 +04:00
|
|
|
}
|
2004-07-02 02:56:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (entry->child_entry) {
|
2004-07-04 23:27:42 +04:00
|
|
|
ro_gui_hotlist_visited_update(content, entry->child_entry);
|
2004-07-02 02:56:26 +04:00
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a hotlist entry to the root of the tree (internal).
|
|
|
|
*
|
|
|
|
* \param title the entry title
|
|
|
|
* \param url the entry url (NULL to create a folder)
|
|
|
|
* \param folder the folder to add the entry into
|
2004-07-04 23:27:42 +04:00
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
struct hotlist_entry *ro_gui_hotlist_create(const char *title, const char *url,
|
|
|
|
int filetype, struct hotlist_entry *folder) {
|
2004-06-30 21:44:11 +04:00
|
|
|
struct hotlist_entry *entry;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Check we have a title or a URL
|
|
|
|
*/
|
|
|
|
if (!title && !url) return NULL;
|
|
|
|
|
|
|
|
/* Allocate some memory
|
|
|
|
*/
|
|
|
|
entry = (struct hotlist_entry *)calloc(1, sizeof(struct hotlist_entry));
|
|
|
|
if (!entry) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* And enough for the url/title
|
|
|
|
*/
|
|
|
|
if (url) {
|
|
|
|
entry->url = malloc(strlen(url) + 1);
|
|
|
|
if (!entry->url) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
free(entry);
|
2004-07-04 23:27:42 +04:00
|
|
|
return NULL;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
strcpy(entry->url, url);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the title if we have one, or use the URL instead
|
|
|
|
*/
|
|
|
|
if (title) {
|
|
|
|
entry->title = malloc(strlen(title) + 1);
|
|
|
|
if (!entry->title) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
free(entry->url);
|
|
|
|
free(entry);
|
2004-07-04 23:27:42 +04:00
|
|
|
return NULL;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
strcpy(entry->title, title);
|
|
|
|
} else {
|
2004-07-04 23:27:42 +04:00
|
|
|
entry->title = entry->url;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Set the children count
|
|
|
|
*/
|
|
|
|
if (url) {
|
2004-07-04 23:27:42 +04:00
|
|
|
entry->children = -1;
|
2004-06-30 21:44:11 +04:00
|
|
|
} else {
|
|
|
|
entry->children = 0;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Set the filetype
|
|
|
|
*/
|
|
|
|
entry->filetype = filetype;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Set the default values
|
|
|
|
*/
|
|
|
|
entry->visits = 0;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Get our dates
|
|
|
|
*/
|
2004-07-03 20:28:09 +04:00
|
|
|
entry->add_date = time(NULL);
|
2004-07-03 21:30:28 +04:00
|
|
|
entry->last_date = (time_t)-1;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Set the expanded/selected state
|
|
|
|
*/
|
|
|
|
entry->expanded = false;
|
|
|
|
entry->selected = false;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Set the width
|
|
|
|
*/
|
|
|
|
ro_gui_hotlist_update_entry_size(entry);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Link in as the last entry in root
|
|
|
|
*/
|
|
|
|
ro_gui_hotlist_link_entry(folder, entry);
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Links a hotlist entry into the tree.
|
|
|
|
*
|
|
|
|
* \param parent the parent entry to link under
|
|
|
|
* \param entry the entry to link
|
2004-07-04 23:27:42 +04:00
|
|
|
*/
|
2004-06-30 21:44:11 +04:00
|
|
|
void ro_gui_hotlist_link_entry(struct hotlist_entry *parent, struct hotlist_entry *entry) {
|
|
|
|
struct hotlist_entry *link_entry;
|
|
|
|
|
|
|
|
if (!parent || !entry) return;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Ensure the parent is a folder
|
|
|
|
*/
|
|
|
|
if (parent->children == -1) return;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
link_entry = parent->child_entry;
|
|
|
|
if (!link_entry) {
|
|
|
|
parent->child_entry = entry;
|
|
|
|
} else {
|
|
|
|
while (link_entry->next_entry) link_entry = link_entry->next_entry;
|
|
|
|
link_entry->next_entry = entry;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Increment the number of children
|
|
|
|
*/
|
|
|
|
parent->children += 1;
|
|
|
|
|
|
|
|
/* Force a redraw
|
|
|
|
*/
|
|
|
|
reformat_pending = true;
|
|
|
|
xwimp_force_redraw(hotlist_window, 0, -16384, 16384, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates and entrys size
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_update_entry_size(struct hotlist_entry *entry) {
|
|
|
|
int width;
|
2004-07-03 21:30:28 +04:00
|
|
|
int max_width;
|
|
|
|
int line_number = 0;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Get the width of the title
|
2004-07-04 23:27:42 +04:00
|
|
|
*/
|
2004-06-30 21:44:11 +04:00
|
|
|
xwimptextop_string_width(entry->title,
|
|
|
|
strlen(entry->title) > 256 ? 256 : strlen(entry->title),
|
|
|
|
&width);
|
2004-07-03 21:30:28 +04:00
|
|
|
entry->collapsed_width = width;
|
|
|
|
max_width = width;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Get the width of the URL
|
|
|
|
*/
|
|
|
|
if (entry->url) {
|
2004-07-03 21:30:28 +04:00
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
|
|
|
messages_get("HotlistURL"), entry->url);
|
|
|
|
if (strlen(extended_text) >= 255) {
|
|
|
|
extended_text[252] = '.';
|
|
|
|
extended_text[253] = '.';
|
|
|
|
extended_text[254] = '.';
|
|
|
|
extended_text[255] = '\0';
|
|
|
|
}
|
|
|
|
xwimptextop_string_width(extended_text,
|
|
|
|
strlen(extended_text) > 256 ? 256 : strlen(extended_text),
|
2004-06-30 21:44:11 +04:00
|
|
|
&width);
|
2004-07-03 21:30:28 +04:00
|
|
|
if (width > max_width) max_width = width;
|
|
|
|
entry->widths[line_number++] = width;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Get the width of the add date
|
|
|
|
*/
|
|
|
|
if (entry->add_date != -1) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
2004-07-04 23:27:42 +04:00
|
|
|
messages_get("HotlistAdded"), ctime(&entry->add_date));
|
2004-07-03 21:30:28 +04:00
|
|
|
xwimptextop_string_width(extended_text,
|
|
|
|
strlen(extended_text) > 256 ? 256 : strlen(extended_text),
|
|
|
|
&width);
|
|
|
|
if (width > max_width) max_width = width;
|
|
|
|
entry->widths[line_number++] = width;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Get the width of the last visit
|
|
|
|
*/
|
|
|
|
if (entry->last_date != -1) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
|
|
|
messages_get("HotlistLast"), ctime(&entry->last_date));
|
|
|
|
xwimptextop_string_width(extended_text,
|
|
|
|
strlen(extended_text) > 256 ? 256 : strlen(extended_text),
|
|
|
|
&width);
|
|
|
|
if (width > max_width) max_width = width;
|
|
|
|
entry->widths[line_number++] = width;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Get the width of the visit count
|
|
|
|
*/
|
|
|
|
if (entry->visits > 0) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
|
|
|
messages_get("HotlistVisits"), entry->visits);
|
|
|
|
xwimptextop_string_width(extended_text,
|
|
|
|
strlen(extended_text) > 256 ? 256 : strlen(extended_text),
|
|
|
|
&width);
|
|
|
|
if (width > max_width) max_width = width;
|
|
|
|
entry->widths[line_number++] = width;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Increase the text width by the borders
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
entry->expanded_width = max_width + HOTLIST_LEAF_INSET + HOTLIST_ICON_WIDTH + HOTLIST_TEXT_PADDING;
|
|
|
|
entry->collapsed_width += HOTLIST_LEAF_INSET + HOTLIST_ICON_WIDTH + HOTLIST_TEXT_PADDING;
|
2004-07-03 21:30:28 +04:00
|
|
|
reformat_pending = true;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraws a section of the hotlist window
|
2004-07-04 23:27:42 +04:00
|
|
|
*
|
2004-07-02 02:56:26 +04:00
|
|
|
* \param redraw the area to redraw
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_redraw(wimp_draw *redraw) {
|
2004-06-30 21:59:18 +04:00
|
|
|
wimp_window_state state;
|
2004-06-30 21:44:11 +04:00
|
|
|
osbool more;
|
|
|
|
unsigned int size;
|
|
|
|
os_box extent = {0, 0, 0, 0};;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Reset our min/max sizes
|
|
|
|
*/
|
|
|
|
max_width = 0;
|
|
|
|
max_height = 0;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Get a pixel translation table for the sprites. We only
|
|
|
|
get one for all the sprites, so they must all have the
|
|
|
|
same characteristics.
|
|
|
|
*/
|
|
|
|
xcolourtrans_generate_table_for_sprite(gui_sprites, sprite[HOTLIST_EXPAND],
|
|
|
|
colourtrans_CURRENT_MODE, colourtrans_CURRENT_PALETTE,
|
|
|
|
0, colourtrans_GIVEN_SPRITE, 0, 0, &size);
|
|
|
|
pixel_table = malloc(size);
|
2004-07-04 23:27:42 +04:00
|
|
|
if (pixel_table) {
|
2004-06-30 21:44:11 +04:00
|
|
|
xcolourtrans_generate_table_for_sprite(gui_sprites, sprite[HOTLIST_EXPAND],
|
|
|
|
colourtrans_CURRENT_MODE, colourtrans_CURRENT_PALETTE,
|
|
|
|
pixel_table, colourtrans_GIVEN_SPRITE, 0, 0, 0);
|
|
|
|
} else {
|
|
|
|
pixel_table = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Redraw each rectangle
|
|
|
|
*/
|
|
|
|
more = wimp_redraw_window(redraw);
|
|
|
|
while (more) {
|
2004-07-03 21:30:28 +04:00
|
|
|
clip_x0 = redraw->clip.x0;
|
|
|
|
clip_y0 = redraw->clip.y0;
|
|
|
|
clip_x1 = redraw->clip.x1;
|
|
|
|
clip_y1 = redraw->clip.y1;
|
2004-06-30 21:44:11 +04:00
|
|
|
origin_x = redraw->box.x0 - redraw->xscroll;
|
|
|
|
origin_y = redraw->box.y1 - redraw->yscroll;
|
|
|
|
ro_gui_hotlist_redraw_tree(root.child_entry, 0,
|
|
|
|
origin_x + 8, origin_y - 4);
|
|
|
|
more = wimp_get_rectangle(redraw);
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Free our memory
|
|
|
|
*/
|
|
|
|
if (pixel_table) free(pixel_table);
|
|
|
|
pixel_table = NULL;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Check if we should reformat
|
|
|
|
*/
|
|
|
|
if (reformat_pending) {
|
2004-07-01 03:11:11 +04:00
|
|
|
max_width += 8;
|
|
|
|
max_height -= 4;
|
|
|
|
if (max_width < 600) max_width = 600;
|
|
|
|
if (max_height > -800) max_height = -800;
|
|
|
|
extent.x1 = max_width;
|
|
|
|
extent.y0 = max_height;
|
2004-06-30 21:44:11 +04:00
|
|
|
xwimp_set_extent(hotlist_window, &extent);
|
2004-06-30 21:59:18 +04:00
|
|
|
state.w = hotlist_window;
|
|
|
|
wimp_get_window_state(&state);
|
|
|
|
wimp_open_window((wimp_open *) &state);
|
2004-06-30 21:44:11 +04:00
|
|
|
reformat_pending = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraws a section of the hotlist window (non-WIMP interface)
|
2004-07-02 02:56:26 +04:00
|
|
|
*
|
|
|
|
* \param entry the entry to draw descendants and siblings of
|
|
|
|
* \param level the tree level of the entry
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param x0 the x co-ordinate to plot from
|
|
|
|
* \param y0 the y co-ordinate to plot from
|
2004-07-02 02:56:26 +04:00
|
|
|
* \returns the height of the tree
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
|
|
|
int ro_gui_hotlist_redraw_tree(struct hotlist_entry *entry, int level, int x0, int y0) {
|
|
|
|
bool first = true;
|
|
|
|
int cumulative = 0;
|
|
|
|
int height = 0;
|
|
|
|
int box_y0;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
if (!entry) return 0;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Repeatedly draw our entries
|
|
|
|
*/
|
|
|
|
while (entry) {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
/* Redraw the item
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
height = ro_gui_hotlist_redraw_item(entry, level, x0 + HOTLIST_LEAF_INSET, y0);
|
2004-07-01 03:11:11 +04:00
|
|
|
box_y0 = y0;
|
|
|
|
cumulative += height;
|
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Update the entry position
|
|
|
|
*/
|
2004-07-01 03:11:11 +04:00
|
|
|
if (entry->children == -1) {
|
|
|
|
entry->height = height;
|
|
|
|
} else {
|
2004-07-04 22:44:51 +04:00
|
|
|
entry->height = HOTLIST_LINE_HEIGHT;
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
2004-06-30 21:44:11 +04:00
|
|
|
entry->x0 = x0 - origin_x;
|
2004-07-01 03:11:11 +04:00
|
|
|
entry->y0 = y0 - origin_y - entry->height;
|
2004-06-30 21:44:11 +04:00
|
|
|
if (entry->expanded) {
|
|
|
|
entry->width = entry->expanded_width;
|
|
|
|
} else {
|
|
|
|
entry->width = entry->collapsed_width;
|
|
|
|
}
|
|
|
|
|
2004-06-30 21:59:18 +04:00
|
|
|
/* Get the maximum extents
|
|
|
|
*/
|
|
|
|
if ((x0 + entry->width) > (max_width + origin_x))
|
|
|
|
max_width = x0 + entry->width - origin_x;
|
|
|
|
if ((y0 - height) < (max_height + origin_y))
|
|
|
|
max_height = y0 - height - origin_y;
|
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Draw the vertical links
|
|
|
|
*/
|
|
|
|
if (entry->next_entry) {
|
|
|
|
/* Draw a half-line for the first entry in the top tree
|
|
|
|
*/
|
|
|
|
if (first && (level == 0)) {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_BLINE],
|
2004-07-04 22:44:51 +04:00
|
|
|
x0 + 8, y0 - HOTLIST_LINE_HEIGHT,
|
2004-06-30 21:44:11 +04:00
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
2004-07-04 22:44:51 +04:00
|
|
|
y0 -= HOTLIST_LINE_HEIGHT;
|
|
|
|
height -= HOTLIST_LINE_HEIGHT;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Draw the rest of the lines
|
|
|
|
*/
|
|
|
|
while (height > 0) {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_LINE],
|
2004-07-04 22:44:51 +04:00
|
|
|
x0 + 8, y0 - HOTLIST_LINE_HEIGHT,
|
2004-06-30 21:44:11 +04:00
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
2004-07-04 22:44:51 +04:00
|
|
|
y0 -= HOTLIST_LINE_HEIGHT;
|
|
|
|
height -= HOTLIST_LINE_HEIGHT;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
} else {
|
|
|
|
/* Draw a half-line for the last entry
|
|
|
|
*/
|
|
|
|
if (!first || (level != 0)) {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_TLINE],
|
|
|
|
x0 + 8, y0 - 22,
|
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
2004-07-04 22:44:51 +04:00
|
|
|
height -= HOTLIST_LINE_HEIGHT;
|
|
|
|
y0 -= HOTLIST_LINE_HEIGHT;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw the expansion type
|
|
|
|
*/
|
|
|
|
if (entry->children == 0) {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_ENTRY],
|
|
|
|
x0, box_y0 - 31,
|
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
|
|
|
} else {
|
|
|
|
if (entry->expanded) {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_COLLAPSE],
|
|
|
|
x0, box_y0 - 31,
|
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
2004-07-04 23:27:42 +04:00
|
|
|
0, pixel_table);
|
2004-06-30 21:44:11 +04:00
|
|
|
} else {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_EXPAND],
|
|
|
|
x0, box_y0 - 31,
|
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to the next entry
|
|
|
|
*/
|
|
|
|
entry = entry->next_entry;
|
|
|
|
first = false;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Return our height
|
|
|
|
*/
|
|
|
|
return cumulative;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/**
|
|
|
|
* Redraws an entry in the tree and any children
|
|
|
|
*
|
|
|
|
* \param entry the entry to redraw
|
|
|
|
* \param level the level of the entry
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param x0 the x co-ordinate to plot at
|
|
|
|
* \param y0 the y co-ordinate to plot at
|
2004-07-02 02:56:26 +04:00
|
|
|
* \return the height of the entry
|
|
|
|
*/
|
2004-06-30 21:44:11 +04:00
|
|
|
int ro_gui_hotlist_redraw_item(struct hotlist_entry *entry, int level, int x0, int y0) {
|
2004-07-04 22:44:51 +04:00
|
|
|
int height = HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
int line_y0;
|
|
|
|
int line_height;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Set the correct height
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
if ((entry->children == -1) && (entry->expanded)) {
|
2004-07-04 22:44:51 +04:00
|
|
|
if (entry->url) height += HOTLIST_LINE_HEIGHT;
|
|
|
|
if (entry->visits > 0) height += HOTLIST_LINE_HEIGHT;
|
|
|
|
if (entry->add_date != -1) height += HOTLIST_LINE_HEIGHT;
|
|
|
|
if (entry->last_date != -1) height += HOTLIST_LINE_HEIGHT;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Check whether we need to redraw
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
if ((x0 < clip_x1) && (y0 > clip_y0) && ((x0 + entry->width) > clip_x0) &&
|
|
|
|
((y0 - height) < clip_y1)) {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Update the selection state
|
|
|
|
*/
|
|
|
|
text_icon.flags = wimp_ICON_TEXT | (wimp_COLOUR_BLACK << wimp_ICON_FG_COLOUR_SHIFT) |
|
2004-07-02 03:20:40 +04:00
|
|
|
(wimp_COLOUR_VERY_LIGHT_GREY << wimp_ICON_BG_COLOUR_SHIFT) |
|
2004-07-02 02:56:26 +04:00
|
|
|
wimp_ICON_INDIRECTED | wimp_ICON_VCENTRED;
|
|
|
|
if (entry->selected) {
|
|
|
|
sprite_icon.flags |= wimp_ICON_SELECTED;
|
|
|
|
text_icon.flags |= wimp_ICON_SELECTED;
|
|
|
|
text_icon.flags |= wimp_ICON_FILLED;
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Draw our icon type
|
|
|
|
*/
|
|
|
|
sprite_icon.extent.x0 = x0 - origin_x;
|
2004-07-04 22:44:51 +04:00
|
|
|
sprite_icon.extent.x1 = x0 - origin_x + HOTLIST_ICON_WIDTH;
|
|
|
|
sprite_icon.extent.y0 = y0 - origin_y - HOTLIST_LINE_HEIGHT;
|
2004-07-02 02:56:26 +04:00
|
|
|
sprite_icon.extent.y1 = y0 - origin_y;
|
|
|
|
sprite_icon.data.indirected_sprite.id = (osspriteop_id)icon_name;
|
|
|
|
if (entry->children != -1) {
|
|
|
|
if ((entry->expanded) && (entry->children > 0)) {
|
|
|
|
sprintf(icon_name, "small_diro");
|
2004-07-02 03:20:40 +04:00
|
|
|
|
|
|
|
/* Check it exists (pre-OS3.5)
|
|
|
|
*/
|
|
|
|
if (xwimpspriteop_read_sprite_info(icon_name, 0, 0, 0, 0)) {
|
2004-07-04 23:27:42 +04:00
|
|
|
sprintf(icon_name, "small_dir");
|
2004-07-02 03:20:40 +04:00
|
|
|
}
|
2004-07-02 02:56:26 +04:00
|
|
|
} else {
|
|
|
|
sprintf(icon_name, "small_dir");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Get the icon sprite
|
|
|
|
*/
|
|
|
|
sprintf(icon_name, "small_%x", entry->filetype);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Check it exists
|
|
|
|
*/
|
|
|
|
if (xwimpspriteop_read_sprite_info(icon_name, 0, 0, 0, 0)) {
|
2004-07-04 23:27:42 +04:00
|
|
|
sprintf(icon_name, "small_xxx");
|
2004-07-02 02:56:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
xwimp_plot_icon(&sprite_icon);
|
2004-06-30 21:44:11 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Draw our textual information
|
|
|
|
*/
|
|
|
|
text_icon.data.indirected_text.text = entry->title;
|
2004-07-04 22:44:51 +04:00
|
|
|
text_icon.extent.x0 = x0 - origin_x + HOTLIST_ICON_WIDTH;
|
|
|
|
text_icon.extent.x1 = x0 - origin_x + entry->collapsed_width - HOTLIST_LEAF_INSET;
|
|
|
|
text_icon.extent.y0 = y0 - origin_y - HOTLIST_LINE_HEIGHT + 2;
|
2004-07-03 21:30:28 +04:00
|
|
|
text_icon.extent.y1 = y0 - origin_y - 2;
|
2004-07-02 02:56:26 +04:00
|
|
|
xwimp_plot_icon(&text_icon);
|
2004-06-30 21:44:11 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Clear the selection state
|
2004-07-01 03:11:11 +04:00
|
|
|
*/
|
2004-07-02 02:56:26 +04:00
|
|
|
if (entry->selected) {
|
|
|
|
sprite_icon.flags &= ~wimp_ICON_SELECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw our further information if expanded
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if ((entry->children == -1) && (entry->expanded) && (height > HOTLIST_LINE_HEIGHT)) {
|
2004-07-02 02:56:26 +04:00
|
|
|
text_icon.flags = wimp_ICON_TEXT | (wimp_COLOUR_DARK_GREY << wimp_ICON_FG_COLOUR_SHIFT) |
|
|
|
|
wimp_ICON_INDIRECTED | wimp_ICON_VCENTRED;
|
2004-07-04 22:44:51 +04:00
|
|
|
text_icon.extent.y0 = y0 - origin_y - HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
text_icon.extent.y1 = y0 - origin_y;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Draw the lines
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
y0 -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
line_y0 = y0;
|
2004-07-04 22:44:51 +04:00
|
|
|
line_height = height - HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
while (line_height > 0) {
|
2004-07-04 22:44:51 +04:00
|
|
|
if (line_height == HOTLIST_LINE_HEIGHT) {
|
2004-07-03 21:30:28 +04:00
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_TLINE],
|
|
|
|
x0 + 16, line_y0 - 22,
|
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
|
|
|
} else {
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_LINE],
|
2004-07-04 22:44:51 +04:00
|
|
|
x0 + 16, line_y0 - HOTLIST_LINE_HEIGHT,
|
2004-07-03 21:30:28 +04:00
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
|
|
|
0, pixel_table);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
|
|
|
xosspriteop_put_sprite_scaled(osspriteop_PTR,
|
|
|
|
gui_sprites, sprite[HOTLIST_ENTRY],
|
|
|
|
x0 + 8, line_y0 - 29,
|
|
|
|
osspriteop_USE_MASK | osspriteop_USE_PALETTE,
|
2004-07-04 23:27:42 +04:00
|
|
|
0, pixel_table);
|
2004-07-04 22:44:51 +04:00
|
|
|
line_height -= HOTLIST_LINE_HEIGHT;
|
|
|
|
line_y0 -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
2004-07-02 02:56:26 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Set the right extent of the icon to be big enough for anything
|
2004-07-02 02:56:26 +04:00
|
|
|
*/
|
|
|
|
text_icon.extent.x1 = x0 - origin_x + 4096;
|
2004-07-03 21:30:28 +04:00
|
|
|
|
|
|
|
/* Plot the URL text
|
|
|
|
*/
|
|
|
|
text_icon.data.indirected_text.text = extended_text;
|
|
|
|
if (entry->url) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
|
|
|
messages_get("HotlistURL"), entry->url);
|
|
|
|
if (strlen(extended_text) >= 255) {
|
|
|
|
extended_text[252] = '.';
|
|
|
|
extended_text[253] = '.';
|
|
|
|
extended_text[254] = '.';
|
|
|
|
extended_text[255] = '\0';
|
|
|
|
}
|
2004-07-04 22:44:51 +04:00
|
|
|
text_icon.extent.y0 -= HOTLIST_LINE_HEIGHT;
|
|
|
|
text_icon.extent.y1 -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
xwimp_plot_icon(&text_icon);
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Plot the date added text
|
|
|
|
*/
|
|
|
|
if (entry->add_date != -1) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
2004-07-04 23:27:42 +04:00
|
|
|
messages_get("HotlistAdded"), ctime(&entry->add_date));
|
2004-07-04 22:44:51 +04:00
|
|
|
text_icon.extent.y0 -= HOTLIST_LINE_HEIGHT;
|
|
|
|
text_icon.extent.y1 -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
xwimp_plot_icon(&text_icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Plot the last visited text
|
|
|
|
*/
|
|
|
|
if (entry->last_date != -1) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
|
|
|
messages_get("HotlistLast"), ctime(&entry->last_date));
|
2004-07-04 22:44:51 +04:00
|
|
|
text_icon.extent.y0 -= HOTLIST_LINE_HEIGHT;
|
|
|
|
text_icon.extent.y1 -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
xwimp_plot_icon(&text_icon);
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Plot the visit count text
|
|
|
|
*/
|
|
|
|
if (entry->visits > 0) {
|
|
|
|
snprintf(extended_text, HOTLIST_TEXT_BUFFER,
|
|
|
|
messages_get("HotlistVisits"), entry->visits);
|
2004-07-04 22:44:51 +04:00
|
|
|
text_icon.extent.y0 -= HOTLIST_LINE_HEIGHT;
|
|
|
|
text_icon.extent.y1 -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
xwimp_plot_icon(&text_icon);
|
|
|
|
}
|
2004-07-02 02:56:26 +04:00
|
|
|
}
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw any children
|
|
|
|
*/
|
|
|
|
if ((entry->child_entry) && (entry->expanded)) {
|
|
|
|
height += ro_gui_hotlist_redraw_tree(entry->child_entry, level + 1,
|
2004-07-04 22:44:51 +04:00
|
|
|
x0 + 8, y0 - HOTLIST_LINE_HEIGHT);
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/**
|
|
|
|
* Respond to a mouse click
|
|
|
|
*
|
|
|
|
* /param pointer the pointer state
|
|
|
|
*/
|
2004-06-30 21:44:11 +04:00
|
|
|
void ro_gui_hotlist_click(wimp_pointer *pointer) {
|
2004-07-04 18:59:29 +04:00
|
|
|
wimp_caret caret;
|
2004-07-03 21:30:28 +04:00
|
|
|
wimp_drag drag;
|
2004-06-30 21:44:11 +04:00
|
|
|
struct hotlist_entry *entry;
|
|
|
|
wimp_window_state state;
|
|
|
|
wimp_mouse_state buttons;
|
|
|
|
int x, y;
|
|
|
|
int x_offset;
|
2004-07-02 02:56:26 +04:00
|
|
|
int y_offset;
|
|
|
|
bool no_entry = false;
|
2004-07-04 18:59:29 +04:00
|
|
|
os_error *error;
|
2004-06-30 21:44:11 +04:00
|
|
|
|
|
|
|
/* Get the button state
|
|
|
|
*/
|
|
|
|
buttons = pointer->buttons;
|
|
|
|
|
|
|
|
/* Get the window state. Quite why the Wimp can't give relative
|
|
|
|
positions is beyond me.
|
|
|
|
*/
|
|
|
|
state.w = hotlist_window;
|
|
|
|
wimp_get_window_state(&state);
|
|
|
|
|
|
|
|
/* Translate by the origin/scroll values
|
|
|
|
*/
|
|
|
|
x = (pointer->pos.x - (state.visible.x0 - state.xscroll));
|
|
|
|
y = (pointer->pos.y - (state.visible.y1 - state.yscroll));
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* We want the caret on a click
|
|
|
|
*/
|
|
|
|
error = xwimp_get_caret_position(&caret);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_caret_position: 0x%x: %s", error->errnum,
|
|
|
|
error->errmess));
|
|
|
|
}
|
|
|
|
if (((pointer->buttons == (wimp_CLICK_SELECT << 8)) ||
|
|
|
|
(pointer->buttons == (wimp_CLICK_ADJUST << 8))) &&
|
|
|
|
(caret.w != state.w)) {
|
|
|
|
error = xwimp_set_caret_position(state.w, -1, -100,
|
2004-07-04 22:44:51 +04:00
|
|
|
-100, HOTLIST_LEAF_INSET, -1);
|
2004-07-04 18:59:29 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_caret_position: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
}
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-06-30 21:44:11 +04:00
|
|
|
/* Find our entry
|
|
|
|
*/
|
|
|
|
entry = ro_gui_hotlist_find_entry(x, y, root.child_entry);
|
|
|
|
if (entry) {
|
|
|
|
/* Check if we clicked on the expanding bit
|
|
|
|
*/
|
|
|
|
x_offset = x - entry->x0;
|
2004-07-02 02:56:26 +04:00
|
|
|
y_offset = y - (entry->y0 + entry->height);
|
2004-07-04 22:44:51 +04:00
|
|
|
if (((x_offset < HOTLIST_LEAF_INSET) && (y_offset > -HOTLIST_LINE_HEIGHT)) ||
|
|
|
|
((entry->children != -1) &&
|
2004-07-01 03:11:11 +04:00
|
|
|
((buttons == wimp_DOUBLE_SELECT) || (buttons == wimp_DOUBLE_ADJUST)))) {
|
2004-07-04 22:44:51 +04:00
|
|
|
ro_gui_hotlist_update_expansion(entry->child_entry, false, true, true, false, true);
|
2004-07-03 21:30:28 +04:00
|
|
|
ro_gui_hotlist_selection_state(entry->child_entry,
|
|
|
|
false, false);
|
2004-06-30 21:44:11 +04:00
|
|
|
entry->expanded = !entry->expanded;
|
2004-07-04 22:44:51 +04:00
|
|
|
if (x_offset >= HOTLIST_LEAF_INSET) entry->selected = false;
|
2004-06-30 21:59:18 +04:00
|
|
|
reformat_pending = true;
|
2004-07-03 21:30:28 +04:00
|
|
|
xwimp_force_redraw(hotlist_window,
|
|
|
|
0, -16384, 16384,
|
|
|
|
entry->y0 + entry->height);
|
2004-07-04 22:44:51 +04:00
|
|
|
} else if (x_offset >= HOTLIST_LEAF_INSET) {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* We treat a menu click as a Select click if we have no selections
|
|
|
|
*/
|
|
|
|
if (buttons == wimp_CLICK_MENU) {
|
|
|
|
if (ro_gui_hotlist_selection_count(root.child_entry) == 0) {
|
2004-07-04 22:44:51 +04:00
|
|
|
menu_selection = true;
|
2004-07-04 18:59:29 +04:00
|
|
|
buttons = (wimp_CLICK_SELECT << 8);
|
|
|
|
}
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
/* Check for selection
|
|
|
|
*/
|
|
|
|
if (buttons == (wimp_CLICK_SELECT << 8)) {
|
2004-07-04 18:59:29 +04:00
|
|
|
if (!entry->selected) {
|
2004-07-01 03:11:11 +04:00
|
|
|
ro_gui_hotlist_selection_state(root.child_entry,
|
|
|
|
false, true);
|
|
|
|
entry->selected = true;
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
2004-07-04 22:44:51 +04:00
|
|
|
entry->x0, entry->y0 + entry->height - HOTLIST_LINE_HEIGHT,
|
2004-07-01 03:11:11 +04:00
|
|
|
entry->x0 + entry->width,
|
2004-07-04 23:27:42 +04:00
|
|
|
entry->y0 + entry->height);
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
|
|
|
} else if (buttons == (wimp_CLICK_ADJUST << 8)) {
|
|
|
|
entry->selected = !entry->selected;
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
2004-07-04 22:44:51 +04:00
|
|
|
entry->x0, entry->y0 + entry->height - HOTLIST_LINE_HEIGHT,
|
2004-07-01 03:11:11 +04:00
|
|
|
entry->x0 + entry->width,
|
2004-07-04 23:27:42 +04:00
|
|
|
entry->y0 + entry->height);
|
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
/* Check if we should open the URL
|
|
|
|
*/
|
|
|
|
if (((buttons == wimp_DOUBLE_SELECT) || (buttons == wimp_DOUBLE_ADJUST)) &&
|
|
|
|
(entry->children == -1)) {
|
2004-06-30 22:13:31 +04:00
|
|
|
browser_window_create(entry->url, NULL);
|
2004-07-01 03:11:11 +04:00
|
|
|
if (buttons == wimp_DOUBLE_SELECT) {
|
|
|
|
ro_gui_hotlist_selection_state(root.child_entry,
|
|
|
|
false, true);
|
|
|
|
} else {
|
|
|
|
entry->selected = false;
|
2004-06-30 22:13:31 +04:00
|
|
|
xwimp_close_window(hotlist_window);
|
|
|
|
}
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
2004-07-02 02:56:26 +04:00
|
|
|
} else {
|
|
|
|
no_entry = true;
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
|
|
|
} else {
|
2004-07-02 02:56:26 +04:00
|
|
|
no_entry = true;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Get the original button state back
|
|
|
|
*/
|
|
|
|
buttons = pointer->buttons;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Create a menu if we should
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if (buttons == wimp_CLICK_MENU) {
|
|
|
|
/* ro_gui_create_menu(hotlist_menu, pointer->pos.x - 64,
|
|
|
|
pointer->pos.y, NULL);
|
|
|
|
*/ return;
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
2004-07-04 16:42:54 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/* Handle a click without an entry
|
|
|
|
*/
|
|
|
|
if (no_entry) {
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Deselect everything if we click nowhere
|
|
|
|
*/
|
2004-07-01 03:11:11 +04:00
|
|
|
if (buttons == (wimp_CLICK_SELECT << 8)) {
|
|
|
|
ro_gui_hotlist_selection_state(root.child_entry,
|
|
|
|
false, true);
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Handle the start of a drag
|
|
|
|
*/
|
2004-07-04 23:27:42 +04:00
|
|
|
if (buttons == (wimp_CLICK_SELECT << 4) ||
|
2004-07-03 21:30:28 +04:00
|
|
|
buttons == (wimp_CLICK_ADJUST << 4)) {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Clear the current selection
|
|
|
|
*/
|
|
|
|
if (buttons == (wimp_CLICK_SELECT << 4)) {
|
|
|
|
ro_gui_hotlist_selection_state(root.child_entry,
|
|
|
|
false, true);
|
|
|
|
}
|
2004-07-03 20:28:09 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Start a drag box
|
|
|
|
*/
|
|
|
|
drag_buttons = buttons;
|
|
|
|
gui_current_drag_type = GUI_DRAG_HOTLIST_SELECT;
|
2004-07-04 18:59:29 +04:00
|
|
|
drag.w = hotlist_window;
|
|
|
|
drag.type = wimp_DRAG_USER_RUBBER;
|
|
|
|
drag.initial.x0 = pointer->pos.x;
|
|
|
|
drag.initial.x1 = pointer->pos.x;
|
|
|
|
drag.initial.y0 = pointer->pos.y;
|
|
|
|
drag.initial.y1 = pointer->pos.y;
|
|
|
|
drag.bbox.x0 = state.visible.x0;
|
|
|
|
drag.bbox.x1 = state.visible.x1;
|
|
|
|
drag.bbox.y0 = state.visible.y0;
|
|
|
|
drag.bbox.y1 = state.visible.y1;
|
|
|
|
xwimp_drag_box(&drag);
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
|
|
|
}
|
2004-06-30 21:44:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
/**
|
|
|
|
* Find an entry at a particular position
|
|
|
|
*
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param x the x co-ordinate
|
|
|
|
* \param y the y co-ordinate
|
2004-07-02 02:56:26 +04:00
|
|
|
* \param entry the entry to check down from (root->child_entry for the entire tree)
|
|
|
|
* /return the entry occupying the positon
|
|
|
|
*/
|
2004-06-30 21:44:11 +04:00
|
|
|
struct hotlist_entry *ro_gui_hotlist_find_entry(int x, int y, struct hotlist_entry *entry) {
|
|
|
|
struct hotlist_entry *find_entry;
|
2004-07-03 21:30:28 +04:00
|
|
|
int inset_x = 0;
|
|
|
|
int inset_y = 0;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
/* Check we have an entry (only applies if we have an empty hotlist)
|
2004-06-30 21:44:11 +04:00
|
|
|
*/
|
|
|
|
if (!entry) return NULL;
|
|
|
|
|
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
while (entry) {
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Check if this entry could possibly match
|
2004-07-01 03:11:11 +04:00
|
|
|
*/
|
|
|
|
if ((x > entry->x0) && (y > entry->y0) && (x < (entry->x0 + entry->width)) &&
|
|
|
|
(y < (entry->y0 + entry->height))) {
|
2004-07-03 21:30:28 +04:00
|
|
|
|
|
|
|
/* The top line extends all the way left
|
2004-07-02 02:56:26 +04:00
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if (y - (entry->y0 + entry->height) > -HOTLIST_LINE_HEIGHT) {
|
2004-07-03 21:30:28 +04:00
|
|
|
if (x < (entry->x0 + entry->collapsed_width)) return entry;
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* No other entry can occupy the left edge
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
inset_x = x - entry->x0 - HOTLIST_LEAF_INSET - HOTLIST_ICON_WIDTH;
|
2004-07-03 21:30:28 +04:00
|
|
|
if (inset_x < 0) return NULL;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Check the right edge against our various widths
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
inset_y = -((y - entry->y0 - entry->height) / HOTLIST_LINE_HEIGHT);
|
|
|
|
if (inset_x < (entry->widths[inset_y - 1] + HOTLIST_TEXT_PADDING)) return entry;
|
2004-07-04 23:27:42 +04:00
|
|
|
return NULL;
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
/* Continue onwards
|
|
|
|
*/
|
|
|
|
if ((entry->child_entry) && (entry->expanded)) {
|
|
|
|
find_entry = ro_gui_hotlist_find_entry(x, y, entry->child_entry);
|
|
|
|
if (find_entry) return find_entry;
|
|
|
|
}
|
2004-06-30 21:44:11 +04:00
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-07-01 03:11:11 +04:00
|
|
|
|
2004-07-02 02:56:26 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updated the selection state of the tree
|
|
|
|
*
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param entry the entry to update all siblings and descendants of
|
2004-07-02 02:56:26 +04:00
|
|
|
* \param selected the selection state to set
|
|
|
|
* \param redraw update the icons in the Wimp
|
|
|
|
* \return the number of entries that have changed
|
|
|
|
*/
|
2004-07-01 03:11:11 +04:00
|
|
|
int ro_gui_hotlist_selection_state(struct hotlist_entry *entry, bool selected, bool redraw) {
|
|
|
|
int changes = 0;
|
|
|
|
|
|
|
|
/* Check we have an entry (only applies if we have an empty hotlist)
|
|
|
|
*/
|
|
|
|
if (!entry) return 0;
|
|
|
|
|
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
while (entry) {
|
|
|
|
/* Check this entry
|
|
|
|
*/
|
|
|
|
if (entry->selected != selected) {
|
|
|
|
/* Update the selection state
|
|
|
|
*/
|
|
|
|
entry->selected = selected;
|
|
|
|
changes++;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Redraw the entrys first line
|
2004-07-01 03:11:11 +04:00
|
|
|
*/
|
|
|
|
if (redraw) {
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
2004-07-04 22:44:51 +04:00
|
|
|
entry->x0, entry->y0 + entry->height - HOTLIST_LINE_HEIGHT,
|
2004-07-01 03:11:11 +04:00
|
|
|
entry->x0 + entry->width,
|
|
|
|
entry->y0 + entry->height);
|
|
|
|
}
|
|
|
|
}
|
2004-07-03 20:28:09 +04:00
|
|
|
|
2004-07-01 03:11:11 +04:00
|
|
|
/* Continue onwards
|
|
|
|
*/
|
|
|
|
if (entry->child_entry) {
|
|
|
|
changes += ro_gui_hotlist_selection_state(entry->child_entry,
|
2004-07-03 21:30:28 +04:00
|
|
|
selected, redraw & (entry->expanded));
|
2004-07-01 03:11:11 +04:00
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
|
|
|
return changes;
|
|
|
|
}
|
2004-07-03 20:28:09 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
int ro_gui_hotlist_selection_count(struct hotlist_entry *entry) {
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
/* Check we have an entry (only applies if we have an empty hotlist)
|
|
|
|
*/
|
|
|
|
if (!entry) return 0;
|
2004-07-04 22:44:51 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
while (entry) {
|
|
|
|
/* Check this entry
|
|
|
|
*/
|
|
|
|
if (entry->selected) count++;
|
|
|
|
|
|
|
|
/* Continue onwards
|
|
|
|
*/
|
|
|
|
if (entry->child_entry) {
|
|
|
|
count += ro_gui_hotlist_selection_count(entry->child_entry);
|
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
void ro_gui_hotlist_launch_selection(struct hotlist_entry *entry) {
|
|
|
|
|
|
|
|
/* Check we have an entry (only applies if we have an empty hotlist)
|
|
|
|
*/
|
|
|
|
if (!entry) return;
|
|
|
|
|
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
while (entry) {
|
|
|
|
/* Check this entry
|
|
|
|
*/
|
|
|
|
if ((entry->selected) && (entry->url)) {
|
|
|
|
browser_window_create(entry->url, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Continue onwards
|
|
|
|
*/
|
|
|
|
if (entry->child_entry) {
|
|
|
|
ro_gui_hotlist_launch_selection(entry->child_entry);
|
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggles the expanded state for selected icons
|
|
|
|
* If neither expand not contract are set then the entries are toggled
|
|
|
|
*
|
|
|
|
* \param entry the entry to update all siblings and descendants of
|
|
|
|
* \param only_selected whether to only update selected icons
|
2004-07-04 22:44:51 +04:00
|
|
|
* \param folders whether to update folders
|
|
|
|
* \param links whether to update links
|
2004-07-04 18:59:29 +04:00
|
|
|
* \param expand force all entries to be expanded (dominant)
|
|
|
|
* \param contract force all entries to be contracted (recessive)
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_update_expansion(struct hotlist_entry *entry, bool only_selected,
|
2004-07-04 22:44:51 +04:00
|
|
|
bool folders, bool links, bool expand, bool contract) {
|
2004-07-04 18:59:29 +04:00
|
|
|
bool current;
|
|
|
|
/* Check we have an entry (only applies if we have an empty hotlist)
|
|
|
|
*/
|
|
|
|
if (!entry) return;
|
|
|
|
|
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
while (entry) {
|
|
|
|
/* Check this entry
|
|
|
|
*/
|
|
|
|
if ((entry->selected) || (!only_selected)) {
|
|
|
|
current = entry->expanded;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/* Only update what we should
|
2004-07-04 18:59:29 +04:00
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if (((links) && (entry->children != -1)) || ((folders) && (entry->children > 0))) {
|
|
|
|
/* Update the expansion state
|
|
|
|
*/
|
|
|
|
if (expand) {
|
|
|
|
entry->expanded = true;
|
|
|
|
} else if (contract) {
|
|
|
|
entry->expanded = false;
|
|
|
|
} else {
|
|
|
|
entry->expanded = !entry->expanded;
|
|
|
|
}
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* If we have contracted then we de-select and collapse any children
|
|
|
|
*/
|
|
|
|
if (entry->child_entry && !entry->expanded) {
|
2004-07-04 22:44:51 +04:00
|
|
|
ro_gui_hotlist_update_expansion(entry->child_entry, false, true, true, false, true);
|
2004-07-04 18:59:29 +04:00
|
|
|
ro_gui_hotlist_selection_state(entry->child_entry, false, false);
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Redraw the entrys first line
|
|
|
|
*/
|
|
|
|
if (current != entry->expanded) {
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
|
|
|
0, -16384, 16384,
|
|
|
|
entry->y0 + entry->height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Continue onwards (child entries cannot be selected if the parent is
|
|
|
|
not expanded)
|
|
|
|
*/
|
|
|
|
if (entry->child_entry && entry->expanded) {
|
|
|
|
ro_gui_hotlist_update_expansion(entry->child_entry,
|
2004-07-04 22:44:51 +04:00
|
|
|
only_selected, folders, links, expand, contract);
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updated the selection state of the tree
|
|
|
|
*
|
|
|
|
* \param entry the entry to update all siblings and descendants of
|
2004-07-04 18:59:29 +04:00
|
|
|
* \param x0 the left edge of the box
|
|
|
|
* \param y0 the top edge of the box
|
|
|
|
* \param x1 the right edge of the box
|
|
|
|
* \param y1 the bottom edge of the box
|
2004-07-03 21:30:28 +04:00
|
|
|
* \param toggle toggle the selection state, otherwise set
|
|
|
|
* \param redraw update the icons in the Wimp
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_selection_drag(struct hotlist_entry *entry,
|
|
|
|
int x0, int y0, int x1, int y1,
|
|
|
|
bool toggle, bool redraw) {
|
|
|
|
bool do_update;
|
|
|
|
int line;
|
|
|
|
int test_y;
|
|
|
|
|
|
|
|
/* Check we have an entry (only applies if we have an empty hotlist)
|
|
|
|
*/
|
|
|
|
if (!entry) return;
|
|
|
|
|
|
|
|
/* Get the first child entry
|
|
|
|
*/
|
|
|
|
while (entry) {
|
|
|
|
/* Check if this entry could possibly match
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if ((x1 > (entry->x0 + HOTLIST_LEAF_INSET)) && (y0 > entry->y0) &&
|
|
|
|
(x0 < (entry->x0 + entry->width)) &&
|
2004-07-03 21:30:28 +04:00
|
|
|
(y1 < (entry->y0 + entry->height))) {
|
|
|
|
do_update = false;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Check the exact area of the title line
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if ((x1 > (entry->x0 + HOTLIST_LEAF_INSET)) &&
|
|
|
|
(y0 > entry->y0 + entry->height - HOTLIST_LINE_HEIGHT) &&
|
2004-07-03 21:30:28 +04:00
|
|
|
(x0 < (entry->x0 + entry->collapsed_width)) &&
|
|
|
|
(y1 < (entry->y0 + entry->height))) {
|
|
|
|
do_update = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the other lines
|
|
|
|
*/
|
|
|
|
line = 1;
|
2004-07-04 22:44:51 +04:00
|
|
|
test_y = entry->y0 + entry->height - HOTLIST_LINE_HEIGHT;
|
|
|
|
while (((line * HOTLIST_LINE_HEIGHT) < entry->height) && (!do_update)) {
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Check this line
|
|
|
|
*/
|
2004-07-04 22:44:51 +04:00
|
|
|
if ((x1 > (entry->x0 + HOTLIST_LEAF_INSET + HOTLIST_ICON_WIDTH)) &&
|
|
|
|
(y1 < test_y) && (y0 > test_y - HOTLIST_LINE_HEIGHT) &&
|
|
|
|
(x0 < (entry->x0 + entry->widths[line - 1] +
|
|
|
|
HOTLIST_LEAF_INSET + HOTLIST_ICON_WIDTH +
|
|
|
|
HOTLIST_TEXT_PADDING))) {
|
2004-07-03 21:30:28 +04:00
|
|
|
do_update = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to the next line
|
|
|
|
*/
|
|
|
|
line++;
|
2004-07-04 22:44:51 +04:00
|
|
|
test_y -= HOTLIST_LINE_HEIGHT;
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Redraw the entrys first line
|
|
|
|
*/
|
|
|
|
if (do_update) {
|
|
|
|
if (toggle) {
|
|
|
|
entry->selected = !entry->selected;
|
|
|
|
} else {
|
2004-07-04 18:59:29 +04:00
|
|
|
entry->selected = true;
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
|
|
|
if (redraw) {
|
|
|
|
xwimp_force_redraw(hotlist_window,
|
2004-07-04 22:44:51 +04:00
|
|
|
entry->x0,
|
|
|
|
entry->y0 + entry->height - HOTLIST_LINE_HEIGHT,
|
2004-07-03 21:30:28 +04:00
|
|
|
entry->x0 + entry->width,
|
|
|
|
entry->y0 + entry->height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Continue onwards
|
|
|
|
*/
|
|
|
|
if ((entry->child_entry) && (entry->expanded)) {
|
|
|
|
ro_gui_hotlist_selection_drag(entry->child_entry,
|
|
|
|
x0, y0, x1, y1, toggle, redraw);
|
|
|
|
}
|
|
|
|
entry = entry->next_entry;
|
|
|
|
do_update = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The end of a selection drag has been reached
|
|
|
|
*
|
|
|
|
* \param drag the final drag co-ordinates
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_selection_drag_end(wimp_dragged *drag) {
|
|
|
|
wimp_window_state state;
|
2004-07-04 18:59:29 +04:00
|
|
|
int x0, y0, x1, y1;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Get the window state to make everything relative
|
|
|
|
*/
|
|
|
|
state.w = hotlist_window;
|
|
|
|
wimp_get_window_state(&state);
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Create the relative positions
|
|
|
|
*/
|
|
|
|
x0 = drag->final.x0 - state.visible.x0 - state.xscroll;
|
|
|
|
x1 = drag->final.x1 - state.visible.x0 - state.xscroll;
|
|
|
|
y0 = drag->final.y0 - state.visible.y1 - state.yscroll;
|
|
|
|
y1 = drag->final.y1 - state.visible.y1 - state.yscroll;
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
/* Make sure x0 < x1 and y0 > y1
|
|
|
|
*/
|
|
|
|
if (x0 > x1) {
|
|
|
|
x0 ^= x1;
|
|
|
|
x1 ^= x0;
|
|
|
|
x0 ^= x1;
|
|
|
|
}
|
|
|
|
if (y0 < y1) {
|
|
|
|
y0 ^= y1;
|
|
|
|
y1 ^= y0;
|
|
|
|
y0 ^= y1;
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Update the selection state
|
|
|
|
*/
|
|
|
|
if (drag_buttons == (wimp_CLICK_SELECT << 4)) {
|
|
|
|
ro_gui_hotlist_selection_drag(root.child_entry, x0, y0, x1, y1, false, true);
|
|
|
|
} else {
|
|
|
|
ro_gui_hotlist_selection_drag(root.child_entry, x0, y0, x1, y1, true, true);
|
|
|
|
}
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The end of a item moving drag has been reached
|
|
|
|
*
|
|
|
|
* \param drag the final drag co-ordinates
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_move_drag_end(wimp_dragged *drag) {
|
2004-07-04 23:27:42 +04:00
|
|
|
|
2004-07-03 21:30:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-04 22:44:51 +04:00
|
|
|
/**
|
|
|
|
* Handle a menu being closed
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_menu_closed(void) {
|
|
|
|
if (menu_selection) {
|
|
|
|
ro_gui_hotlist_selection_state(root.child_entry, false, true);
|
|
|
|
menu_selection = false;
|
|
|
|
}
|
2004-07-04 23:27:42 +04:00
|
|
|
}
|
2004-07-04 22:44:51 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/**
|
|
|
|
* Handle a keypress
|
|
|
|
*
|
|
|
|
* \param key the key pressed
|
|
|
|
* \return whether the key was processed
|
|
|
|
*/
|
|
|
|
bool ro_gui_hotlist_keypress(int key) {
|
|
|
|
wimp_window_state state;
|
|
|
|
int y;
|
|
|
|
|
|
|
|
/* Handle basic keys
|
|
|
|
*/
|
|
|
|
switch (key) {
|
|
|
|
case 1: /* CTRL+A */
|
|
|
|
ro_gui_hotlist_selection_state(root.child_entry, true, true);
|
|
|
|
return true;
|
|
|
|
case 26: /* CTRL+Z */
|
|
|
|
ro_gui_hotlist_selection_state(root.child_entry, false, true);
|
|
|
|
return true;
|
|
|
|
case 32: /* SPACE */
|
2004-07-04 22:44:51 +04:00
|
|
|
ro_gui_hotlist_update_expansion(root.child_entry, true, true, true, false, false);
|
|
|
|
return true;
|
|
|
|
case wimp_KEY_RETURN:
|
|
|
|
ro_gui_hotlist_launch_selection(root.child_entry);
|
2004-07-04 18:59:29 +04:00
|
|
|
return true;
|
|
|
|
case wimp_KEY_UP:
|
|
|
|
case wimp_KEY_DOWN:
|
|
|
|
case wimp_KEY_PAGE_UP:
|
|
|
|
case wimp_KEY_PAGE_DOWN:
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_UP:
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_DOWN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2004-07-03 21:30:28 +04:00
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
/* Handle keypress scrolling
|
|
|
|
*/
|
|
|
|
state.w = hotlist_window;
|
|
|
|
wimp_get_window_state(&state);
|
2004-07-04 22:44:51 +04:00
|
|
|
y = state.visible.y1 - state.visible.y0 - HOTLIST_LEAF_INSET;
|
2004-07-04 18:59:29 +04:00
|
|
|
switch (key) {
|
|
|
|
case wimp_KEY_UP:
|
2004-07-04 22:44:51 +04:00
|
|
|
state.yscroll += HOTLIST_LEAF_INSET;
|
2004-07-04 18:59:29 +04:00
|
|
|
break;
|
|
|
|
case wimp_KEY_DOWN:
|
2004-07-04 22:44:51 +04:00
|
|
|
state.yscroll -= HOTLIST_LEAF_INSET;
|
2004-07-04 18:59:29 +04:00
|
|
|
break;
|
|
|
|
case wimp_KEY_PAGE_UP:
|
|
|
|
state.yscroll += y;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_PAGE_DOWN:
|
|
|
|
state.yscroll -= y;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_UP:
|
|
|
|
state.yscroll = 1000;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_DOWN:
|
|
|
|
state.yscroll = -0x10000000;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xwimp_open_window((wimp_open *) &state);
|
2004-07-04 23:27:42 +04:00
|
|
|
return true;
|
2004-07-04 18:59:29 +04:00
|
|
|
}
|
2004-07-03 21:30:28 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
2004-07-03 20:28:09 +04:00
|
|
|
/**
|
|
|
|
* Convert the time of the last visit into a human friendly string
|
|
|
|
*
|
|
|
|
* \param last_visit The time of the last visit
|
|
|
|
* \return The string, or NULL on failure
|
|
|
|
*/
|
|
|
|
char *last_visit_to_string(time_t last_visit)
|
|
|
|
{
|
|
|
|
char *buffer, temp[12];
|
|
|
|
time_t now = time(NULL);
|
|
|
|
time_t difference = now - last_visit;
|
|
|
|
int years=0, weeks=0, days=0, hours=0, minutes=0, seconds=0;
|
|
|
|
int len=0;
|
|
|
|
|
|
|
|
if (last_visit < 0) return NULL;
|
|
|
|
|
|
|
|
LOG(("now: %ld last_visit: %ld difference: %ld", now, last_visit, difference));
|
|
|
|
|
|
|
|
years = difference / 31557600; /* seconds in a year */
|
|
|
|
difference -= years * 31557600;
|
|
|
|
|
|
|
|
/* months are a pain so we take the easy option and do weeks ;) */
|
|
|
|
weeks = difference / 604800; /* seconds in a week */
|
|
|
|
difference -= weeks * 604800;
|
|
|
|
|
|
|
|
days = difference / 86400; /* seconds in a day */
|
|
|
|
difference -= days * 86400;
|
|
|
|
|
|
|
|
hours = difference / 3600; /* seconds in an hour */
|
|
|
|
difference -= hours * 3600;
|
|
|
|
|
|
|
|
minutes = difference / 60; /* seconds in a minute */
|
|
|
|
difference -= minutes * 60;
|
|
|
|
|
|
|
|
seconds = difference;
|
|
|
|
|
2004-07-04 18:59:29 +04:00
|
|
|
if (years > 0) len += 8; /* '99 years' */
|
|
|
|
if (weeks > 0) len += 8 + (len > 0 ? 1 : 0); /* '51 weeks' */
|
|
|
|
if (days > 0) len += 6 + (len > 0 ? 1 : 0); /* '6 days' */
|
|
|
|
if (hours > 0) len += 8 + (len > 0 ? 1 : 0); /* '23 hours' */
|
2004-07-03 20:28:09 +04:00
|
|
|
if (minutes > 0) len += 10 + (len > 0 ? 1 : 0); /* '59 minutes' */
|
|
|
|
if (seconds > 0) len += 10 + (len > 0 ? 1 : 0); /* '59 seconds' */
|
|
|
|
len += 4;
|
|
|
|
|
|
|
|
if (years > 99) return NULL;
|
|
|
|
|
|
|
|
buffer = calloc(len+1, sizeof(char));
|
|
|
|
if (!buffer) {
|
|
|
|
warn_user("NoMemory", NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Populate result buffer */
|
|
|
|
if (years > 0) {
|
|
|
|
sprintf(temp, "%d years", years);
|
|
|
|
buffer = strncat(buffer, temp, 8);
|
|
|
|
}
|
|
|
|
if (weeks > 0) {
|
|
|
|
sprintf(temp, "%s%d weeks", years > 0 ? " " : "", weeks);
|
|
|
|
buffer = strncat(buffer, temp, years > 0 ? 9 : 8);
|
|
|
|
}
|
|
|
|
if (days > 0) {
|
|
|
|
sprintf(temp, "%s%d days", weeks > 0 ? " " : "", days);
|
|
|
|
buffer = strncat(buffer, temp, weeks > 0 ? 7 : 6);
|
|
|
|
}
|
|
|
|
if (hours > 0) {
|
|
|
|
sprintf(temp, "%s%d hours", days > 0 ? " " : "", hours);
|
|
|
|
buffer = strncat(buffer, temp, days > 0 ? 9 : 8);
|
|
|
|
}
|
|
|
|
if (minutes > 0) {
|
|
|
|
sprintf(temp, "%s%d minutes", hours > 0 ? " " : "", minutes);
|
|
|
|
buffer = strncat(buffer, temp, hours > 0 ? 11 : 10);
|
|
|
|
}
|
|
|
|
if (seconds > 0) {
|
|
|
|
sprintf(temp, "%s%d seconds", minutes > 0 ? " " : "", seconds);
|
|
|
|
buffer = strncat(buffer, temp, minutes > 0 ? 11 : 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer = strncat(buffer, " ago", 4);
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|