2008-08-02 18:31:32 +04:00
|
|
|
/*
|
2010-12-19 15:49:41 +03:00
|
|
|
* Copyright 2008 - 2010 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-12-30 03:53:11 +03:00
|
|
|
#include "amiga/os3support.h"
|
|
|
|
|
2008-09-28 00:55:11 +04:00
|
|
|
#include <proto/window.h>
|
|
|
|
#include <proto/layout.h>
|
2010-10-05 23:14:46 +04:00
|
|
|
#include <proto/space.h>
|
|
|
|
#include <proto/label.h>
|
|
|
|
#include <proto/scroller.h>
|
2008-09-28 00:55:11 +04:00
|
|
|
#include <classes/window.h>
|
2010-10-05 23:14:46 +04:00
|
|
|
#include <gadgets/space.h>
|
|
|
|
#include <images/label.h>
|
2008-09-28 00:55:11 +04:00
|
|
|
#include <gadgets/layout.h>
|
2010-10-05 23:14:46 +04:00
|
|
|
#include <gadgets/scroller.h>
|
2008-09-28 00:55:11 +04:00
|
|
|
#include <reaction/reaction_macros.h>
|
|
|
|
#include "amiga/gui.h"
|
|
|
|
#include "content/urldb.h"
|
|
|
|
#include <proto/exec.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <proto/intuition.h>
|
|
|
|
#include "amiga/tree.h"
|
2008-10-12 01:38:04 +04:00
|
|
|
#include <proto/button.h>
|
|
|
|
#include <gadgets/button.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "utils/messages.h"
|
2008-10-19 17:01:01 +04:00
|
|
|
#include <proto/bitmap.h>
|
|
|
|
#include <images/bitmap.h>
|
2010-10-05 23:14:46 +04:00
|
|
|
#include <proto/graphics.h>
|
|
|
|
#include <intuition/icclass.h>
|
|
|
|
#include <proto/asl.h>
|
|
|
|
#include <proto/utility.h>
|
|
|
|
#include <libraries/gadtools.h>
|
|
|
|
#include <proto/dos.h>
|
|
|
|
#include "amiga/utf8.h"
|
|
|
|
#include "desktop/cookies.h"
|
|
|
|
#include "desktop/history_global_core.h"
|
|
|
|
#include "desktop/hotlist.h"
|
2010-11-04 00:00:07 +03:00
|
|
|
#include "desktop/tree_url_node.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "amiga/sslcert.h"
|
2010-10-30 15:20:53 +04:00
|
|
|
#include "amiga/drag.h" /* drag icon stuff */
|
2010-10-24 21:51:00 +04:00
|
|
|
#include "amiga/theme.h" /* pointers */
|
2010-10-30 18:23:38 +04:00
|
|
|
#include "amiga/filetype.h"
|
2010-12-19 15:04:35 +03:00
|
|
|
#include "amiga/options.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "utils/utils.h"
|
|
|
|
|
2010-12-19 15:04:35 +03:00
|
|
|
#define AMI_TREE_MENU_ITEMS 21
|
2010-12-19 15:49:41 +03:00
|
|
|
#define AMI_TREE_MENU_DELETE FULLMENUNUM(1,0,0)
|
|
|
|
#define AMI_TREE_MENU_CLEAR FULLMENUNUM(1,3,0)
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
struct treeview_window {
|
|
|
|
struct Window *win;
|
2011-07-23 18:06:13 +04:00
|
|
|
Object *objects[GID_LAST];
|
|
|
|
// struct Gadget *gadgets[GID_LAST];
|
2010-10-05 23:14:46 +04:00
|
|
|
struct nsObject *node;
|
|
|
|
int type;
|
|
|
|
struct NewMenu *menu;
|
|
|
|
char *menu_name[AMI_TREE_MENU_ITEMS];
|
|
|
|
struct tree *tree;
|
|
|
|
struct Hook scrollerhook;
|
2010-12-30 03:33:18 +03:00
|
|
|
uint32 key_state;
|
|
|
|
uint32 mouse_state;
|
2010-10-05 23:14:46 +04:00
|
|
|
int drag_x;
|
|
|
|
int drag_y;
|
|
|
|
struct timeval lastclick;
|
|
|
|
int max_width;
|
|
|
|
int max_height;
|
|
|
|
struct gui_globals globals;
|
|
|
|
struct sslcert_session_data *ssl_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ami_tree_draw(struct treeview_window *twin);
|
|
|
|
static void ami_tree_redraw_request(int x, int y, int width, int height,
|
|
|
|
void *data);
|
|
|
|
static void ami_tree_resized(struct tree *tree, int width,
|
|
|
|
int height, void *data);
|
|
|
|
static void ami_tree_scroll_visible(int y, int height, void *data);
|
|
|
|
static void ami_tree_get_window_dimensions(int *width, int *height, void *data);
|
|
|
|
|
|
|
|
const struct treeview_table ami_tree_callbacks = {
|
|
|
|
.redraw_request = ami_tree_redraw_request,
|
|
|
|
.resized = ami_tree_resized,
|
|
|
|
.scroll_visible = ami_tree_scroll_visible,
|
|
|
|
.get_window_dimensions = ami_tree_get_window_dimensions
|
|
|
|
};
|
|
|
|
|
2010-12-30 03:33:18 +03:00
|
|
|
struct treeview_window *ami_tree_create(uint8 flags,
|
2010-10-05 23:14:46 +04:00
|
|
|
struct sslcert_session_data *ssl_data)
|
|
|
|
{
|
|
|
|
struct treeview_window *twin;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin = AllocVec(sizeof(struct treeview_window),
|
|
|
|
MEMF_PRIVATE | MEMF_CLEAR);
|
|
|
|
|
|
|
|
if(!twin)
|
|
|
|
{
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-04-15 02:36:57 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->ssl_data = ssl_data;
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->tree = tree_create(flags, &ami_tree_callbacks, twin);
|
|
|
|
return twin;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_destroy(struct treeview_window *twin)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_delete(twin->tree);
|
|
|
|
FreeVec(twin);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
struct tree *ami_tree_get_tree(struct treeview_window *twin)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
return twin->tree;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_resized(struct tree *tree, int width, int height, void *data)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
struct treeview_window *twin = data;
|
|
|
|
struct IBox *bbox;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->max_height = height;
|
|
|
|
twin->max_width = width;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(twin->win)
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox,twin->objects[GID_BROWSER],(ULONG *)&bbox);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_VSCROLL], twin->win, NULL,
|
|
|
|
SCROLLER_Total, height,
|
|
|
|
SCROLLER_Visible, bbox->Height,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_HSCROLL], twin->win, NULL,
|
|
|
|
SCROLLER_Total, width,
|
|
|
|
SCROLLER_Visible, bbox->Width,
|
|
|
|
TAG_DONE);
|
2008-09-28 00:55:11 +04:00
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Retrieves the dimensions of the window with the tree
|
|
|
|
*
|
|
|
|
* \param data user data assigned to the tree on tree creation
|
|
|
|
* \param width will be updated to window width if not NULL
|
|
|
|
* \param height will be updated to window height if not NULL
|
|
|
|
*/
|
|
|
|
void ami_tree_get_window_dimensions(int *width, int *height, void *data)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
struct treeview_window *twin = data;
|
|
|
|
struct IBox *bbox;
|
|
|
|
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox,twin->objects[GID_BROWSER],(ULONG *)&bbox);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
if(width) *width = bbox->Width;
|
|
|
|
if(height) *height = bbox->Height;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Translates a content_type to the name of a respective icon
|
|
|
|
*
|
|
|
|
* \param content_type content type
|
|
|
|
* \param buffer buffer for the icon name
|
|
|
|
*/
|
|
|
|
void tree_icon_name_from_content_type(char *buffer, content_type type)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-30 18:23:38 +04:00
|
|
|
const char *ftype = ami_content_type_to_file_type(type);
|
|
|
|
sprintf(buffer, "def_%s.info", ftype);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/**
|
|
|
|
* Scrolls the tree to make an element visible
|
|
|
|
*
|
|
|
|
* \param y Y coordinate of the element
|
|
|
|
* \param height height of the element
|
|
|
|
* \param data user data assigned to the tree on tree creation
|
|
|
|
*/
|
|
|
|
void ami_tree_scroll_visible(int y, int height, void *data)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
ULONG sy, scrollset;
|
|
|
|
struct IBox *bbox;
|
|
|
|
struct treeview_window *twin = data;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_VSCROLL], (ULONG *)&sy);
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox,twin->objects[GID_BROWSER],(ULONG *)&bbox);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if((y > sy) && ((y + height) < (sy + bbox->Height))) return;
|
2008-10-13 22:00:44 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if((y <= sy) || (height > bbox->Height)) scrollset = (ULONG)y;
|
|
|
|
else scrollset = sy + (y + height) - (sy + bbox->Height);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_VSCROLL], twin->win, NULL,
|
|
|
|
SCROLLER_Top, scrollset,
|
|
|
|
TAG_DONE);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_tree_draw(twin);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_scroll(struct treeview_window *twin, int sx, int sy)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
int x, y;
|
|
|
|
|
|
|
|
if(!twin) return;
|
|
|
|
|
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_HSCROLL], (ULONG *)&x);
|
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_VSCROLL], (ULONG *)&y);
|
|
|
|
|
2010-10-25 21:26:34 +04:00
|
|
|
x += sx;
|
|
|
|
y += sy;
|
|
|
|
|
|
|
|
if(y < 0) y = 0;
|
|
|
|
if(x < 0) x = 0;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_VSCROLL], twin->win, NULL,
|
2010-10-25 21:26:34 +04:00
|
|
|
SCROLLER_Top, y,
|
2010-10-05 23:14:46 +04:00
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_HSCROLL], twin->win, NULL,
|
2010-10-25 21:26:34 +04:00
|
|
|
SCROLLER_Top, x,
|
2010-10-05 23:14:46 +04:00
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
ami_tree_draw(twin);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-10-29 21:40:36 +04:00
|
|
|
void ami_tree_drag_icon_show(struct treeview_window *twin)
|
|
|
|
{
|
2010-11-04 00:00:07 +03:00
|
|
|
const char *type = "project";
|
|
|
|
const char *url;
|
2011-07-23 18:06:13 +04:00
|
|
|
const struct url_data *data;
|
2010-11-04 00:00:07 +03:00
|
|
|
struct node *node = NULL;
|
|
|
|
|
2010-10-30 14:44:44 +04:00
|
|
|
if((tree_drag_status(twin->tree) == TREE_NO_DRAG) ||
|
2010-12-20 03:21:47 +03:00
|
|
|
(tree_drag_status(twin->tree) == TREE_SELECT_DRAG) ||
|
|
|
|
(tree_drag_status(twin->tree) == TREE_TEXTAREA_DRAG))
|
2010-10-30 14:44:44 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
if((twin->type == AMI_TREE_COOKIES) ||
|
|
|
|
(twin->type == AMI_TREE_SSLCERT)) return; /* No permissable drag operations */
|
|
|
|
|
2010-11-04 00:00:07 +03:00
|
|
|
node = tree_get_selected_node(tree_get_root(twin->tree));
|
|
|
|
|
|
|
|
if(node && tree_node_is_folder(node))
|
2010-10-29 21:40:36 +04:00
|
|
|
{
|
|
|
|
ami_drag_icon_show(twin->win, "drawer");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-04 00:00:07 +03:00
|
|
|
if(node && (url = tree_url_node_get_url(node)))
|
|
|
|
{
|
|
|
|
if(data = urldb_get_url_data(url))
|
|
|
|
{
|
|
|
|
type = ami_content_type_to_file_type(data->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ami_drag_icon_show(twin->win, type);
|
2010-10-29 21:40:36 +04:00
|
|
|
}
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2010-10-30 14:44:44 +04:00
|
|
|
void ami_tree_drag_end(struct treeview_window *twin, int x, int y)
|
|
|
|
{
|
|
|
|
struct gui_window_2 *gwin;
|
|
|
|
struct node *selected_node;
|
|
|
|
BOOL drag;
|
|
|
|
|
|
|
|
if(drag = ami_drag_in_progress()) ami_drag_icon_close(twin->win);
|
|
|
|
|
|
|
|
if(drag && (gwin = ami_window_at_pointer()))
|
|
|
|
{
|
|
|
|
selected_node = tree_get_selected_node(tree_get_root(twin->tree));
|
|
|
|
|
2010-11-04 01:21:54 +03:00
|
|
|
if((selected_node == NULL) || (tree_node_is_folder(selected_node)))
|
2010-10-30 14:44:44 +04:00
|
|
|
{
|
|
|
|
DisplayBeep(scrn);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
browser_window_go(gwin->bw, tree_url_node_get_url(selected_node),
|
|
|
|
NULL, true);
|
|
|
|
}
|
|
|
|
tree_drag_end(twin->tree, twin->mouse_state,
|
|
|
|
twin->drag_x, twin->drag_y,
|
|
|
|
twin->drag_x, twin->drag_y); /* Keep the tree happy */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(tree_drag_status(twin->tree) == TREE_UNKNOWN_DRAG)
|
|
|
|
DisplayBeep(scrn);
|
|
|
|
|
|
|
|
tree_drag_end(twin->tree, twin->mouse_state,
|
|
|
|
twin->drag_x, twin->drag_y, x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_scroller_hook(struct Hook *hook,Object *object,struct IntuiMessage *msg)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
ULONG gid,x,y;
|
|
|
|
struct treeview_window *twin = hook->h_Data;
|
|
|
|
struct IntuiWheelData *wheel;
|
|
|
|
|
|
|
|
switch(msg->Class)
|
|
|
|
{
|
|
|
|
case IDCMP_IDCMPUPDATE:
|
|
|
|
gid = GetTagData( GA_ID, 0, msg->IAddress );
|
|
|
|
|
|
|
|
switch( gid )
|
|
|
|
{
|
|
|
|
case OID_HSCROLL:
|
|
|
|
case OID_VSCROLL:
|
|
|
|
ami_tree_draw(twin);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDCMP_EXTENDEDMOUSE:
|
|
|
|
if(msg->Code == IMSGCODE_INTUIWHEELDATA)
|
|
|
|
{
|
|
|
|
wheel = (struct IntuiWheelData *)msg->IAddress;
|
|
|
|
|
|
|
|
ami_tree_scroll(twin, (wheel->WheelX * 20), (wheel->WheelY * 20));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_menu(struct treeview_window *twin)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
if(twin->menu) return;
|
|
|
|
|
|
|
|
if(twin->menu = AllocVec(sizeof(struct NewMenu) * AMI_TREE_MENU_ITEMS, MEMF_CLEAR))
|
|
|
|
{
|
|
|
|
twin->menu[0].nm_Type = NM_TITLE;
|
|
|
|
twin->menu_name[0] = ami_utf8_easy((char *)messages_get("Tree"));
|
|
|
|
twin->menu[0].nm_Label = twin->menu_name[0];
|
|
|
|
|
|
|
|
twin->menu[1].nm_Type = NM_ITEM;
|
|
|
|
twin->menu_name[1] = ami_utf8_easy((char *)messages_get("TreeExport"));
|
|
|
|
twin->menu[1].nm_Label = twin->menu_name[1];
|
|
|
|
if(twin->type == AMI_TREE_COOKIES)
|
|
|
|
twin->menu[1].nm_Flags = NM_ITEMDISABLED;
|
|
|
|
twin->menu[1].nm_CommKey = "S";
|
|
|
|
|
|
|
|
twin->menu[2].nm_Type = NM_ITEM;
|
|
|
|
twin->menu[2].nm_Label = NM_BARLABEL;
|
|
|
|
|
|
|
|
twin->menu[3].nm_Type = NM_ITEM;
|
|
|
|
twin->menu_name[3] = ami_utf8_easy((char *)messages_get("Expand"));
|
|
|
|
twin->menu[3].nm_Label = twin->menu_name[3];
|
|
|
|
|
|
|
|
twin->menu[4].nm_Type = NM_SUB;
|
|
|
|
twin->menu_name[4] = ami_utf8_easy((char *)messages_get("All"));
|
|
|
|
twin->menu[4].nm_Label = twin->menu_name[4];
|
|
|
|
twin->menu[4].nm_CommKey = "+";
|
|
|
|
|
|
|
|
if(twin->type == AMI_TREE_COOKIES)
|
|
|
|
{
|
|
|
|
twin->menu_name[5] = ami_utf8_easy((char *)messages_get("Domains"));
|
|
|
|
twin->menu_name[6] = ami_utf8_easy((char *)messages_get("Cookies"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
twin->menu_name[5] = ami_utf8_easy((char *)messages_get("Folders"));
|
|
|
|
twin->menu_name[6] = ami_utf8_easy((char *)messages_get("Links"));
|
|
|
|
}
|
|
|
|
|
|
|
|
twin->menu[5].nm_Type = NM_SUB;
|
|
|
|
twin->menu[5].nm_Label = twin->menu_name[5]; // tree-specific title
|
|
|
|
|
|
|
|
twin->menu[6].nm_Type = NM_SUB;
|
|
|
|
twin->menu[6].nm_Label = twin->menu_name[6]; // tree-specific title
|
|
|
|
|
|
|
|
twin->menu[7].nm_Type = NM_ITEM;
|
|
|
|
twin->menu_name[7] = ami_utf8_easy((char *)messages_get("Collapse"));
|
|
|
|
twin->menu[7].nm_Label = twin->menu_name[7];
|
|
|
|
|
|
|
|
twin->menu[8].nm_Type = NM_SUB;
|
|
|
|
twin->menu[8].nm_Label = twin->menu_name[4];
|
|
|
|
twin->menu[8].nm_CommKey = "-";
|
|
|
|
|
|
|
|
twin->menu[9].nm_Type = NM_SUB;
|
|
|
|
twin->menu[9].nm_Label = twin->menu_name[5]; // tree-specific title
|
|
|
|
|
|
|
|
twin->menu[10].nm_Type = NM_SUB;
|
|
|
|
twin->menu[10].nm_Label = twin->menu_name[6]; // tree-specific title
|
|
|
|
|
|
|
|
twin->menu[11].nm_Type = NM_ITEM;
|
|
|
|
twin->menu[11].nm_Label = NM_BARLABEL;
|
|
|
|
|
|
|
|
twin->menu[12].nm_Type = NM_ITEM;
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu_name[12] = ami_utf8_easy((char *)messages_get("SnapshotWindow"));
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->menu[12].nm_Label = twin->menu_name[12];
|
|
|
|
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu[13].nm_Type = NM_ITEM;
|
|
|
|
twin->menu[13].nm_Label = NM_BARLABEL;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
twin->menu[14].nm_Type = NM_ITEM;
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu_name[14] = ami_utf8_easy((char *)messages_get("CloseWindow"));
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->menu[14].nm_Label = twin->menu_name[14];
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu[14].nm_CommKey = "K";
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu[15].nm_Type = NM_TITLE;
|
|
|
|
twin->menu_name[15] = ami_utf8_easy((char *)messages_get("Edit"));
|
|
|
|
twin->menu[15].nm_Label = twin->menu_name[15];
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
twin->menu[16].nm_Type = NM_ITEM;
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu_name[16] = ami_utf8_easy((char *)messages_get("TreeDelete"));
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->menu[16].nm_Label = twin->menu_name[16];
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu[16].nm_CommKey = "D";
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
twin->menu[17].nm_Type = NM_ITEM;
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu[17].nm_Label = NM_BARLABEL;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2010-12-19 15:04:35 +03:00
|
|
|
twin->menu[18].nm_Type = NM_ITEM;
|
|
|
|
twin->menu_name[18] = ami_utf8_easy((char *)messages_get("SelectAllNS"));
|
|
|
|
twin->menu[18].nm_Label = twin->menu_name[18];
|
|
|
|
twin->menu[18].nm_CommKey = "A";
|
|
|
|
|
|
|
|
twin->menu[19].nm_Type = NM_ITEM;
|
|
|
|
twin->menu_name[19] = ami_utf8_easy((char *)messages_get("ClearNS"));
|
|
|
|
twin->menu[19].nm_Label = twin->menu_name[19];
|
|
|
|
twin->menu[19].nm_CommKey = "Z";
|
|
|
|
|
|
|
|
twin->menu[20].nm_Type = NM_END;
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2010-12-19 15:49:41 +03:00
|
|
|
void ami_tree_update_buttons(struct treeview_window *twin)
|
|
|
|
{
|
|
|
|
BOOL launch_disable = FALSE;
|
|
|
|
|
|
|
|
if(twin->type == AMI_TREE_SSLCERT) return;
|
|
|
|
|
|
|
|
if(tree_node_has_selection(tree_get_root(twin->tree)))
|
|
|
|
{
|
|
|
|
struct node *selected_node =
|
|
|
|
tree_get_selected_node(tree_get_root(twin->tree));
|
|
|
|
|
|
|
|
OnMenu(twin->win, AMI_TREE_MENU_DELETE);
|
|
|
|
OnMenu(twin->win, AMI_TREE_MENU_CLEAR);
|
|
|
|
|
2011-07-23 18:06:13 +04:00
|
|
|
RefreshSetGadgetAttrs((struct Gadget *)twin->objects[GID_DEL],
|
2010-12-19 15:49:41 +03:00
|
|
|
twin->win, NULL,
|
|
|
|
GA_Disabled, FALSE,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
if((selected_node && (tree_node_is_folder(selected_node) == true)))
|
|
|
|
launch_disable = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OffMenu(twin->win, AMI_TREE_MENU_DELETE);
|
|
|
|
OffMenu(twin->win, AMI_TREE_MENU_CLEAR);
|
|
|
|
|
2011-07-23 18:06:13 +04:00
|
|
|
RefreshSetGadgetAttrs((struct Gadget *)twin->objects[GID_DEL],
|
2010-12-19 15:49:41 +03:00
|
|
|
twin->win, NULL,
|
|
|
|
GA_Disabled, TRUE,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
launch_disable = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(twin->type != AMI_TREE_COOKIES)
|
|
|
|
{
|
2011-07-23 18:06:13 +04:00
|
|
|
RefreshSetGadgetAttrs((struct Gadget *)twin->objects[GID_OPEN],
|
2010-12-19 15:49:41 +03:00
|
|
|
twin->win, NULL,
|
|
|
|
GA_Disabled, launch_disable,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_open(struct treeview_window *twin,int type)
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
2008-10-13 22:00:44 +04:00
|
|
|
BOOL msel = TRUE,nothl = TRUE,launchdisable=FALSE;
|
2008-09-28 00:55:11 +04:00
|
|
|
static WORD gen=0;
|
2008-10-12 01:38:04 +04:00
|
|
|
char *wintitle;
|
2008-10-19 17:01:01 +04:00
|
|
|
char folderclosed[100],folderopen[100],item[100];
|
2008-09-28 17:55:40 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(twin->win)
|
2008-09-28 17:55:40 +04:00
|
|
|
{
|
|
|
|
WindowToFront(twin->win);
|
|
|
|
ActivateWindow(twin->win);
|
|
|
|
return;
|
|
|
|
}
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->type = type;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
switch(twin->type)
|
2008-10-12 01:38:04 +04:00
|
|
|
{
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
nothl = FALSE;
|
|
|
|
wintitle = (char *)messages_get("Hotlist");
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
nothl = TRUE;
|
2008-10-13 22:00:44 +04:00
|
|
|
launchdisable=TRUE;
|
2008-10-12 01:38:04 +04:00
|
|
|
wintitle = (char *)messages_get("Cookies");
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
nothl = TRUE;
|
2008-10-13 22:00:44 +04:00
|
|
|
wintitle = (char *)messages_get("GlobalHistory");
|
2008-10-12 01:38:04 +04:00
|
|
|
break;
|
2009-06-01 02:12:42 +04:00
|
|
|
case AMI_TREE_SSLCERT:
|
|
|
|
nothl = TRUE;
|
2009-06-02 01:23:14 +04:00
|
|
|
wintitle = (char *)messages_get("SSLCerts");
|
2009-06-01 02:12:42 +04:00
|
|
|
break;
|
2008-10-12 01:38:04 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->scrollerhook.h_Entry = (void *)ami_tree_scroller_hook;
|
|
|
|
twin->scrollerhook.h_Data = twin;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_init_layers(&twin->globals, scrn->Width, scrn->Height);
|
|
|
|
ami_tree_menu(twin);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(type == AMI_TREE_SSLCERT)
|
|
|
|
{
|
|
|
|
twin->objects[OID_MAIN] = WindowObject,
|
2008-09-28 00:55:11 +04:00
|
|
|
WA_ScreenTitle,nsscreentitle,
|
2008-10-12 01:38:04 +04:00
|
|
|
WA_Title,wintitle,
|
2008-09-28 00:55:11 +04:00
|
|
|
WA_Activate, TRUE,
|
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_DragBar, TRUE,
|
|
|
|
WA_CloseGadget, TRUE,
|
|
|
|
WA_SizeGadget, TRUE,
|
2010-10-05 23:14:46 +04:00
|
|
|
WA_Height, scrn->Height / 2,
|
2008-09-28 00:55:11 +04:00
|
|
|
WA_CustomScreen,scrn,
|
2010-10-05 23:14:46 +04:00
|
|
|
WA_ReportMouse,TRUE,
|
2010-12-19 02:34:56 +03:00
|
|
|
WA_IDCMP, IDCMP_MOUSEMOVE | IDCMP_MOUSEBUTTONS | IDCMP_NEWSIZE |
|
2010-10-05 23:14:46 +04:00
|
|
|
IDCMP_RAWKEY | IDCMP_GADGETUP | IDCMP_IDCMPUPDATE |
|
2010-12-19 02:34:56 +03:00
|
|
|
IDCMP_EXTENDEDMOUSE | IDCMP_SIZEVERIFY,
|
2010-10-05 23:14:46 +04:00
|
|
|
WINDOW_HorizProp,1,
|
|
|
|
WINDOW_VertProp,1,
|
|
|
|
WINDOW_IDCMPHook,&twin->scrollerhook,
|
|
|
|
WINDOW_IDCMPHookBits,IDCMP_IDCMPUPDATE | IDCMP_EXTENDEDMOUSE,
|
2008-09-28 17:55:40 +04:00
|
|
|
WINDOW_SharedPort,sport,
|
|
|
|
WINDOW_UserData,twin,
|
2010-10-05 23:14:46 +04:00
|
|
|
/* WINDOW_NewMenu, twin->menu, -> No menu for SSL Cert */
|
|
|
|
WINDOW_IconifyGadget, FALSE,
|
2008-10-12 01:38:04 +04:00
|
|
|
WINDOW_Position, WPOS_CENTERSCREEN,
|
2011-07-23 18:06:13 +04:00
|
|
|
WINDOW_ParentGroup, twin->objects[GID_MAIN] = VGroupObject,
|
2010-10-05 23:14:46 +04:00
|
|
|
LAYOUT_AddImage, LabelObject,
|
|
|
|
LABEL_Text, messages_get("SSLError"),
|
|
|
|
LabelEnd,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_BROWSER] = SpaceObject,
|
2010-10-05 23:14:46 +04:00
|
|
|
GA_ID, GID_BROWSER,
|
|
|
|
SPACE_Transparent,TRUE,
|
|
|
|
SPACE_BevelStyle, BVS_DISPLAY,
|
|
|
|
SpaceEnd,
|
|
|
|
LAYOUT_AddChild, HGroupObject,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_OPEN] = ButtonObject,
|
2010-10-05 23:14:46 +04:00
|
|
|
GA_ID,GID_OPEN,
|
|
|
|
GA_Text,messages_get("Accept"),
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
ButtonEnd,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_CANCEL] = ButtonObject,
|
2010-10-05 23:14:46 +04:00
|
|
|
GA_ID,GID_CANCEL,
|
|
|
|
GA_Text,messages_get("Reject"),
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
ButtonEnd,
|
|
|
|
EndGroup,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
EndGroup,
|
|
|
|
EndWindow;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-12-19 15:04:35 +03:00
|
|
|
ULONG width = scrn->Width / 2;
|
|
|
|
ULONG height = scrn->Height / 2;
|
|
|
|
ULONG top = (scrn->Height / 2) - (height / 2);
|
|
|
|
ULONG left = (scrn->Width / 2) - (width / 2);
|
|
|
|
|
|
|
|
if((type == AMI_TREE_HOTLIST) && (option_hotlist_window_xsize > 0))
|
|
|
|
{
|
|
|
|
top = option_hotlist_window_ypos;
|
|
|
|
left = option_hotlist_window_xpos;
|
|
|
|
width = option_hotlist_window_xsize;
|
|
|
|
height = option_hotlist_window_ysize;
|
|
|
|
}
|
|
|
|
else if((type == AMI_TREE_HISTORY) && (option_history_window_xsize > 0))
|
|
|
|
{
|
|
|
|
top = option_history_window_ypos;
|
|
|
|
left = option_history_window_xpos;
|
|
|
|
width = option_history_window_xsize;
|
|
|
|
height = option_history_window_ysize;
|
|
|
|
}
|
|
|
|
else if((type == AMI_TREE_COOKIES) && (option_cookies_window_xsize > 0))
|
|
|
|
{
|
|
|
|
top = option_cookies_window_ypos;
|
|
|
|
left = option_cookies_window_xpos;
|
|
|
|
width = option_cookies_window_xsize;
|
|
|
|
height = option_cookies_window_ysize;
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->objects[OID_MAIN] = WindowObject,
|
|
|
|
WA_ScreenTitle,nsscreentitle,
|
|
|
|
WA_Title,wintitle,
|
|
|
|
WA_Activate, TRUE,
|
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_DragBar, TRUE,
|
|
|
|
WA_CloseGadget, TRUE,
|
|
|
|
WA_SizeGadget, TRUE,
|
2010-12-19 15:04:35 +03:00
|
|
|
WA_Top, top,
|
|
|
|
WA_Left, left,
|
|
|
|
WA_Width, width,
|
|
|
|
WA_Height, height,
|
2010-10-05 23:14:46 +04:00
|
|
|
WA_CustomScreen,scrn,
|
|
|
|
WA_ReportMouse,TRUE,
|
2010-12-19 02:34:56 +03:00
|
|
|
WA_IDCMP, IDCMP_MOUSEMOVE | IDCMP_MOUSEBUTTONS | IDCMP_NEWSIZE |
|
2010-10-05 23:14:46 +04:00
|
|
|
IDCMP_RAWKEY | IDCMP_GADGETUP | IDCMP_IDCMPUPDATE |
|
2010-12-19 02:34:56 +03:00
|
|
|
IDCMP_EXTENDEDMOUSE | IDCMP_SIZEVERIFY | IDCMP_INTUITICKS,
|
2010-10-05 23:14:46 +04:00
|
|
|
WINDOW_HorizProp,1,
|
|
|
|
WINDOW_VertProp,1,
|
|
|
|
WINDOW_IDCMPHook,&twin->scrollerhook,
|
|
|
|
WINDOW_IDCMPHookBits,IDCMP_IDCMPUPDATE | IDCMP_EXTENDEDMOUSE,
|
|
|
|
WINDOW_SharedPort,sport,
|
|
|
|
WINDOW_UserData,twin,
|
|
|
|
WINDOW_NewMenu, twin->menu,
|
|
|
|
WINDOW_IconifyGadget, FALSE,
|
2010-12-19 15:04:35 +03:00
|
|
|
// WINDOW_Position, WPOS_CENTERSCREEN,
|
2011-07-23 18:06:13 +04:00
|
|
|
WINDOW_ParentGroup, twin->objects[GID_MAIN] = VGroupObject,
|
|
|
|
LAYOUT_AddChild, twin->objects[GID_BROWSER] = SpaceObject,
|
2010-10-05 23:14:46 +04:00
|
|
|
GA_ID, GID_BROWSER,
|
|
|
|
SPACE_Transparent,TRUE,
|
|
|
|
SPACE_BevelStyle, BVS_DISPLAY,
|
|
|
|
SpaceEnd,
|
2008-10-12 01:38:04 +04:00
|
|
|
LAYOUT_AddChild, HGroupObject,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_OPEN] = ButtonObject,
|
2008-10-12 01:38:04 +04:00
|
|
|
GA_ID,GID_OPEN,
|
2008-10-13 22:00:44 +04:00
|
|
|
GA_Text,messages_get("TreeLaunch"),
|
2008-10-12 01:38:04 +04:00
|
|
|
GA_RelVerify,TRUE,
|
2008-10-13 22:00:44 +04:00
|
|
|
GA_Disabled,launchdisable,
|
2008-10-12 01:38:04 +04:00
|
|
|
ButtonEnd,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_NEWF] = ButtonObject,
|
2008-10-12 01:38:04 +04:00
|
|
|
GA_ID,GID_NEWF,
|
|
|
|
BUTTON_AutoButton,BAG_POPDRAWER,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Disabled,nothl,
|
|
|
|
ButtonEnd,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_NEWB] = ButtonObject,
|
2008-10-12 01:38:04 +04:00
|
|
|
GA_ID,GID_NEWB,
|
|
|
|
BUTTON_AutoButton,BAG_POPFILE,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Disabled,nothl,
|
|
|
|
ButtonEnd,
|
2011-07-23 18:06:13 +04:00
|
|
|
LAYOUT_AddChild, twin->objects[GID_DEL] = ButtonObject,
|
2008-10-12 01:38:04 +04:00
|
|
|
GA_ID,GID_DEL,
|
2008-10-13 22:00:44 +04:00
|
|
|
GA_Text,messages_get("TreeDelete"),
|
2008-10-12 01:38:04 +04:00
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
ButtonEnd,
|
|
|
|
EndGroup,
|
|
|
|
CHILD_WeightedHeight,0,
|
2008-09-28 00:55:11 +04:00
|
|
|
EndGroup,
|
|
|
|
EndWindow;
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2008-09-28 00:55:11 +04:00
|
|
|
|
|
|
|
twin->win = (struct Window *)RA_OpenWindow(twin->objects[OID_MAIN]);
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(WINDOW_HorizObject, twin->objects[OID_MAIN],
|
|
|
|
(ULONG *)&twin->objects[OID_HSCROLL]);
|
|
|
|
GetAttr(WINDOW_VertObject, twin->objects[OID_MAIN],
|
|
|
|
(ULONG *)&twin->objects[OID_VSCROLL]);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_VSCROLL], twin->win, NULL,
|
|
|
|
GA_ID,OID_VSCROLL,
|
|
|
|
ICA_TARGET,ICTARGET_IDCMP,
|
|
|
|
TAG_DONE);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)twin->objects[OID_HSCROLL], twin->win, NULL,
|
|
|
|
GA_ID,OID_HSCROLL,
|
|
|
|
ICA_TARGET,ICTARGET_IDCMP,
|
|
|
|
TAG_DONE);
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->node = AddObject(window_list,AMINS_TVWINDOW);
|
|
|
|
twin->node->objstruct = twin;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-12-19 15:49:41 +03:00
|
|
|
ami_tree_update_buttons(twin);
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_tree_resized(twin->tree, twin->max_width, twin->max_height, twin);
|
|
|
|
tree_set_redraw(twin->tree, true);
|
|
|
|
ami_tree_draw(twin);
|
2008-09-28 00:55:11 +04:00
|
|
|
}
|
|
|
|
|
2008-09-28 17:55:40 +04:00
|
|
|
void ami_tree_close(struct treeview_window *twin)
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
int i;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_set_redraw(twin->tree, false);
|
|
|
|
twin->win = NULL;
|
|
|
|
DisposeObject(twin->objects[OID_MAIN]);
|
|
|
|
DelObjectNoFree(twin->node);
|
|
|
|
ami_free_layers(&twin->globals);
|
2008-10-06 22:20:16 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
for(i=0;i<AMI_TREE_MENU_ITEMS;i++)
|
|
|
|
{
|
|
|
|
if(twin->menu_name[i] && (twin->menu_name[i] != NM_BARLABEL)) ami_utf8_free(twin->menu_name[i]);
|
|
|
|
}
|
|
|
|
FreeVec(twin->menu);
|
|
|
|
twin->menu = NULL;
|
|
|
|
if(twin->type == AMI_TREE_SSLCERT) ami_ssl_free(twin);
|
2008-09-28 00:55:11 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_update_quals(struct treeview_window *twin)
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
2010-12-30 03:33:18 +03:00
|
|
|
uint32 quals = 0;
|
2008-09-28 17:55:40 +04:00
|
|
|
|
2010-12-30 03:33:18 +03:00
|
|
|
GetAttr(WINDOW_Qualifier, twin->objects[OID_MAIN], (uint32 *)&quals);
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->key_state = 0;
|
2008-09-28 17:55:40 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if((quals & IEQUALIFIER_LSHIFT) || (quals & IEQUALIFIER_RSHIFT))
|
|
|
|
{
|
|
|
|
twin->key_state |= BROWSER_MOUSE_MOD_1;
|
|
|
|
}
|
2008-09-28 17:55:40 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(quals & IEQUALIFIER_CONTROL)
|
|
|
|
{
|
|
|
|
twin->key_state |= BROWSER_MOUSE_MOD_2;
|
|
|
|
}
|
2008-09-28 00:55:11 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if((quals & IEQUALIFIER_LALT) || (quals & IEQUALIFIER_RALT))
|
|
|
|
{
|
|
|
|
twin->key_state |= BROWSER_MOUSE_MOD_3;
|
2008-09-28 00:55:11 +04:00
|
|
|
}
|
|
|
|
}
|
2008-09-28 17:55:40 +04:00
|
|
|
|
|
|
|
BOOL ami_tree_event(struct treeview_window *twin)
|
|
|
|
{
|
|
|
|
/* return TRUE if window destroyed */
|
2010-10-05 23:14:46 +04:00
|
|
|
ULONG class,result,storage = 0;
|
2010-12-30 03:33:18 +03:00
|
|
|
uint16 code;
|
2008-09-28 17:55:40 +04:00
|
|
|
struct MenuItem *item;
|
2010-10-05 23:14:46 +04:00
|
|
|
ULONG menunum=0,itemnum=0,subnum=0;
|
|
|
|
int xs, ys, x, y;
|
|
|
|
struct IBox *bbox;
|
|
|
|
struct timeval curtime;
|
|
|
|
struct InputEvent *ie;
|
|
|
|
int nskey;
|
|
|
|
char fname[1024];
|
2010-12-19 02:34:56 +03:00
|
|
|
static int drag_x_move = 0, drag_y_move = 0;
|
2008-09-28 17:55:40 +04:00
|
|
|
|
|
|
|
while((result = RA_HandleInput(twin->objects[OID_MAIN],&code)) != WMHI_LASTMSG)
|
|
|
|
{
|
|
|
|
switch(result & WMHI_CLASSMASK) // class
|
|
|
|
{
|
|
|
|
case WMHI_GADGETUP:
|
|
|
|
switch(result & WMHI_GADGETMASK)
|
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
case GID_OPEN:
|
|
|
|
if(twin->type == AMI_TREE_SSLCERT)
|
2008-09-28 17:55:40 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
sslcert_accept(twin->ssl_data);
|
|
|
|
ami_tree_close(twin);
|
|
|
|
return TRUE;
|
2008-10-12 01:38:04 +04:00
|
|
|
}
|
2011-07-02 15:41:06 +04:00
|
|
|
else tree_launch_selected(twin->tree, true);
|
2008-10-12 01:38:04 +04:00
|
|
|
break;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case GID_CANCEL:
|
|
|
|
sslcert_reject(twin->ssl_data);
|
|
|
|
ami_tree_close(twin);
|
|
|
|
return TRUE;
|
2008-10-12 01:38:04 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GID_NEWF:
|
2010-10-05 23:14:46 +04:00
|
|
|
hotlist_add_folder();
|
2008-10-12 01:38:04 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GID_NEWB:
|
2010-10-05 23:14:46 +04:00
|
|
|
hotlist_add_entry();
|
2008-10-12 01:38:04 +04:00
|
|
|
break;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case GID_DEL:
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_delete_selected();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_delete_selected();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_delete_selected();
|
|
|
|
break;
|
|
|
|
}
|
2008-10-12 01:38:04 +04:00
|
|
|
break;
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
break;
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case WMHI_MOUSEMOVE:
|
2010-12-19 02:34:56 +03:00
|
|
|
drag_x_move = 0;
|
|
|
|
drag_y_move = 0;
|
|
|
|
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox, twin->objects[GID_BROWSER], (ULONG *)&bbox);
|
2008-10-14 02:34:54 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_HSCROLL], (ULONG *)&xs);
|
|
|
|
x = twin->win->MouseX - bbox->Left + xs;
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_VSCROLL], (ULONG *)&ys);
|
|
|
|
y = twin->win->MouseY - bbox->Top + ys;
|
|
|
|
|
2010-10-20 02:22:03 +04:00
|
|
|
if(twin->mouse_state & BROWSER_MOUSE_DRAG_ON)
|
|
|
|
{
|
|
|
|
ami_drag_icon_move();
|
|
|
|
|
2010-12-19 02:34:56 +03:00
|
|
|
if((twin->win->MouseX < bbox->Left) &&
|
|
|
|
((twin->win->MouseX - bbox->Left) > -AMI_DRAG_THRESHOLD))
|
2010-10-20 02:22:03 +04:00
|
|
|
drag_x_move = twin->win->MouseX - bbox->Left;
|
2010-12-19 02:34:56 +03:00
|
|
|
if((twin->win->MouseX > (bbox->Left + bbox->Width)) &&
|
|
|
|
((twin->win->MouseX - (bbox->Left + bbox->Width)) < AMI_DRAG_THRESHOLD))
|
2010-10-20 02:22:03 +04:00
|
|
|
drag_x_move = twin->win->MouseX - (bbox->Left + bbox->Width);
|
2010-12-19 02:34:56 +03:00
|
|
|
if((twin->win->MouseY < bbox->Top) &&
|
|
|
|
((twin->win->MouseY - bbox->Top) > -AMI_DRAG_THRESHOLD))
|
2010-10-20 02:22:03 +04:00
|
|
|
drag_y_move = twin->win->MouseY - bbox->Top;
|
2010-12-19 02:34:56 +03:00
|
|
|
if((twin->win->MouseY > (bbox->Top + bbox->Height)) &&
|
|
|
|
((twin->win->MouseY - (bbox->Top + bbox->Height)) < AMI_DRAG_THRESHOLD))
|
2010-10-20 02:22:03 +04:00
|
|
|
drag_y_move = twin->win->MouseY - (bbox->Top + bbox->Height);
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if((x >= xs) && (y >= ys) && (x < bbox->Width + xs) &&
|
|
|
|
(y < bbox->Height + ys))
|
|
|
|
{
|
|
|
|
ami_tree_update_quals(twin);
|
|
|
|
|
|
|
|
if(twin->mouse_state & BROWSER_MOUSE_PRESS_1)
|
|
|
|
{
|
|
|
|
tree_mouse_action(twin->tree,
|
|
|
|
BROWSER_MOUSE_DRAG_1 | twin->key_state, x, y);
|
|
|
|
twin->mouse_state = BROWSER_MOUSE_HOLDING_1 |
|
|
|
|
BROWSER_MOUSE_DRAG_ON;
|
|
|
|
if(twin->drag_x == 0) twin->drag_x = x;
|
|
|
|
if(twin->drag_y == 0) twin->drag_y = y;
|
2010-10-30 14:44:44 +04:00
|
|
|
ami_tree_drag_icon_show(twin);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
else if(twin->mouse_state & BROWSER_MOUSE_PRESS_2)
|
|
|
|
{
|
|
|
|
tree_mouse_action(twin->tree,
|
|
|
|
BROWSER_MOUSE_DRAG_2 | twin->key_state, x, y);
|
|
|
|
twin->mouse_state = BROWSER_MOUSE_HOLDING_2 |
|
|
|
|
BROWSER_MOUSE_DRAG_ON;
|
|
|
|
if(twin->drag_x == 0) twin->drag_x = x;
|
|
|
|
if(twin->drag_y == 0) twin->drag_y = y;
|
2010-10-30 14:44:44 +04:00
|
|
|
ami_tree_drag_icon_show(twin);
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
twin->lastclick.tv_sec = 0;
|
|
|
|
twin->lastclick.tv_usec = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMHI_MOUSEBUTTONS:
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox, twin->objects[GID_BROWSER], (ULONG *)&bbox);
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_HSCROLL], (ULONG *)&xs);
|
|
|
|
x = twin->win->MouseX - bbox->Left + xs;
|
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_VSCROLL], (ULONG *)&ys);
|
|
|
|
y = twin->win->MouseY - bbox->Top + ys;
|
|
|
|
|
|
|
|
ami_tree_update_quals(twin);
|
|
|
|
|
|
|
|
if((x >= xs) && (y >= ys) && (x < bbox->Width + xs) &&
|
|
|
|
(y < bbox->Height + ys))
|
|
|
|
{
|
|
|
|
switch(code)
|
|
|
|
{
|
|
|
|
case SELECTDOWN:
|
|
|
|
twin->mouse_state = BROWSER_MOUSE_PRESS_1;
|
|
|
|
break;
|
|
|
|
case MIDDLEDOWN:
|
|
|
|
twin->mouse_state = BROWSER_MOUSE_PRESS_2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(x < xs) x = xs;
|
|
|
|
if(y < ys) y = ys;
|
|
|
|
if(x >= bbox->Width + xs) x = bbox->Width + xs - 1;
|
|
|
|
if(y >= bbox->Height + ys) y = bbox->Height + ys - 1;
|
|
|
|
|
|
|
|
switch(code)
|
|
|
|
{
|
|
|
|
case SELECTUP:
|
|
|
|
if(twin->mouse_state & BROWSER_MOUSE_PRESS_1)
|
|
|
|
{
|
|
|
|
CurrentTime(&curtime.tv_sec,&curtime.tv_usec);
|
|
|
|
|
|
|
|
twin->mouse_state = BROWSER_MOUSE_CLICK_1;
|
|
|
|
|
|
|
|
if(twin->lastclick.tv_sec)
|
|
|
|
{
|
|
|
|
if(DoubleClick(twin->lastclick.tv_sec,
|
|
|
|
twin->lastclick.tv_usec,
|
|
|
|
curtime.tv_sec, curtime.tv_usec))
|
|
|
|
twin->mouse_state |= BROWSER_MOUSE_DOUBLE_CLICK;
|
|
|
|
}
|
|
|
|
tree_mouse_action(twin->tree,
|
|
|
|
twin->mouse_state | twin->key_state, x, y);
|
|
|
|
|
|
|
|
if(twin->mouse_state & BROWSER_MOUSE_DOUBLE_CLICK)
|
|
|
|
{
|
|
|
|
twin->lastclick.tv_sec = 0;
|
|
|
|
twin->lastclick.tv_usec = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
twin->lastclick.tv_sec = curtime.tv_sec;
|
|
|
|
twin->lastclick.tv_usec = curtime.tv_usec;
|
|
|
|
}
|
|
|
|
}
|
2010-10-30 14:44:44 +04:00
|
|
|
else ami_tree_drag_end(twin, x, y);
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->mouse_state=0;
|
|
|
|
twin->drag_x = 0;
|
|
|
|
twin->drag_y = 0;
|
|
|
|
break;
|
2010-12-17 02:28:33 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case MIDDLEUP:
|
|
|
|
if(twin->mouse_state & BROWSER_MOUSE_PRESS_2)
|
|
|
|
{
|
2010-12-17 02:28:33 +03:00
|
|
|
CurrentTime(&curtime.tv_sec,&curtime.tv_usec);
|
|
|
|
|
|
|
|
twin->mouse_state = BROWSER_MOUSE_CLICK_2;
|
|
|
|
|
|
|
|
if(twin->lastclick.tv_sec)
|
|
|
|
{
|
|
|
|
if(DoubleClick(twin->lastclick.tv_sec,
|
|
|
|
twin->lastclick.tv_usec,
|
|
|
|
curtime.tv_sec, curtime.tv_usec))
|
|
|
|
twin->mouse_state |= BROWSER_MOUSE_DOUBLE_CLICK;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
tree_mouse_action(twin->tree,
|
2010-12-17 02:28:33 +03:00
|
|
|
twin->mouse_state | twin->key_state, x, y);
|
|
|
|
|
|
|
|
if(twin->mouse_state & BROWSER_MOUSE_DOUBLE_CLICK)
|
|
|
|
{
|
|
|
|
twin->lastclick.tv_sec = 0;
|
|
|
|
twin->lastclick.tv_usec = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
twin->lastclick.tv_sec = curtime.tv_sec;
|
|
|
|
twin->lastclick.tv_usec = curtime.tv_usec;
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2010-10-30 14:44:44 +04:00
|
|
|
else ami_tree_drag_end(twin, x, y);
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
twin->mouse_state=0;
|
|
|
|
twin->drag_x = 0;
|
|
|
|
twin->drag_y = 0;
|
2008-09-28 17:55:40 +04:00
|
|
|
break;
|
2010-12-17 23:30:50 +03:00
|
|
|
|
|
|
|
case SELECTDOWN:
|
|
|
|
case MIDDLEDOWN:
|
|
|
|
tree_mouse_action(twin->tree,
|
|
|
|
twin->mouse_state | twin->key_state, x, y);
|
|
|
|
break;
|
2008-09-28 17:55:40 +04:00
|
|
|
}
|
2010-12-19 15:49:41 +03:00
|
|
|
ami_tree_update_buttons(twin);
|
2008-09-28 17:55:40 +04:00
|
|
|
break;
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
case WMHI_RAWKEY:
|
|
|
|
storage = result & WMHI_GADGETMASK;
|
|
|
|
|
|
|
|
GetAttr(WINDOW_InputEvent,twin->objects[OID_MAIN],(ULONG *)&ie);
|
|
|
|
nskey = ami_key_to_nskey(storage, ie);
|
|
|
|
tree_keypress(twin->tree, nskey);
|
|
|
|
break;
|
|
|
|
|
2008-09-28 17:55:40 +04:00
|
|
|
case WMHI_MENUPICK:
|
2010-10-05 23:14:46 +04:00
|
|
|
item = ItemAddress(twin->win->MenuStrip,code);
|
2008-09-28 17:55:40 +04:00
|
|
|
while (code != MENUNULL)
|
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
menunum = MENUNUM(code);
|
|
|
|
itemnum = ITEMNUM(code);
|
|
|
|
subnum = SUBNUM(code);
|
|
|
|
|
|
|
|
switch(menunum)
|
|
|
|
{
|
|
|
|
case 0: // tree
|
|
|
|
switch(itemnum)
|
|
|
|
{
|
|
|
|
case 0: // export
|
|
|
|
if(AslRequestTags(savereq,
|
|
|
|
ASLFR_TitleText,messages_get("NetSurf"),
|
|
|
|
ASLFR_Screen,scrn,
|
|
|
|
ASLFR_InitialFile,"tree_export.html",
|
|
|
|
TAG_DONE))
|
|
|
|
{
|
2010-12-30 03:53:11 +03:00
|
|
|
strlcpy(fname,savereq->fr_Drawer,1024);
|
2010-10-05 23:14:46 +04:00
|
|
|
AddPart(fname,savereq->fr_File,1024);
|
|
|
|
ami_update_pointer(twin->win,GUI_POINTER_WAIT);
|
|
|
|
if(twin->type == AMI_TREE_HISTORY)
|
|
|
|
history_global_export(fname);
|
|
|
|
else if(twin->type == AMI_TREE_HOTLIST)
|
|
|
|
hotlist_export(fname);
|
|
|
|
ami_update_pointer(twin->win,GUI_POINTER_DEFAULT);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // expand
|
|
|
|
switch(subnum)
|
|
|
|
{
|
|
|
|
case 0: // all
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_expand_all();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_expand_all();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_expand_all();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // lev 1
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_expand_directories();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_expand_domains();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_expand_directories();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // lev 2
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_expand_addresses();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_expand_cookies();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_expand_addresses();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // collapse
|
|
|
|
switch(subnum)
|
|
|
|
{
|
|
|
|
case 0: // all
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_collapse_all();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_collapse_all();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_collapse_all();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // lev 1
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_collapse_directories();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_collapse_domains();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_collapse_directories();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // lev 2
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_collapse_addresses();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_collapse_cookies();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_collapse_addresses();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-12-19 15:04:35 +03:00
|
|
|
case 5: // snapshot
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
option_history_window_ypos = twin->win->TopEdge;
|
|
|
|
option_history_window_xpos = twin->win->LeftEdge;
|
|
|
|
option_history_window_xsize = twin->win->Width;
|
|
|
|
option_history_window_ysize = twin->win->Height;
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
option_cookies_window_ypos = twin->win->TopEdge;
|
|
|
|
option_cookies_window_xpos = twin->win->LeftEdge;
|
|
|
|
option_cookies_window_xsize = twin->win->Width;
|
|
|
|
option_cookies_window_ysize = twin->win->Height;
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
option_hotlist_window_ypos = twin->win->TopEdge;
|
|
|
|
option_hotlist_window_xpos = twin->win->LeftEdge;
|
|
|
|
option_hotlist_window_xsize = twin->win->Width;
|
|
|
|
option_hotlist_window_ysize = twin->win->Height;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: // close
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_tree_close(twin);
|
|
|
|
return TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // edit
|
|
|
|
switch(itemnum)
|
|
|
|
{
|
|
|
|
case 0: // delete
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_delete_selected();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_delete_selected();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_delete_selected();
|
|
|
|
break;
|
|
|
|
}
|
2010-12-19 15:49:41 +03:00
|
|
|
ami_tree_update_buttons(twin);
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // select all
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_select_all();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_select_all();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_select_all();
|
|
|
|
break;
|
|
|
|
}
|
2010-12-19 15:49:41 +03:00
|
|
|
ami_tree_update_buttons(twin);
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // clear
|
|
|
|
switch(twin->type)
|
|
|
|
{
|
|
|
|
case AMI_TREE_HISTORY:
|
|
|
|
history_global_clear_selection();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_COOKIES:
|
|
|
|
cookies_clear_selection();
|
|
|
|
break;
|
|
|
|
case AMI_TREE_HOTLIST:
|
|
|
|
hotlist_clear_selection();
|
|
|
|
break;
|
|
|
|
}
|
2010-12-19 15:49:41 +03:00
|
|
|
ami_tree_update_buttons(twin);
|
2010-10-05 23:14:46 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-09-28 17:55:40 +04:00
|
|
|
if(win_destroyed) break;
|
|
|
|
code = item->NextSelect;
|
|
|
|
}
|
|
|
|
break;
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
case WMHI_NEWSIZE:
|
|
|
|
ami_tree_draw(twin);
|
|
|
|
break;
|
2008-09-28 17:55:40 +04:00
|
|
|
|
|
|
|
case WMHI_CLOSEWINDOW:
|
2010-10-05 23:14:46 +04:00
|
|
|
if(twin->type == AMI_TREE_SSLCERT)
|
|
|
|
sslcert_reject(twin->ssl_data);
|
2008-09-28 17:55:40 +04:00
|
|
|
ami_tree_close(twin);
|
|
|
|
return TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-12-19 02:34:56 +03:00
|
|
|
|
|
|
|
if(drag_x_move || drag_y_move)
|
|
|
|
ami_tree_scroll(twin, drag_x_move, drag_y_move);
|
|
|
|
|
2008-09-28 17:55:40 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_draw(struct treeview_window *twin)
|
2008-10-12 01:38:04 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
struct IBox *bbox;
|
|
|
|
int x, y;
|
2009-04-15 02:36:57 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(!twin) return;
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_HSCROLL], (ULONG *)&x);
|
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_VSCROLL], (ULONG *)&y);
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox,twin->objects[GID_BROWSER],(ULONG *)&bbox);
|
2008-10-14 02:34:54 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_tree_redraw_request(x, y, bbox->Width, bbox->Height, twin);
|
2008-10-12 01:38:04 +04:00
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ami_tree_redraw_request(int x, int y, int width, int height, void *data)
|
2008-10-12 01:38:04 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
struct treeview_window *twin = data;
|
|
|
|
struct IBox *bbox;
|
|
|
|
int pos_x, pos_y;
|
2011-06-30 19:48:07 +04:00
|
|
|
struct redraw_context ctx = {
|
|
|
|
.interactive = true,
|
|
|
|
.plot = &amiplot
|
|
|
|
};
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(!twin->win) return;
|
|
|
|
// if(tree_get_redraw(twin->tree) == false) return;
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_update_pointer(twin->win, GUI_POINTER_WAIT);
|
|
|
|
glob = &twin->globals;
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2011-07-23 18:06:13 +04:00
|
|
|
GetAttr(SPACE_AreaBox,twin->objects[GID_BROWSER],(ULONG *)&bbox);
|
2010-10-05 23:14:46 +04:00
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_HSCROLL], (ULONG *)&pos_x);
|
|
|
|
GetAttr(SCROLLER_Top, twin->objects[OID_VSCROLL], (ULONG *)&pos_y);
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if(x - pos_x + width > bbox->Width) width = bbox->Width - (x - pos_x);
|
|
|
|
if(y - pos_y + height > bbox->Height) height = bbox->Height - (y - pos_y);
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2011-06-30 19:48:07 +04:00
|
|
|
tree_draw(twin->tree, -pos_x, -pos_y, x, y, width, height, &ctx);
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
BltBitMapRastPort(twin->globals.bm, x - pos_x, y - pos_y, twin->win->RPort,
|
|
|
|
bbox->Left + x - pos_x, bbox->Top + y - pos_y, width, height, 0x0C0);
|
2008-10-12 01:38:04 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
ami_update_pointer(twin->win, GUI_POINTER_DEFAULT);
|
|
|
|
glob = &browserglob;
|
2008-10-12 01:38:04 +04:00
|
|
|
}
|