Commit 01451f60 authored by David Brown's avatar David Brown
Browse files

Various bug fixes,new drag selection model and dragndrop compliant autoscroll

parent 2695ac3d
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
#include "Utils.h" #include "Utils.h"
#include "FetchPage.h" #include "FetchPage.h"
#include "Mouse.h"
#include "Save.h" #include "Save.h"
#include "Toolbars.h" #include "Toolbars.h"
#include "URLUtils.h" #include "URLUtils.h"
...@@ -52,6 +53,10 @@ ...@@ -52,6 +53,10 @@
#include "Hotlist.h" #include "Hotlist.h"
/* To be made choices/controls */
#define AUTOSCROLL_DELAY 50
#define HOTLIST_SCROLL_BOUNDARY_SIZE 32
/* Local definitions */ /* Local definitions */
#define HotlistWrite(fn) {written = (fn); if (written < 0) return _kernel_last_oserror();} #define HotlistWrite(fn) {written = (fn); if (written < 0) return _kernel_last_oserror();}
...@@ -176,7 +181,7 @@ static void hotlist_clear_selection (void); ...@@ -176,7 +181,7 @@ static void hotlist_clear_selection (void);
static void hotlist_launch_url (hotlist_item * item); static void hotlist_launch_url (hotlist_item * item);
static _kernel_oserror * hotlist_process_click_on_item (unsigned int itemno, hotlist_item * item, int buttons, int x, int y); static _kernel_oserror * hotlist_process_click_on_item (unsigned int itemno, hotlist_item * item, int buttons, int x, int y);
static _kernel_oserror * hotlist_process_click (int x, int y, int buttons); static _kernel_oserror * hotlist_process_click (int x, int y, int buttons);
static void hotlist_window_preopen (hl_opentype type); static int hotlist_window_preopen (hl_opentype type);
static void hotlist_set_menu_details (ObjectId menuid); static void hotlist_set_menu_details (ObjectId menuid);
static _kernel_oserror * hotlist_save_entries (FILE * fileptr, hotlist_item * list, int type); static _kernel_oserror * hotlist_save_entries (FILE * fileptr, hotlist_item * list, int type);
static void hotlist_lower_tags (char * string); static void hotlist_lower_tags (char * string);
...@@ -184,11 +189,12 @@ static _kernel_oserror * hotlist_load_directory (FILE * fileptr, hotlis ...@@ -184,11 +189,12 @@ static _kernel_oserror * hotlist_load_directory (FILE * fileptr, hotlis
static void hotlist_drag_renderer (hotlist_item * item, unsigned int item_height, unsigned int item_dir_width, unsigned int item_url_width); static void hotlist_drag_renderer (hotlist_item * item, unsigned int item_height, unsigned int item_dir_width, unsigned int item_url_width);
static void hotlist_start_drag (void); static void hotlist_start_drag (void);
static _kernel_oserror * hotlist_modified (unsigned int type); static _kernel_oserror * hotlist_modified (unsigned int type);
static void hotlist_convert_drag_selection (hotlist_item * item);
_kernel_oserror * hotlist_autoscroll (int window);
/* Save Protocol */ /* Save Protocol */
_kernel_oserror * hotlist_initiate_uri_save (hotlist_item *sourceitem); static _kernel_oserror * hotlist_initiate_uri_save (hotlist_item *sourceitem);
_kernel_oserror * hotlist_initiate_html_save (char *filename); static _kernel_oserror * hotlist_initiate_html_save (char *filename);
#ifdef TRACE #ifdef TRACE
...@@ -1500,7 +1506,10 @@ static _kernel_oserror * hotlist_draw_r(hotlist_item *list, unsigned int first_i ...@@ -1500,7 +1506,10 @@ static _kernel_oserror * hotlist_draw_r(hotlist_item *list, unsigned int first_i
/* Construct an icon block for Wimp_PlotIcon. First, icon flags. */ /* Construct an icon block for Wimp_PlotIcon. First, icon flags. */
icon.flags = HOTLIST_SPRITE_ICON_FLAGS; icon.flags = HOTLIST_SPRITE_ICON_FLAGS;
if (list->flags & HOTLIST_G_IS_SELECTED) icon.flags |= WimpIcon_Selected;
if (((list->flags & HOTLIST_G_IS_SELECTED) ? 1 : 0) ^
((list->flags & HOTLIST_G_DRAG_SELECTED) ? 1 : 0)
) icon.flags |= WimpIcon_Selected;
/* Point to the main sprite pool */ /* Point to the main sprite pool */
...@@ -1612,8 +1621,9 @@ static _kernel_oserror * hotlist_draw_r(hotlist_item *list, unsigned int first_i ...@@ -1612,8 +1621,9 @@ static _kernel_oserror * hotlist_draw_r(hotlist_item *list, unsigned int first_i
/* Set the flags accordingly if the text is selected or unselected */ /* Set the flags accordingly if the text is selected or unselected */
if (list->flags & HOTLIST_G_IS_SELECTED) icon.flags = HOTLIST_TEXT_ICON_FLAGS_SELECTED; if (((list->flags & HOTLIST_G_IS_SELECTED) ? 1 : 0) ^
else icon.flags = HOTLIST_TEXT_ICON_FLAGS_UNSELECTED; ((list->flags & HOTLIST_G_DRAG_SELECTED) ? 1 : 0)) icon.flags = HOTLIST_TEXT_ICON_FLAGS_SELECTED;
else icon.flags = HOTLIST_TEXT_ICON_FLAGS_UNSELECTED;
/* Finally, plot the item. */ /* Finally, plot the item. */
...@@ -1897,8 +1907,17 @@ static void hotlist_get_shape(unsigned int *xmin, ...@@ -1897,8 +1907,17 @@ static void hotlist_get_shape(unsigned int *xmin,
unsigned int item_height, item_dir_width, item_url_width; unsigned int item_height, item_dir_width, item_url_width;
int count = 0, temp_width, text_width; int count = 0, temp_width, text_width;
hotlist_item *tempitem; hotlist_item *tempitem;
_kernel_oserror *e;
hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width); e = hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width);
if (e)
{
show_error_ret(e);
*xmin = 0;
*xmax = 0;
return;
}
tempitem = item; tempitem = item;
while(tempitem) while(tempitem)
...@@ -1946,8 +1965,15 @@ static void hotlist_directory_open_close(hotlist_item *item, unsigned int itemno ...@@ -1946,8 +1965,15 @@ static void hotlist_directory_open_close(hotlist_item *item, unsigned int itemno
unsigned int item_height, item_dir_width, item_url_width; unsigned int item_height, item_dir_width, item_url_width;
int top, window_handle; int top, window_handle;
BBox bbox; BBox bbox;
_kernel_oserror *e;
hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width); e = hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width);
if (e)
{
show_error_ret(e);
return;
}
item->flags ^= HOTLIST_D_IS_OPEN; item->flags ^= HOTLIST_D_IS_OPEN;
...@@ -1992,8 +2018,15 @@ static void hotlist_redraw_items(unsigned int firstitem, unsigned int lastitem) ...@@ -1992,8 +2018,15 @@ static void hotlist_redraw_items(unsigned int firstitem, unsigned int lastitem)
unsigned int item_height, item_dir_width, item_url_width; unsigned int item_height, item_dir_width, item_url_width;
BBox bbox; BBox bbox;
int window_handle; int window_handle;
_kernel_oserror *e;
hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width); e = hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width);
if (e)
{
show_error_ret(e);
return;
}
show_error(window_get_wimp_handle(0, hotlist_windowid, &window_handle)); show_error(window_get_wimp_handle(0, hotlist_windowid, &window_handle));
window_get_extent(0, hotlist_windowid, &bbox); window_get_extent(0, hotlist_windowid, &bbox);
...@@ -2159,8 +2192,9 @@ static _kernel_oserror * hotlist_process_click(int x, int y, int buttons) ...@@ -2159,8 +2192,9 @@ static _kernel_oserror * hotlist_process_click(int x, int y, int buttons)
unsigned int item_height, item_dir_width, item_url_width; unsigned int item_height, item_dir_width, item_url_width;
hotlist_item *item; hotlist_item *item;
unsigned int xmin, xmax, itemno; unsigned int xmin, xmax, itemno;
_kernel_oserror *e;
hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width); RetError(hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width));
itemno = -y / item_height; itemno = -y / item_height;
item = hotlist_find_item(hotlist_root->data.directory_content, itemno); item = hotlist_find_item(hotlist_root->data.directory_content, itemno);
...@@ -2186,7 +2220,6 @@ static _kernel_oserror * hotlist_process_click(int x, int y, int buttons) ...@@ -2186,7 +2220,6 @@ static _kernel_oserror * hotlist_process_click(int x, int y, int buttons)
break; break;
case 16: /* Drag adjust */ case 16: /* Drag adjust */
hotlist_clear_selection();
hotlist_selection_box_start(); hotlist_selection_box_start();
break; break;
...@@ -2218,9 +2251,11 @@ static _kernel_oserror * hotlist_process_click(int x, int y, int buttons) ...@@ -2218,9 +2251,11 @@ static _kernel_oserror * hotlist_process_click(int x, int y, int buttons)
/* */ /* */
/* Parameters: opentype */ /* Parameters: opentype */
/* */ /* */
/* Returns: 1 if window was already open, 0 */
/* 0 if it was closed */
/*************************************************/ /*************************************************/
static void hotlist_window_preopen(hl_opentype type) static int hotlist_window_preopen(hl_opentype type)
{ {
unsigned int item_height, item_dir_width, item_url_width; unsigned int item_height, item_dir_width, item_url_width;
unsigned int number, maxlen; unsigned int number, maxlen;
...@@ -2230,26 +2265,59 @@ static void hotlist_window_preopen(hl_opentype type) ...@@ -2230,26 +2265,59 @@ static void hotlist_window_preopen(hl_opentype type)
unsigned int objectstate; unsigned int objectstate;
ObjectId parent_id; ObjectId parent_id;
ComponentId parent_component; ComponentId parent_component;
_kernel_oserror *e;
e = toolbox_get_object_state(0, hotlist_windowid, &objectstate);
if (e)
{
show_error_ret(e);
return 0;
}
if (type == already_open) if (type == already_open)
{ {
toolbox_get_object_state(0, hotlist_windowid, &objectstate); if (!objectstate & Toolbox_GetObjectState_Showing) return 0;
if (!objectstate & Toolbox_GetObjectState_Showing) return;
} }
hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width); e = hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width);
if (e)
{
show_error_ret(e);
return 0;
}
number = hotlist_count_displayed_items(hotlist_root->data.directory_content); number = hotlist_count_displayed_items(hotlist_root->data.directory_content);
maxlen = hotlist_get_max_width(hotlist_root->data.directory_content) + 4; maxlen = hotlist_get_max_width(hotlist_root->data.directory_content) + 4;
show_error(window_get_wimp_handle(0, hotlist_windowid, &state.window_handle)); e = window_get_wimp_handle(0, hotlist_windowid, &state.window_handle);
wimp_get_window_state(&state);
if (e)
{
show_error_ret(e);
return 0;
}
e = wimp_get_window_state(&state);
if (e)
{
show_error_ret(e);
return 0;
}
if (number < HOTLIST_WINDOW_MIN_HEIGHT) number = HOTLIST_WINDOW_MIN_HEIGHT; if (number < HOTLIST_WINDOW_MIN_HEIGHT) number = HOTLIST_WINDOW_MIN_HEIGHT;
if (maxlen < HOTLIST_WINDOW_MIN_WIDTH) maxlen = HOTLIST_WINDOW_MIN_WIDTH; if (maxlen < HOTLIST_WINDOW_MIN_WIDTH) maxlen = HOTLIST_WINDOW_MIN_WIDTH;
if (type == already_open) if (type == already_open)
window_get_extent(0, hotlist_windowid, &bbox); {
e = window_get_extent(0, hotlist_windowid, &bbox);
if (e)
{
show_error_ret(e);
return 0;
}
}
bbox.ymin = -number * item_height; bbox.ymin = -number * item_height;
bbox.xmax = maxlen; bbox.xmax = maxlen;
...@@ -2266,19 +2334,34 @@ static void hotlist_window_preopen(hl_opentype type) ...@@ -2266,19 +2334,34 @@ static void hotlist_window_preopen(hl_opentype type)
bbox.ymax = hotlist_bbar_size; bbox.ymax = hotlist_bbar_size;
bbox.xmin = 0; bbox.xmin = 0;
window_set_extent(0, hotlist_windowid, &bbox); e = window_set_extent(0, hotlist_windowid, &bbox);
if (e)
{
show_error_ret(e);
return 0;
}
if (type == already_open) if (type == already_open)
{ {
show_error(window_get_wimp_handle(0, hotlist_windowid, &state.window_handle)); e = window_get_wimp_handle(0, hotlist_windowid, &state.window_handle);
wimp_get_window_state(&state); if (!e) e = wimp_get_window_state(&state);
toolbox_get_parent(0, hotlist_windowid, &parent_id, &parent_component); if (!e) e = toolbox_get_parent(0, hotlist_windowid, &parent_id, &parent_component);
toolbox_show_object(0, if (!e) e = toolbox_show_object(0, hotlist_windowid, Toolbox_ShowObject_FullSpec, &(state.visible_area), parent_id, parent_component);
hotlist_windowid,
Toolbox_ShowObject_FullSpec, if (e)
&(state.visible_area), {
parent_id, parent_component); show_error_ret(e);
// wimp_open_window((WimpOpenWindowBlock*)&state); return 0;
}
}
if (objectstate & Toolbox_GetObjectState_Showing)
{
return 1;
}
else
{
return 0;
} }
} }
...@@ -2529,20 +2612,21 @@ static _kernel_oserror * hotlist_save_entries(FILE * fileptr, hotlist_item * lis ...@@ -2529,20 +2612,21 @@ static _kernel_oserror * hotlist_save_entries(FILE * fileptr, hotlist_item * lis
{ {
if (type == 0 || !hotlist_no_contents_selected(list->data.directory_content)) if (type == 0 || !hotlist_no_contents_selected(list->data.directory_content))
{ {
HotlistWrite(fprintf(fileptr, "<h4>%s</h4>\n", list->name)); if (type == 0 || (type == 1 && list->flags & HOTLIST_G_IS_SELECTED))
{
/* Recursive call for the directory contents. First, */ HotlistWrite(fprintf(fileptr, "<h4>%s</h4>\n", list->name));
/* write the entry header. */ HotlistWrite(fprintf(fileptr, "<ul>\n"));
}
HotlistWrite(fprintf(fileptr, "<ul>\n")); /* Recursive call for the directory contents First, */
/* write the entry header. */
/* Do the contents */ /* Do the contents */
RetError(hotlist_save_entries(fileptr, list->data.directory_content, type)); RetError(hotlist_save_entries(fileptr, list->data.directory_content, type));
if (type == 0 || (type == 1 && list->flags & HOTLIST_G_IS_SELECTED))
/* Write the entry footer */ {
HotlistWrite(fprintf(fileptr, "</ul>\n"));
HotlistWrite(fprintf(fileptr, "</ul>\n")); }
} }
} }
break; break;
...@@ -2588,6 +2672,7 @@ _kernel_oserror * hotlist_save_hotlist(char * filename, int type) ...@@ -2588,6 +2672,7 @@ _kernel_oserror * hotlist_save_hotlist(char * filename, int type)
HotlistWrite(fprintf(fileptr, "<html>\n")); HotlistWrite(fprintf(fileptr, "<html>\n"));
HotlistWrite(fprintf(fileptr, "<head><title>Hotlist</title></head>\n")); HotlistWrite(fprintf(fileptr, "<head><title>Hotlist</title></head>\n"));
HotlistWrite(fprintf(fileptr, "<body>\n")); HotlistWrite(fprintf(fileptr, "<body>\n"));
HotlistWrite(fprintf(fileptr, "<ul>\n"));
/* Fill in the body */ /* Fill in the body */
...@@ -2602,6 +2687,7 @@ _kernel_oserror * hotlist_save_hotlist(char * filename, int type) ...@@ -2602,6 +2687,7 @@ _kernel_oserror * hotlist_save_hotlist(char * filename, int type)
/* Write the footer and close the file */ /* Write the footer and close the file */
HotlistWrite(fprintf(fileptr, "</ul>\n"));
HotlistWrite(fprintf(fileptr, "</body>\n")); HotlistWrite(fprintf(fileptr, "</body>\n"));
HotlistWrite(fprintf(fileptr, "</html>\n")); HotlistWrite(fprintf(fileptr, "</html>\n"));
...@@ -3019,6 +3105,7 @@ _kernel_oserror * hotlist_initialise(void) ...@@ -3019,6 +3105,7 @@ _kernel_oserror * hotlist_initialise(void)
ObjectId toolbar; ObjectId toolbar;
ObjectId menu_id; ObjectId menu_id;
BBox bbox; BBox bbox;
unsigned int item_height, item_dir_width, item_url_width;
/* Create root directory item */ /* Create root directory item */
...@@ -3047,6 +3134,10 @@ _kernel_oserror * hotlist_initialise(void) ...@@ -3047,6 +3134,10 @@ _kernel_oserror * hotlist_initialise(void)
} }
else hotlist_bbar_size = 0; else hotlist_bbar_size = 0;
/* Read sprite sizes to see if the sprites actually exist */
RetError(hotlist_get_entry_sizes(&item_height, &item_dir_width, &item_url_width));
/* Register event handlers for redraw, clicks and drags in the */ /* Register event handlers for redraw, clicks and drags in the */
/* main hotlist window. */ /* main hotlist window. */
...@@ -3188,22 +3279,34 @@ _kernel_oserror * hotlist_initialise(void) ...@@ -3188,22 +3279,34 @@ _kernel_oserror * hotlist_initialise(void)
_kernel_oserror * hotlist_open(int show_type, void * type, int show_urls) _kernel_oserror * hotlist_open(int show_type, void * type, int show_urls)
{ {
int open, old_show_urls;
_kernel_oserror *e;
old_show_urls = hl_show_urls;
/* Sets show descriptions / show URLs */ /* Sets show descriptions / show URLs */
hl_show_urls = show_urls; hl_show_urls = show_urls;
/* Set the size of the window etc. */ /* Set the size of the window etc. */
hotlist_window_preopen(not_open); open = hotlist_window_preopen(not_open);
/* Show the hotlist */ /* Show the hotlist */
return toolbox_show_object(0, e = toolbox_show_object(0,
hotlist_windowid, hotlist_windowid,
show_type, show_type,
type, type,
0, 0,
0); 0);
if (!e && open && hl_show_urls != old_show_urls)
{
hotlist_redraw_items(0, hotlist_count_displayed_items(hotlist_root->data.directory_content));
}
return e;
} }
/*************************************************/ /*************************************************/
...@@ -3888,6 +3991,7 @@ void hotlist_start_drag(void) ...@@ -3888,6 +3991,7 @@ void hotlist_start_drag(void)
return; return;
} }
/* Register NULL handler */ /* Register NULL handler */
show_error_ret(hotlist_autoscroll(0)); /* Reset autoscroll */
register_null_claimant(Wimp_ENull, hotlist_null_handler, NULL); register_null_claimant(Wimp_ENull, hotlist_null_handler, NULL);
} }
...@@ -3943,6 +4047,8 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event, ...@@ -3943,6 +4047,8 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event,
if (!hotlist_dragging) return 0; if (!hotlist_dragging) return 0;
show_error_ret(hotlist_autoscroll(0)); /* Reset autoscrolling (To remove pointer if necessary) */
switch(hotlist_dragging) switch(hotlist_dragging)
{ {
case HOTLIST_SOLID_DRAG_OBJECT: case HOTLIST_SOLID_DRAG_OBJECT:
...@@ -3955,7 +4061,9 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event, ...@@ -3955,7 +4061,9 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event,
case HOTLIST_BOX_DRAG_SELECTION: case HOTLIST_BOX_DRAG_SELECTION:
deregister_null_claimant(Wimp_ENull, hotlist_null_drag_select_handler, NULL); deregister_null_claimant(Wimp_ENull, hotlist_null_drag_select_handler, NULL);
return 0; /* No action taken at end of drag, selection is done by null handler during drag */ hotlist_convert_drag_selection(hotlist_root->data.directory_content);
return 0;
break; break;
default: default:
...@@ -4077,14 +4185,12 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event, ...@@ -4077,14 +4185,12 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event,
if (hotlist_count_selected_items() == 1 && (sourceitem = hotlist_find_selected_item())->type == hl_url) if (hotlist_count_selected_items() == 1 && (sourceitem = hotlist_find_selected_item())->type == hl_url)
{ {
/* Dropped in non hotlist window - save as a URI file */ /* Dropped in non hotlist window - save as a URI file */
hotlist_initiate_uri_save(sourceitem); hotlist_initiate_uri_save(sourceitem);
} }
else else
{ {
/* Can't save URI file when saving more than one URL so save HTML file instead*/ /* Can't save URI file when saving more than one URL so save HTML file instead*/
hotlist_initiate_html_save("Hotlist"); hotlist_initiate_html_save("Hotlist");
} }
/* Drag was dropped in non-hotlist window */ /* Drag was dropped in non-hotlist window */
} }
...@@ -4092,99 +4198,208 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event, ...@@ -4092,99 +4198,208 @@ static int hotlist_drag_completed_handler(int event_code, WimpPollBlock *event,
return 0; return 0;
} }
void hotlist_autoscroll(int x, int y, int window_handle) /*************************************************/
/* hotlist_autoscroll() */
/* */
/* Auto scrolls a window */
/* */
/* Parameters: handle of toolbox window to */
/* scroll or 0 to reset autoscroll */
/*************************************************/
_kernel_oserror *hotlist_autoscroll(int window)
{ {
ObjectId object, parent; ObjectId parent;
ComponentId component; ComponentId component;
int scroll_changed; int scroll_changed;
WimpGetWindowStateBlock state; WimpGetWindowStateBlock state;
BBox extent; BBox extent;
static unsigned int hscroll_speed, vscroll_speed; /* Separate h/v velocities */ int x, y;
static int last_window_handle = 0; int position;
int autoscroll_newtime;
/* No error as autoscroll not working is not a major problem */ _kernel_oserror *e;
if (window_wimp_to_toolbox(0, window_handle, -1, &object, NULL)) return; ObjectId over_window;
state.window_handle = window_handle; static unsigned int scrolling, autoscroll_oldtime, mouse_shape = Mouse_Shape_Normal;
if (last_window_handle != window_handle) if (!window)
{ {
last_window_handle = window_handle; #ifdef TRACE
hscroll_speed = 0; Printf("hotlist_autoscroll: resetting\n");
vscroll_speed = 0; #endif
scrolling = 0;
mouse_set_pointer_shape(Mouse_Shape_Normal);
mouse_shape = Mouse_Shape_Normal;
return _swix(OS_ReadMonotonicTime, _OUTR(0, 0), &autoscroll_oldtime);
} }
wimp_get_window_state(&state); /* What window is the pointer over? */
RetError(window_get_pointer_info(0, &x, &y, NULL, &over_window, NULL));
window_get_extent(0, object, &extent); RetError(window_get_wimp_handle(0, window, &state.window_handle));
RetError(wimp_get_window_state(&state));
RetError(window_get_extent(0, window, &extent));
/* Auto scrolling of hotlist window when dragging */
scroll_changed = 0; scroll_changed = 0;
if ((y > state.visible_area.ymax - HOTLIST_SCROLL_BOUNDARY_SIZE) && y < state.visible_area.ymax)
if ((x < state.visible_area.xmin) ||
(x > state.visible_area.xmax) ||
(y < state.visible_area.ymin) ||
(y > state.visible_area.ymax))
{ {
/* Don't scroll if already at bottom edge */ position = 0; /* Outside visible area */
if (state.yscroll < extent.ymax)
{
state.yscroll += vscroll_speed;
scroll_changed |= 1;
}
} }
else else
if ((y < state.visible_area.ymin + HOTLIST_SCROLL_BOUNDARY_SIZE) && y > state.visible_area.ymin) if ((x > state.visible_area.xmin + HOTLIST_SCROLL_BOUNDARY_SIZE) &&
(x < state.visible_area.xmax - HOTLIST_SCROLL_BOUNDARY_SIZE) &&
(y > state.visible_area.ymin + HOTLIST_SCROLL_BOUNDARY_SIZE) &&
(y < state.visible_area.ymax - HOTLIST_SCROLL_BOUNDARY_SIZE))
{
position = 1; /* Inside non scrolling region */
}
else
{
position = 2; /* Inside scrolling region */
}
#ifdef TRACE
Printf("Pointer is ");
switch(position)
{
case 0:
Printf("Outside visible area");
break;
case 1:
Printf("inside non scrolling region");
break;
case 2:
Printf("Inside scrolling region");
break;
}
Printf(" of scrolling window\n");
Printf("scrolling = %d\n", scrolling);
#endif
if (!scrolling)
{
if (window == over_window)
{ {
/* Don't scroll if already at top edge */ if (position == 2)
if (state.yscroll > extent.ymin + (state.visible_area.ymax - state.visible_area.ymin)) ///////
{ {
state.yscroll -= vscroll_speed; /* Check timer, see if it's time to start scrolling */
scroll_changed |= 1; RetError(_swix(OS_ReadMonotonicTime, _OUTR(0, 0), &autoscroll_newtime));
if ((autoscroll_newtime - autoscroll_oldtime) > AUTOSCROLL_DELAY)
{
if (mouse_shape != Mouse_Shape_Scrolling)
{
mouse_set_pointer_shape(Mouse_Shape_Scrolling);
mouse_shape = Mouse_Shape_Scrolling;
}
scrolling = 1;
}
else
{
if (mouse_shape != Mouse_Shape_ToScroll)
{
mouse_shape = Mouse_Shape_ToScroll;
mouse_set_pointer_shape(Mouse_Shape_ToScroll);
}
}
}
else
{
/* Set scroll timer to zero */
RetError(_swix(OS_ReadMonotonicTime, _OUTR(0, 0), &autoscroll_oldtime));
if (mouse_shape != Mouse_Shape_Normal)
{
mouse_set_pointer_shape(Mouse_Shape_Normal);
mouse_shape = Mouse_Shape_Normal;
}
} }
} }
else
if ((x > state.visible_area.xmax - HOTLIST_SCROLL_BOUNDARY_SIZE) && x < state.visible_area.xmax)
{
/* Don't scroll if already at right hand edge */
if (state.xscroll < extent.xmax - (state.visible_area.xmax - state.visible_area.xmin)) ///////
{ {
state.xscroll += hscroll_speed; RetError(_swix(OS_ReadMonotonicTime, _OUTR(0, 0), &autoscroll_oldtime));
scroll_changed |= 2; if (mouse_shape != Mouse_Shape_Normal)
{
mouse_set_pointer_shape(Mouse_Shape_Normal);
mouse_shape = Mouse_Shape_Normal;
}
} }
} }
else else
if ((x < state.visible_area.xmin + HOTLIST_SCROLL_BOUNDARY_SIZE) && x > state.visible_area.xmin) {
if (position == 1)
{ {
/* Don't scroll if already at left hand edge */ /* Stop scrolling */
if (state.xscroll > extent.xmin) scrolling = 0;
RetError(_swix(OS_ReadMonotonicTime, _OUTR(0, 0), &autoscroll_oldtime));
if (mouse_shape != Mouse_Shape_Normal)
{ {
state.xscroll -= hscroll_speed; mouse_set_pointer_shape(Mouse_Shape_Normal);
scroll_changed |= 2; mouse_shape = Mouse_Shape_Normal;
} }
} }
else
{
/* Scroll a bit */
if (scroll_changed) if (y > state.visible_area.ymax - HOTLIST_SCROLL_BOUNDARY_SIZE)
{ {
toolbox_get_parent(0, object, &parent, &component); /* Top */
toolbox_show_object(0, object, Toolbox_ShowObject_FullSpec, &(state.visible_area), parent, component); if (state.yscroll < extent.ymax)
} {
scroll_changed = 1;
state.yscroll += (y - (state.visible_area.ymax - HOTLIST_SCROLL_BOUNDARY_SIZE));
}
}
else
{
if (y < state.visible_area.ymin + HOTLIST_SCROLL_BOUNDARY_SIZE)
{
/* Bottom */
if (scroll_changed & 1) if (state.yscroll > extent.ymin + (state.visible_area.ymax - state.visible_area.ymin))
{ {
vscroll_speed += HOTLIST_SCROLL_SPEED_INC; scroll_changed = 1;
if (vscroll_speed > HOTLIST_SCROLL_SPEED_MAX) vscroll_speed = HOTLIST_SCROLL_SPEED_MAX; state.yscroll -= ((state.visible_area.ymin + HOTLIST_SCROLL_BOUNDARY_SIZE) - y);
} }
else }
{ }
vscroll_speed = HOTLIST_SCROLL_SPEED_MIN;
}
if (scroll_changed & 2) if (x > state.visible_area.xmax - HOTLIST_SCROLL_BOUNDARY_SIZE)
{ {
hscroll_speed += HOTLIST_SCROLL_SPEED_INC; /* Right */
if (hscroll_speed > HOTLIST_SCROLL_SPEED_MAX) hscroll_speed = HOTLIST_SCROLL_SPEED_MAX; if (state.xscroll < extent.xmax - (state.visible_area.xmax - state.visible_area.xmin))
{
scroll_changed = 1;
state.xscroll += (x - (state.visible_area.xmax - HOTLIST_SCROLL_BOUNDARY_SIZE));
}
}
else
{
if (x < state.visible_area.xmin + HOTLIST_SCROLL_BOUNDARY_SIZE)
{
/* Left */
if (state.xscroll > extent.xmin)
{
scroll_changed = 1;
state.xscroll -= ((state.visible_area.xmin + HOTLIST_SCROLL_BOUNDARY_SIZE) - x);
}
}
}
}
} }
else
if (scroll_changed)
{ {
hscroll_speed = HOTLIST_SCROLL_SPEED_MIN; RetError(toolbox_get_parent(0, window, &parent, &component));
RetError(toolbox_show_object(0, window, Toolbox_ShowObject_FullSpec, &(state.visible_area), parent, component));
} }
return NULL;
} }
/*************************************************/ /*************************************************/
...@@ -4207,12 +4422,12 @@ static int hotlist_null_handler(int event_code, WimpPollBlock *event, IdBlock *i ...@@ -4207,12 +4422,12 @@ static int hotlist_null_handler(int event_code, WimpPollBlock *event, IdBlock *i
window_get_pointer_info(0, &x, &y, &buttons, &window, &component); window_get_pointer_info(0, &x, &y, &buttons, &window, &component);
show_error_ret(hotlist_autoscroll(hotlist_windowid));
if (window == hotlist_windowid) if (window == hotlist_windowid)
{ {
window_get_wimp_handle(0, window, &state.window_handle); window_get_wimp_handle(0, window, &state.window_handle);
hotlist_autoscroll(x, y, state.window_handle);
/* Display arrow pointing into directory to say that dropping */ /* Display arrow pointing into directory to say that dropping */
/* here will put in directory rather than next to it */ /* here will put in directory rather than next to it */
wimp_get_window_state(&state); wimp_get_window_state(&state);
...@@ -4292,7 +4507,7 @@ static int hotlist_null_handler(int event_code, WimpPollBlock *event, IdBlock *i ...@@ -4292,7 +4507,7 @@ static int hotlist_null_handler(int event_code, WimpPollBlock *event, IdBlock *i
/* Simple non-scrolling selection box, to be improved later */ /* Simple non-scrolling selection box, to be improved later */
/* Workarea relative corner of selection box may not be needed later */ /* Workarea relative corner of selection box may not be needed later */
static int selection_x, selection_y; static int selection_x, selection_y; ////////////
/*************************************************/ /*************************************************/
/* hotlist_start_drag() */ /* hotlist_start_drag() */
...@@ -4301,7 +4516,7 @@ static int selection_x, selection_y; ...@@ -4301,7 +4516,7 @@ static int selection_x, selection_y;
/* box operation in the hotlist window. */ /* box operation in the hotlist window. */
/*************************************************/ /*************************************************/
_kernel_oserror *hotlist_selection_box_start(void) static _kernel_oserror *hotlist_selection_box_start(void)
{ {
_kernel_oserror *err; _kernel_oserror *err;
WimpDragBox box; WimpDragBox box;
...@@ -4347,7 +4562,7 @@ _kernel_oserror *hotlist_selection_box_start(void) ...@@ -4347,7 +4562,7 @@ _kernel_oserror *hotlist_selection_box_start(void)
/* handler. */ /* handler. */
/*************************************************/ /*************************************************/
int hotlist_null_drag_select_handler(int event_code, WimpPollBlock * event, IdBlock * id_block, void * handle) static int hotlist_null_drag_select_handler(int event_code, WimpPollBlock * event, IdBlock * id_block, void * handle)
{ {
WimpGetPointerInfoBlock pointerblock; WimpGetPointerInfoBlock pointerblock;
unsigned int item_height, item_dir_width, item_url_width; unsigned int item_height, item_dir_width, item_url_width;
...@@ -4396,39 +4611,39 @@ int hotlist_null_drag_select_handler(int event_code, WimpPollBlock * event, IdBl ...@@ -4396,39 +4611,39 @@ int hotlist_null_drag_select_handler(int event_code, WimpPollBlock * event, IdBl
hotlist_get_shape(&itemxmin, &itemxmax, item); hotlist_get_shape(&itemxmin, &itemxmax, item);
if ((!(maxx < itemxmin || minx > itemxmax))) if ((!(maxx < itemxmin || minx > itemxmax)))
{ {
if (!(item->flags & HOTLIST_G_IS_SELECTED)) if (!(item->flags & HOTLIST_G_DRAG_SELECTED))
{ {
item->flags |= HOTLIST_G_IS_SELECTED; item->flags |= HOTLIST_G_DRAG_SELECTED;
hotlist_redraw_items(itemno, itemno); hotlist_redraw_items(itemno, itemno);
if (item->type == hl_directory && !(item->flags & HOTLIST_D_IS_OPEN)) /* If directory is closed select everything in it */ if (item->type == hl_directory && !(item->flags & HOTLIST_D_IS_OPEN)) /* If directory is closed select everything in it */
{ {
hotlist_set_flags(item->data.directory_content, hl_ALL, HOTLIST_G_IS_SELECTED); hotlist_set_flags(item->data.directory_content, hl_ALL, HOTLIST_G_DRAG_SELECTED);
hotlist_clear_flags(item->data.directory_content, hl_ALL, HOTLIST_G_REDRAW_NOW); hotlist_clear_flags(item->data.directory_content, hl_ALL, HOTLIST_G_REDRAW_NOW);
} }
} }
} }
else else
{ {
if (item->flags & HOTLIST_G_IS_SELECTED) if (item->flags & HOTLIST_G_DRAG_SELECTED)
{ {
item->flags &= ~HOTLIST_G_IS_SELECTED; item->flags &= ~HOTLIST_G_DRAG_SELECTED;
hotlist_redraw_items(itemno, itemno); hotlist_redraw_items(itemno, itemno);
if (item->type == hl_directory && !(item->flags & HOTLIST_D_IS_OPEN)) /* If directory is closed unselect everything in it */ if (item->type == hl_directory && !(item->flags & HOTLIST_D_IS_OPEN)) /* If directory is closed unselect everything in it */
{ {
hotlist_clear_flags(item->data.directory_content, hl_ALL, HOTLIST_G_IS_SELECTED | HOTLIST_G_REDRAW_NOW); hotlist_clear_flags(item->data.directory_content, hl_ALL, HOTLIST_G_DRAG_SELECTED | HOTLIST_G_REDRAW_NOW);
} }
} }
} }
} }
else else
{ {
if (item->flags & HOTLIST_G_IS_SELECTED) if (item->flags & HOTLIST_G_DRAG_SELECTED)
{ {
item->flags &= ~HOTLIST_G_IS_SELECTED; item->flags &= ~HOTLIST_G_DRAG_SELECTED;
hotlist_redraw_items(itemno, itemno); hotlist_redraw_items(itemno, itemno);
if (item->type == hl_directory && !(item->flags & HOTLIST_D_IS_OPEN)) /* If directory is closed unselect everything in it */ if (item->type == hl_directory && !(item->flags & HOTLIST_D_IS_OPEN)) /* If directory is closed unselect everything in it */
{ {
hotlist_clear_flags(item->data.directory_content, hl_ALL, HOTLIST_G_IS_SELECTED | HOTLIST_G_REDRAW_NOW); hotlist_clear_flags(item->data.directory_content, hl_ALL, HOTLIST_G_DRAG_SELECTED | HOTLIST_G_REDRAW_NOW);
} }
} }
} }
...@@ -4537,6 +4752,40 @@ static int hotlist_show_urls_handler(int event_code, ToolboxEvent *event, IdBloc ...@@ -4537,6 +4752,40 @@ static int hotlist_show_urls_handler(int event_code, ToolboxEvent *event, IdBloc
return 1; return 1;
} }
/*************************************************/
/* hotlist_convert_drag_selection() */
/* */
/* Recurses through the hotlist_item structure */
/* altering all 'HOTLIST_G_DRAG_SELECTED' items */
/* to have 'HOTLIST_G_IS_SELECTED' set or unset */
/* as is appropriate. ie. (effectivly eor'd) */
/* dragselected and selected = unselected */
/* dragselected = selected */
/* selected = selected */
/* neither = unselected */
/* */
/* Parameters: Pointer to hotlist_item */
/*************************************************/
static void hotlist_convert_drag_selection(hotlist_item *item)
{
while(item)
{
if (item->flags & HOTLIST_G_DRAG_SELECTED)
{
item->flags &= ~HOTLIST_G_DRAG_SELECTED;
if (item->flags & HOTLIST_G_IS_SELECTED) item->flags &= ~HOTLIST_G_IS_SELECTED;
else item->flags |= HOTLIST_G_IS_SELECTED;
}
if (item->type == hl_directory)
{
hotlist_convert_drag_selection(item->data.directory_content);
}
item = item->next;
}
}
/*************************************************/ /*************************************************/
/* hotlist_modified() */ /* hotlist_modified() */
/* */ /* */
...@@ -4548,15 +4797,21 @@ static _kernel_oserror *hotlist_modified(unsigned int type) ...@@ -4548,15 +4797,21 @@ static _kernel_oserror *hotlist_modified(unsigned int type)
return NULL; return NULL;
} }
/* Data transfer routines follow */
_kernel_oserror *hotlist_initiate_uri_save(hotlist_item *item) /*************************************************/
/* hotlist_initiate_uri_save() */
/*************************************************/
static _kernel_oserror *hotlist_initiate_uri_save(hotlist_item *item)
{ {
WimpGetPointerInfoBlock block; WimpGetPointerInfoBlock block;
WimpMessage message; WimpMessage message;
int new_task_handle; int new_task_handle;
_kernel_oserror *e;
wimp_get_pointer_info(&block); RetError(wimp_get_pointer_info(&block));
message.hdr.size = sizeof(WimpMessage); message.hdr.size = sizeof(WimpMessage);
message.hdr.your_ref = 0; message.hdr.your_ref = 0;
...@@ -4570,11 +4825,11 @@ _kernel_oserror *hotlist_initiate_uri_save(hotlist_item *item) ...@@ -4570,11 +4825,11 @@ _kernel_oserror *hotlist_initiate_uri_save(hotlist_item *item)
message.data.data_save.file_type = 0xf91; /* URI file - to be replaced with a defined value */ message.data.data_save.file_type = 0xf91; /* URI file - to be replaced with a defined value */
urlutils_leafname_from_url(item->data.url, message.data.data_save.leaf_name, 212); urlutils_leafname_from_url(item->data.url, message.data.data_save.leaf_name, 212);
wimp_send_message(Wimp_EUserMessageRecorded, RetError(wimp_send_message(Wimp_EUserMessageRecorded,
&message, &message,
block.window_handle, block.window_handle,
block.icon_handle, block.icon_handle,
&new_task_handle); &new_task_handle));
hotlist_save_item = item; hotlist_save_item = item;
hotlist_ram_transfer_sent = 0; hotlist_ram_transfer_sent = 0;
...@@ -4583,13 +4838,18 @@ _kernel_oserror *hotlist_initiate_uri_save(hotlist_item *item) ...@@ -4583,13 +4838,18 @@ _kernel_oserror *hotlist_initiate_uri_save(hotlist_item *item)
return NULL; return NULL;
} }
_kernel_oserror *hotlist_initiate_html_save(char *filename) /*************************************************/
/* hotlist_initiate_html_save() */
/*************************************************/
static _kernel_oserror *hotlist_initiate_html_save(char *filename)
{ {
WimpGetPointerInfoBlock block; WimpGetPointerInfoBlock block;
WimpMessage message; WimpMessage message;
int new_task_handle; int new_task_handle;
_kernel_oserror *e;
wimp_get_pointer_info(&block); RetError(wimp_get_pointer_info(&block));
message.hdr.size = sizeof(WimpMessage); message.hdr.size = sizeof(WimpMessage);
message.hdr.your_ref = 0; message.hdr.your_ref = 0;
...@@ -4604,11 +4864,11 @@ _kernel_oserror *hotlist_initiate_html_save(char *filename) ...@@ -4604,11 +4864,11 @@ _kernel_oserror *hotlist_initiate_html_save(char *filename)
strncpy(message.data.data_save.leaf_name, filename, 212); strncpy(message.data.data_save.leaf_name, filename, 212);
wimp_send_message(Wimp_EUserMessageRecorded, RetError(wimp_send_message(Wimp_EUserMessageRecorded,
&message, &message,
block.window_handle, block.window_handle,
block.icon_handle, block.icon_handle,
&new_task_handle); &new_task_handle));
hotlist_ram_transfer_sent = 0; hotlist_ram_transfer_sent = 0;
hotlist_save_type = HL_SAVE_HTML; hotlist_save_type = HL_SAVE_HTML;
...@@ -4616,7 +4876,11 @@ _kernel_oserror *hotlist_initiate_html_save(char *filename) ...@@ -4616,7 +4876,11 @@ _kernel_oserror *hotlist_initiate_html_save(char *filename)
return NULL; return NULL;
} }
int hotlist_data_save_ack_handler(WimpMessage *message, void *handle) /*************************************************/
/* hotlist_data_save_ack_handler() */
/*************************************************/
static int hotlist_data_save_ack_handler(WimpMessage *message, void *handle)
{ {
FILE *fileptr; FILE *fileptr;
int new_task_handle; int new_task_handle;
...@@ -4728,13 +4992,16 @@ int hotlist_data_save_ack_handler(WimpMessage *message, void *handle) ...@@ -4728,13 +4992,16 @@ int hotlist_data_save_ack_handler(WimpMessage *message, void *handle)
return 0; return 0;
} }
/*************************************************/
/* hotlist_ram_fetch_handler() */
/*************************************************/
int hotlist_ram_fetch_handler(WimpMessage *message, void *handle) static int hotlist_ram_fetch_handler(WimpMessage *message, void *handle)
{ {
int left, towrite, new_task_handle; int left, towrite, new_task_handle;
_kernel_oserror *e; _kernel_oserror *e;
if (hotlist_save_item) if (hotlist_save_type == HL_SAVE_URI && hotlist_save_item)
{ {
/* Calculate the number of bytes left to send */ /* Calculate the number of bytes left to send */
/* Don't include the terminating null as it is not required for URI files*/ /* Don't include the terminating null as it is not required for URI files*/
......
...@@ -106,6 +106,7 @@ ...@@ -106,6 +106,7 @@
#define HOTLIST_G_IS_SELECTED (1<<0) #define HOTLIST_G_IS_SELECTED (1<<0)
#define HOTLIST_G_REDRAW_NOW (1<<1) #define HOTLIST_G_REDRAW_NOW (1<<1)
#define HOTLIST_G_DRAG_SELECTED (1<<2)
#define HOTLIST_D_IS_OPEN (1<<16) #define HOTLIST_D_IS_OPEN (1<<16)
#define HOTLIST_D_IS_HIGHLIGHTED (1<<17) #define HOTLIST_D_IS_HIGHLIGHTED (1<<17)
...@@ -163,11 +164,6 @@ ...@@ -163,11 +164,6 @@
#define URL_SPRITE "small_b28" #define URL_SPRITE "small_b28"
#define SELECTION_SPRITE "package" #define SELECTION_SPRITE "package"
#define HOTLIST_SCROLL_BOUNDARY_SIZE 32
#define HOTLIST_SCROLL_SPEED_MIN 8
#define HOTLIST_SCROLL_SPEED_INC 8
#define HOTLIST_SCROLL_SPEED_MAX 128
#define HL_MODIFIED_ADD 0 #define HL_MODIFIED_ADD 0
#define HL_MODIFIED_DELETE 1 #define HL_MODIFIED_DELETE 1
#define HL_MODIFIED_MOVE 2 #define HL_MODIFIED_MOVE 2
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment