152 lines
3.9 KiB
C
Executable File
152 lines
3.9 KiB
C
Executable File
/*
|
|
* Copyright 2010 Ole Loots <ole@monochrom.net>
|
|
*
|
|
* 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 <string.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include "desktop/browser.h"
|
|
#include "desktop/options.h"
|
|
#include "desktop/tree.h"
|
|
#include "desktop/tree_url_node.h"
|
|
#include "desktop/gui.h"
|
|
#include "desktop/history_global_core.h"
|
|
#include "desktop/browser.h"
|
|
#include "utils/messages.h"
|
|
#include "content/content.h"
|
|
#include "content/hlcache.h"
|
|
#include "content/urldb.h"
|
|
#include "utils/log.h"
|
|
#include "atari/treeview.h"
|
|
#include "atari/findfile.h"
|
|
#include "atari/res/netsurf.rsh"
|
|
#include "atari/history.h"
|
|
|
|
extern char * tree_directory_icon_name;
|
|
|
|
struct s_atari_global_history gl_history;
|
|
|
|
|
|
void global_history_open( void )
|
|
{
|
|
if (gl_history.init == false ) {
|
|
return;
|
|
}
|
|
if( gl_history.open == false ) {
|
|
|
|
GRECT pos;
|
|
wind_get_grect(0, WF_FULLXYWH, &pos);
|
|
pos.g_x = pos.g_w - pos.g_w / 4;
|
|
pos.g_y = pos.g_y;
|
|
pos.g_w = pos.g_w / 4;
|
|
pos.g_h = pos.g_h;
|
|
|
|
wind_open(guiwin_get_handle(gl_history.window), pos.g_x, pos.g_y,
|
|
pos.g_w, pos.g_h);
|
|
gl_history.open = true;
|
|
atari_treeview_open(gl_history.tv);
|
|
} else {
|
|
wind_set(guiwin_get_handle(gl_history.window), WF_TOP, 1, 0, 0, 0);
|
|
}
|
|
}
|
|
|
|
void global_history_close( void )
|
|
{
|
|
wind_close(guiwin_get_handle(gl_history.window));
|
|
gl_history.open = false;
|
|
atari_treeview_close(gl_history.tv);
|
|
}
|
|
|
|
static short handle_event(GUIWIN *win, EVMULT_OUT *ev_out, short msg[8])
|
|
{
|
|
NSTREEVIEW tv=NULL;
|
|
|
|
printf("Hotlist event %d, open: %d\n", ev_out->emo_events, gl_history.open);
|
|
|
|
if(ev_out->emo_events & MU_MESAG){
|
|
switch (msg[0]) {
|
|
|
|
case WM_CLOSED:
|
|
global_history_close();
|
|
break;
|
|
|
|
default: break;
|
|
}
|
|
}
|
|
|
|
// TODO: implement selectable objects in toolbar API:
|
|
// ObjcChange( OC_TOOLBAR, win, buff[4], ~SELECTED, OC_MSG );
|
|
}
|
|
|
|
bool global_history_init( void )
|
|
{
|
|
|
|
if( gl_history.init == false ) {
|
|
|
|
short handle;
|
|
GRECT desk;
|
|
int flags = ATARI_TREEVIEW_WIDGETS;
|
|
|
|
wind_get_grect(0, WF_FULLXYWH, &desk);
|
|
|
|
gl_history.open = false;
|
|
handle = wind_create(flags, 40, 40, desk.g_w, desk.g_h);
|
|
gl_history.window = guiwin_add(handle, GW_FLAG_DEFAULTS, NULL);
|
|
if( gl_history.window == NULL ) {
|
|
LOG(("Failed to allocate history window"));
|
|
return( false );
|
|
}
|
|
wind_set_str(handle, WF_NAME, (char*)messages_get("GlobalHistory"));
|
|
|
|
gl_history.tv = atari_treeview_create(history_global_get_tree_flags(),
|
|
gl_history.window, handle_event);
|
|
|
|
if (gl_history.tv == NULL) {
|
|
/* TODO: handle it properly, clean up previous allocs */
|
|
LOG(("Failed to allocate history treeview"));
|
|
return( false );
|
|
}
|
|
|
|
history_global_initialise(gl_history.tv->tree, "dir.png");
|
|
gl_history.init = true;
|
|
}
|
|
return( true );
|
|
}
|
|
|
|
|
|
void global_history_destroy( void )
|
|
{
|
|
if( gl_history.init == false ) {
|
|
return;
|
|
}
|
|
if( gl_history.window != NULL ) {
|
|
history_global_cleanup();
|
|
if( gl_history.open )
|
|
global_history_close();
|
|
wind_delete(guiwin_get_handle(gl_history.window));
|
|
guiwin_remove(gl_history.window);
|
|
gl_history.window = NULL;
|
|
atari_treeview_destroy(gl_history.tv);
|
|
gl_history.init = false;
|
|
}
|
|
LOG(("done"));
|
|
}
|
|
|
|
|