2008-08-02 18:31:32 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "desktop/tree.h"
|
2008-09-28 00:55:11 +04:00
|
|
|
#include <proto/listbrowser.h>
|
|
|
|
#include <proto/window.h>
|
|
|
|
#include <proto/layout.h>
|
|
|
|
#include <classes/window.h>
|
|
|
|
#include <gadgets/listbrowser.h>
|
|
|
|
#include <gadgets/layout.h>
|
|
|
|
#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"
|
|
|
|
|
|
|
|
void ami_add_elements(struct treeview_window *twin,struct node *root,WORD *gen);
|
2008-09-28 17:55:40 +04:00
|
|
|
bool ami_tree_launch_node(struct tree *tree, struct node *node);
|
|
|
|
void free_browserlist(struct List *list);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
void tree_initialise_redraw(struct tree *tree)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_redraw_area(struct tree *tree, int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_draw_line(int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_draw_node_element(struct tree *tree, struct node_element *element)
|
|
|
|
{
|
2008-09-28 00:55:11 +04:00
|
|
|
/* add element to listbrowser list */
|
|
|
|
|
|
|
|
struct Node *lbnode;
|
|
|
|
struct treeview_window *twin = tree->handle;
|
|
|
|
struct node *tempnode;
|
|
|
|
int generation=1;
|
|
|
|
BOOL edit = FALSE;
|
|
|
|
|
|
|
|
tempnode = element->parent;
|
|
|
|
edit = tempnode->editable;
|
|
|
|
|
|
|
|
while(tempnode)
|
|
|
|
{
|
|
|
|
tempnode = tempnode->parent;
|
|
|
|
generation++;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (element->type) {
|
|
|
|
case NODE_ELEMENT_TEXT_PLUS_SPRITE:
|
|
|
|
case NODE_ELEMENT_TEXT:
|
|
|
|
if (lbnode = AllocListBrowserNode(3,
|
|
|
|
// LBNA_UserData,nodetime,
|
|
|
|
LBNA_Generation,1,
|
|
|
|
LBNA_Column, 0,
|
|
|
|
LBNCA_CopyText,TRUE,
|
|
|
|
LBNCA_Text, element->text,
|
|
|
|
LBNCA_Editable,edit,
|
|
|
|
LBNA_Column, 1,
|
|
|
|
LBNCA_CopyText,TRUE,
|
|
|
|
LBNCA_Text, "",
|
|
|
|
LBNA_Column, 2,
|
|
|
|
LBNCA_CopyText,TRUE,
|
|
|
|
LBNCA_Text, "",
|
|
|
|
TAG_DONE))
|
|
|
|
{
|
|
|
|
AddTail(twin->listbrowser_list, lbnode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void tree_draw_node_expansion(struct tree *tree, struct node *node)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_recalculate_node_element(struct node_element *element)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_update_URL_node(struct node *node, const char *url,
|
|
|
|
const struct url_data *data)
|
|
|
|
{
|
2008-09-28 00:55:11 +04:00
|
|
|
struct node_element *element;
|
|
|
|
char buffer[256];
|
|
|
|
|
|
|
|
assert(node);
|
|
|
|
|
|
|
|
element = tree_find_element(node, TREE_ELEMENT_URL);
|
|
|
|
if (!element)
|
|
|
|
return;
|
|
|
|
if (data) {
|
|
|
|
/* node is linked, update */
|
|
|
|
assert(!node->editable);
|
|
|
|
if (!data->title)
|
|
|
|
urldb_set_url_title(url, url);
|
|
|
|
|
|
|
|
if (!data->title)
|
|
|
|
return;
|
|
|
|
|
|
|
|
node->data.text = data->title;
|
|
|
|
} else {
|
|
|
|
/* node is not linked, find data */
|
|
|
|
assert(node->editable);
|
|
|
|
data = urldb_get_url_data(element->text);
|
|
|
|
if (!data)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not implemented yet
|
|
|
|
if (element) {
|
|
|
|
sprintf(buffer, "small_%.3x", ro_content_filetype_from_type(data->type));
|
|
|
|
if (ro_gui_wimp_sprite_exists(buffer))
|
|
|
|
tree_set_node_sprite(node, buffer, buffer);
|
|
|
|
else
|
|
|
|
tree_set_node_sprite(node, "small_xxx", "small_xxx");
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
element = tree_find_element(node, TREE_ELEMENT_LAST_VISIT);
|
|
|
|
if (element) {
|
|
|
|
snprintf(buffer, 256, messages_get("TreeLast"),
|
|
|
|
(data->last_visit > 0) ?
|
|
|
|
ctime((time_t *)&data->last_visit) :
|
|
|
|
messages_get("TreeUnknown"));
|
|
|
|
if (data->last_visit > 0)
|
|
|
|
buffer[strlen(buffer) - 1] = '\0';
|
|
|
|
free((void *)element->text);
|
|
|
|
element->text = strdup(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
element = tree_find_element(node, TREE_ELEMENT_VISITS);
|
|
|
|
if (element) {
|
|
|
|
snprintf(buffer, 256, messages_get("TreeVisits"),
|
|
|
|
data->visits);
|
|
|
|
free((void *)element->text);
|
|
|
|
element->text = strdup(buffer);
|
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void tree_resized(struct tree *tree)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_set_node_sprite_folder(struct node *node)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tree_set_node_sprite(struct node *node, const char *sprite,
|
|
|
|
const char *expanded)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-09-28 00:55:11 +04:00
|
|
|
void ami_open_tree(struct tree *tree)
|
|
|
|
{
|
|
|
|
struct treeview_window *twin;
|
|
|
|
BOOL msel = TRUE;
|
|
|
|
static WORD gen=0;
|
2008-09-28 17:55:40 +04:00
|
|
|
|
|
|
|
if(tree->handle)
|
|
|
|
{
|
|
|
|
twin = tree->handle;
|
|
|
|
WindowToFront(twin->win);
|
|
|
|
ActivateWindow(twin->win);
|
|
|
|
return;
|
|
|
|
}
|
2008-09-28 00:55:11 +04:00
|
|
|
|
|
|
|
twin = AllocVec(sizeof(struct treeview_window),MEMF_CLEAR);
|
|
|
|
twin->listbrowser_list = AllocVec(sizeof(struct List),MEMF_CLEAR);
|
|
|
|
|
|
|
|
static struct ColumnInfo columninfo[] =
|
|
|
|
{
|
|
|
|
{ 22,"Name", CIF_DRAGGABLE | CIF_SORTABLE},
|
|
|
|
{ 5,"URL", CIF_DRAGGABLE },
|
|
|
|
{ 5,"Visits", CIF_DRAGGABLE },
|
|
|
|
{ -1, (STRPTR)~0, -1 }
|
|
|
|
};
|
|
|
|
|
|
|
|
if(tree->single_selection) msel = FALSE;
|
|
|
|
|
|
|
|
NewList(twin->listbrowser_list);
|
|
|
|
|
|
|
|
tree->handle = (void *)twin;
|
|
|
|
twin->tree = tree;
|
|
|
|
ami_add_elements(twin,twin->tree->root,&gen);
|
|
|
|
|
|
|
|
twin->objects[OID_MAIN] = WindowObject,
|
|
|
|
WA_ScreenTitle,nsscreentitle,
|
|
|
|
WA_Title, "treeview window",
|
|
|
|
WA_Activate, TRUE,
|
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_DragBar, TRUE,
|
|
|
|
WA_CloseGadget, TRUE,
|
|
|
|
WA_SizeGadget, TRUE,
|
|
|
|
WA_CustomScreen,scrn,
|
2008-09-28 17:55:40 +04:00
|
|
|
WINDOW_SharedPort,sport,
|
|
|
|
WINDOW_UserData,twin,
|
2008-09-28 00:55:11 +04:00
|
|
|
WINDOW_IconifyGadget, TRUE,
|
|
|
|
WINDOW_Position, WPOS_CENTERSCREEN,
|
|
|
|
WINDOW_ParentGroup, twin->gadgets[GID_MAIN] = VGroupObject,
|
|
|
|
LAYOUT_AddChild, twin->gadgets[GID_TREEBROWSER] = ListBrowserObject,
|
|
|
|
GA_ID, GID_TREEBROWSER,
|
|
|
|
GA_RelVerify, TRUE,
|
|
|
|
GA_ReadOnly,FALSE,
|
|
|
|
LISTBROWSER_ColumnInfo, &columninfo,
|
|
|
|
LISTBROWSER_ColumnTitles, TRUE,
|
|
|
|
LISTBROWSER_Hierarchical,TRUE,
|
2008-09-28 17:55:40 +04:00
|
|
|
LISTBROWSER_Editable,TRUE,
|
2008-09-28 00:55:11 +04:00
|
|
|
// LISTBROWSER_TitleClickable,TRUE,
|
|
|
|
LISTBROWSER_AutoFit, TRUE,
|
|
|
|
LISTBROWSER_HorizontalProp, TRUE,
|
|
|
|
LISTBROWSER_Labels, twin->listbrowser_list,
|
|
|
|
LISTBROWSER_MultiSelect,msel,
|
2008-09-28 17:55:40 +04:00
|
|
|
LISTBROWSER_ShowSelected,TRUE,
|
2008-09-28 00:55:11 +04:00
|
|
|
ListBrowserEnd,
|
|
|
|
CHILD_NominalSize,TRUE,
|
|
|
|
EndGroup,
|
|
|
|
EndWindow;
|
|
|
|
|
|
|
|
twin->win = (struct Window *)RA_OpenWindow(twin->objects[OID_MAIN]);
|
|
|
|
|
|
|
|
twin->node = AddObject(window_list,AMINS_TVWINDOW);
|
|
|
|
twin->node->objstruct = twin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Launches a node using all known methods.
|
|
|
|
*
|
|
|
|
* \param node the node to launch
|
|
|
|
* \return whether the node could be launched
|
|
|
|
*/
|
|
|
|
bool ami_tree_launch_node(struct tree *tree, struct node *node)
|
|
|
|
{
|
|
|
|
struct node_element *element;
|
|
|
|
|
|
|
|
assert(node);
|
|
|
|
|
|
|
|
element = tree_find_element(node, TREE_ELEMENT_URL);
|
|
|
|
if (element) {
|
|
|
|
browser_window_create(element->text, NULL, 0, true, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WITH_SSL
|
|
|
|
/* not implemented yet
|
|
|
|
element = tree_find_element(node, TREE_ELEMENT_SSL);
|
|
|
|
if (element) {
|
|
|
|
ro_gui_cert_open(tree, node);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-09-28 17:55:40 +04:00
|
|
|
void ami_tree_close(struct treeview_window *twin)
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
2008-09-28 17:55:40 +04:00
|
|
|
twin->tree->handle = NULL;
|
2008-09-28 00:55:11 +04:00
|
|
|
DisposeObject(twin->objects[OID_MAIN]);
|
|
|
|
FreeListBrowserList(twin->listbrowser_list);
|
2008-09-28 17:55:40 +04:00
|
|
|
FreeVec(twin->listbrowser_list);
|
2008-09-28 00:55:11 +04:00
|
|
|
//free_browserlist(twin->listbrowser_list);
|
|
|
|
DelObject(twin->node);
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_browserlist(struct List *list)
|
|
|
|
{
|
|
|
|
struct Node *node, *nextnode;
|
|
|
|
|
|
|
|
if(IsListEmpty(list)) return;
|
|
|
|
|
2008-10-06 22:20:16 +04:00
|
|
|
node = GetHead(list);
|
|
|
|
|
|
|
|
do
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
2008-10-06 22:20:16 +04:00
|
|
|
nextnode = GetSucc(node);
|
2008-09-28 00:55:11 +04:00
|
|
|
FreeVec(node->ln_Name);
|
|
|
|
FreeListBrowserNode(node);
|
2008-10-06 22:20:16 +04:00
|
|
|
} while(node = nextnode);
|
2008-09-28 00:55:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ami_add_elements(struct treeview_window *twin,struct node *root,WORD *gen)
|
|
|
|
{
|
|
|
|
struct Node *lbnode;
|
|
|
|
struct tree *tree = twin->tree;
|
|
|
|
struct node *tempnode;
|
|
|
|
int generation=1;
|
|
|
|
BOOL edit = FALSE;
|
|
|
|
struct node_element *element=NULL,*element2=NULL,*element3=NULL;
|
|
|
|
struct node *node;
|
2008-09-28 17:55:40 +04:00
|
|
|
ULONG flags = 0;
|
|
|
|
STRPTR text1 = "",text2 = "",text3 = "";
|
2008-09-28 00:55:11 +04:00
|
|
|
|
|
|
|
*gen = *gen + 1;
|
|
|
|
for (node = root; node; node = node->next)
|
|
|
|
{
|
|
|
|
element = tree_find_element(node, TREE_ELEMENT_NAME);
|
|
|
|
if(!element) element = tree_find_element(node, TREE_ELEMENT_TITLE);
|
2008-09-28 17:55:40 +04:00
|
|
|
if(element && element->text)
|
|
|
|
{
|
|
|
|
text1 = element->text;
|
|
|
|
}
|
|
|
|
|
2008-09-28 00:55:11 +04:00
|
|
|
// printf("node %lx url %s gen %ld\n",node,element->text,*gen);
|
|
|
|
element2 = tree_find_element(node, TREE_ELEMENT_URL);
|
2008-09-28 17:55:40 +04:00
|
|
|
|
|
|
|
if(element2 && element2->text)
|
|
|
|
{
|
|
|
|
text2 = element2->text;
|
|
|
|
}
|
|
|
|
|
|
|
|
// element = tree_find_element(node, TREE_ELEMENT_VISITS);
|
|
|
|
|
|
|
|
if(node->expanded) flags = LBFLG_SHOWCHILDREN;
|
2008-09-28 00:55:11 +04:00
|
|
|
|
|
|
|
switch (element->type) {
|
|
|
|
case NODE_ELEMENT_TEXT_PLUS_SPRITE:
|
|
|
|
case NODE_ELEMENT_TEXT:
|
|
|
|
if (lbnode = AllocListBrowserNode(3,
|
2008-09-28 17:55:40 +04:00
|
|
|
LBNA_UserData,node,
|
|
|
|
LBNA_Generation,*gen,
|
|
|
|
LBNA_Selected,node->selected,
|
|
|
|
LBNA_Flags,flags,
|
2008-09-28 00:55:11 +04:00
|
|
|
LBNA_Column, 0,
|
2008-09-28 17:55:40 +04:00
|
|
|
LBNCA_CopyText,TRUE,
|
|
|
|
LBNCA_MaxChars,256,
|
|
|
|
LBNCA_Text, text1,
|
|
|
|
LBNCA_Editable,node->editable,
|
|
|
|
LBNA_Column, 1,
|
|
|
|
LBNCA_CopyText,TRUE,
|
|
|
|
LBNCA_MaxChars,256,
|
|
|
|
LBNCA_Text, text2,
|
|
|
|
LBNCA_Editable,node->editable,
|
|
|
|
LBNA_Column, 2,
|
|
|
|
LBNCA_CopyText,TRUE,
|
|
|
|
LBNCA_MaxChars,256,
|
|
|
|
LBNCA_Text,"",
|
|
|
|
LBNCA_Editable,node->editable,
|
|
|
|
TAG_DONE))
|
2008-09-28 00:55:11 +04:00
|
|
|
{
|
|
|
|
AddTail(twin->listbrowser_list, lbnode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node->child)
|
|
|
|
{
|
|
|
|
ami_add_elements(twin,node->child,gen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*gen = *gen - 1;
|
|
|
|
}
|
2008-09-28 17:55:40 +04:00
|
|
|
|
|
|
|
BOOL ami_tree_event(struct treeview_window *twin)
|
|
|
|
{
|
|
|
|
/* return TRUE if window destroyed */
|
|
|
|
ULONG class,result,relevent = 0;
|
|
|
|
uint16 code;
|
|
|
|
struct MenuItem *item;
|
|
|
|
struct node *treenode;
|
|
|
|
struct Node *lbnode;
|
|
|
|
|
|
|
|
while((result = RA_HandleInput(twin->objects[OID_MAIN],&code)) != WMHI_LASTMSG)
|
|
|
|
{
|
|
|
|
switch(result & WMHI_CLASSMASK) // class
|
|
|
|
{
|
|
|
|
case WMHI_GADGETUP:
|
|
|
|
switch(result & WMHI_GADGETMASK)
|
|
|
|
{
|
|
|
|
case GID_TREEBROWSER:
|
|
|
|
GetAttrs(twin->gadgets[GID_TREEBROWSER],
|
|
|
|
LISTBROWSER_RelEvent,&relevent,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
switch(relevent)
|
|
|
|
{
|
|
|
|
case LBRE_DOUBLECLICK:
|
|
|
|
GetAttr(LISTBROWSER_SelectedNode,twin->gadgets[GID_TREEBROWSER],(ULONG *)&lbnode);
|
|
|
|
GetListBrowserNodeAttrs(lbnode,
|
|
|
|
LBNA_UserData,(ULONG *)&treenode,
|
|
|
|
TAG_DONE);
|
|
|
|
ami_tree_launch_node(twin->tree,treenode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* no menus yet, copied in as will probably need it later
|
|
|
|
case WMHI_MENUPICK:
|
|
|
|
item = ItemAddress(gwin->win->MenuStrip,code);
|
|
|
|
while (code != MENUNULL)
|
|
|
|
{
|
|
|
|
ami_menupick(code,gwin);
|
|
|
|
if(win_destroyed) break;
|
|
|
|
code = item->NextSelect;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
|
|
|
|
case WMHI_CLOSEWINDOW:
|
|
|
|
ami_tree_close(twin);
|
|
|
|
return TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|