2005-02-07 17:28:43 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
2010-10-05 23:14:46 +04:00
|
|
|
* Copyright 2010 Stephen Fryatt <stevef@netsurf-browser.org>
|
2007-08-08 20:16:03 +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/>.
|
2005-02-07 17:28:43 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Global history (implementation).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-02-09 02:37:41 +03:00
|
|
|
#include <time.h>
|
2005-02-07 17:28:43 +03:00
|
|
|
#include "oslib/wimp.h"
|
|
|
|
#include "oslib/wimpspriteop.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "content/urldb.h"
|
2013-09-02 19:19:16 +04:00
|
|
|
#include "desktop/global_history.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "desktop/tree.h"
|
|
|
|
#include "riscos/dialog.h"
|
|
|
|
#include "riscos/global_history.h"
|
|
|
|
#include "riscos/gui.h"
|
|
|
|
#include "riscos/menus.h"
|
2013-05-26 01:46:27 +04:00
|
|
|
#include "utils/nsoption.h"
|
2010-10-05 23:14:46 +04:00
|
|
|
#include "riscos/save.h"
|
2011-02-21 02:16:33 +03:00
|
|
|
#include "riscos/toolbar.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "riscos/treeview.h"
|
|
|
|
#include "riscos/wimp.h"
|
|
|
|
#include "riscos/wimp_event.h"
|
|
|
|
#include "utils/messages.h"
|
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/url.h"
|
|
|
|
#include "utils/utils.h"
|
2005-02-07 17:28:43 +03:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
static void ro_gui_global_history_toolbar_update_buttons(void);
|
|
|
|
static void ro_gui_global_history_toolbar_save_buttons(char *config);
|
|
|
|
static bool ro_gui_global_history_menu_prepare(wimp_w w, wimp_i i,
|
|
|
|
wimp_menu *menu, wimp_pointer *pointer);
|
|
|
|
static void ro_gui_global_history_menu_warning(wimp_w w, wimp_i i,
|
|
|
|
wimp_menu *menu, wimp_selection *selection, menu_action action);
|
|
|
|
static bool ro_gui_global_history_menu_select(wimp_w w, wimp_i i,
|
|
|
|
wimp_menu *menu, wimp_selection *selection, menu_action action);
|
|
|
|
static void ro_gui_global_history_toolbar_click(button_bar_action action);
|
|
|
|
|
|
|
|
struct ro_treeview_callbacks ro_global_history_treeview_callbacks = {
|
|
|
|
ro_gui_global_history_toolbar_click,
|
|
|
|
ro_gui_global_history_toolbar_update_buttons,
|
|
|
|
ro_gui_global_history_toolbar_save_buttons
|
|
|
|
};
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/* The RISC OS global history window, toolbar and treeview data */
|
2005-02-09 02:37:41 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
static struct ro_global_history_window {
|
|
|
|
wimp_w window;
|
|
|
|
struct toolbar *toolbar;
|
|
|
|
ro_treeview *tv;
|
|
|
|
wimp_menu *menu;
|
|
|
|
} global_history_window;
|
2005-02-07 17:28:43 +03:00
|
|
|
|
2006-04-10 03:21:13 +04:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Pre-Initialise the global history tree. This is called for things that
|
|
|
|
* need to be done at the gui_init() stage, such as loading templates.
|
2006-04-10 03:21:13 +04:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
void ro_gui_global_history_preinitialise(void)
|
2006-04-10 03:21:13 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
/* Create our window. */
|
2005-02-07 17:28:43 +03:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
global_history_window.window = ro_gui_dialog_create("tree");
|
|
|
|
ro_gui_set_window_title(global_history_window.window,
|
2006-01-07 00:25:34 +03:00
|
|
|
messages_get("GlobalHistory"));
|
2005-02-07 17:28:43 +03:00
|
|
|
}
|
|
|
|
|
2005-02-09 02:37:41 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Initialise global history tree, at the gui_init2() stage.
|
2005-02-09 02:37:41 +03:00
|
|
|
*/
|
2005-04-08 00:46:22 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void ro_gui_global_history_postinitialise(void)
|
|
|
|
{
|
|
|
|
/* Create our toolbar. */
|
2005-02-09 02:37:41 +03:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
global_history_window.toolbar = ro_toolbar_create(NULL,
|
|
|
|
global_history_window.window,
|
|
|
|
THEME_STYLE_GLOBAL_HISTORY_TOOLBAR, TOOLBAR_FLAGS_NONE,
|
|
|
|
ro_treeview_get_toolbar_callbacks(), NULL,
|
|
|
|
"HelpGHistoryToolbar");
|
|
|
|
if (global_history_window.toolbar != NULL) {
|
|
|
|
ro_toolbar_add_buttons(global_history_window.toolbar,
|
|
|
|
global_history_toolbar_buttons,
|
2012-03-22 13:34:34 +04:00
|
|
|
nsoption_charp(toolbar_history));
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_rebuild(global_history_window.toolbar);
|
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
/* Create the treeview with the window and toolbar. */
|
|
|
|
|
|
|
|
global_history_window.tv =
|
|
|
|
ro_treeview_create(global_history_window.window,
|
|
|
|
global_history_window.toolbar,
|
2011-02-21 02:16:33 +03:00
|
|
|
&ro_global_history_treeview_callbacks,
|
2013-09-02 17:39:04 +04:00
|
|
|
TREE_HISTORY);
|
2010-10-05 23:14:46 +04:00
|
|
|
if (global_history_window.tv == NULL) {
|
|
|
|
LOG(("Failed to allocate treeview"));
|
2005-02-09 02:37:41 +03:00
|
|
|
return;
|
2010-10-05 23:14:46 +04:00
|
|
|
}
|
2005-02-09 02:37:41 +03:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_update_client_data(global_history_window.toolbar,
|
|
|
|
global_history_window.tv);
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/* Build the global history window menu. */
|
|
|
|
|
|
|
|
static const struct ns_menu global_history_definition = {
|
|
|
|
"History", {
|
|
|
|
{ "History", NO_ACTION, 0 },
|
|
|
|
{ "_History.Export", HISTORY_EXPORT, &dialog_saveas },
|
|
|
|
{ "History.Expand", TREE_EXPAND_ALL, 0 },
|
|
|
|
{ "History.Expand.All", TREE_EXPAND_ALL, 0 },
|
|
|
|
{ "History.Expand.Folders", TREE_EXPAND_FOLDERS, 0 },
|
|
|
|
{ "History.Expand.Links", TREE_EXPAND_LINKS, 0 },
|
|
|
|
{ "History.Collapse", TREE_COLLAPSE_ALL, 0 },
|
|
|
|
{ "History.Collapse.All", TREE_COLLAPSE_ALL, 0 },
|
|
|
|
{ "History.Collapse.Folders", TREE_COLLAPSE_FOLDERS, 0 },
|
|
|
|
{ "History.Collapse.Links", TREE_COLLAPSE_LINKS, 0 },
|
|
|
|
{ "History.Toolbars", NO_ACTION, 0 },
|
|
|
|
{ "_History.Toolbars.ToolButtons", TOOLBAR_BUTTONS, 0 },
|
|
|
|
{ "History.Toolbars.EditToolbar",TOOLBAR_EDIT, 0 },
|
|
|
|
{ "Selection", TREE_SELECTION, 0 },
|
|
|
|
{ "Selection.Launch", TREE_SELECTION_LAUNCH, 0 },
|
|
|
|
{ "Selection.Delete", TREE_SELECTION_DELETE, 0 },
|
|
|
|
{ "SelectAll", TREE_SELECT_ALL, 0 },
|
|
|
|
{ "Clear", TREE_CLEAR_SELECTION, 0 },
|
|
|
|
{NULL, 0, 0}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
global_history_window.menu = ro_gui_menu_define_menu(
|
|
|
|
&global_history_definition);
|
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_gui_wimp_event_register_menu(global_history_window.window,
|
|
|
|
global_history_window.menu, false, false);
|
|
|
|
ro_gui_wimp_event_register_menu_prepare(global_history_window.window,
|
|
|
|
ro_gui_global_history_menu_prepare);
|
|
|
|
ro_gui_wimp_event_register_menu_selection(global_history_window.window,
|
|
|
|
ro_gui_global_history_menu_select);
|
|
|
|
ro_gui_wimp_event_register_menu_warning(global_history_window.window,
|
|
|
|
ro_gui_global_history_menu_warning);
|
2005-02-09 02:37:41 +03:00
|
|
|
}
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Open the global history window.
|
2005-02-07 17:28:43 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
void ro_gui_global_history_open(void)
|
2006-04-10 03:21:13 +04:00
|
|
|
{
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_gui_global_history_toolbar_update_buttons();
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
if (!ro_gui_dialog_open_top(global_history_window.window,
|
|
|
|
global_history_window.toolbar, 600, 800)) {
|
|
|
|
ro_treeview_set_origin(global_history_window.tv, 0,
|
2011-02-21 02:16:33 +03:00
|
|
|
-(ro_toolbar_height(
|
2010-10-05 23:14:46 +04:00
|
|
|
global_history_window.toolbar)));
|
2005-02-07 17:28:43 +03:00
|
|
|
}
|
2005-03-13 01:32:43 +03:00
|
|
|
}
|
|
|
|
|
2010-10-25 00:00:45 +04:00
|
|
|
/**
|
2011-02-21 02:16:33 +03:00
|
|
|
* Handle toolbar button clicks.
|
2010-10-25 00:00:45 +04:00
|
|
|
*
|
2011-02-21 02:16:33 +03:00
|
|
|
* \param action The action to handle
|
2010-10-25 00:00:45 +04:00
|
|
|
*/
|
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
void ro_gui_global_history_toolbar_click(button_bar_action action)
|
2010-10-25 00:00:45 +04:00
|
|
|
{
|
2011-02-21 02:16:33 +03:00
|
|
|
switch (action) {
|
|
|
|
case TOOLBAR_BUTTON_DELETE:
|
2013-09-03 01:41:04 +04:00
|
|
|
global_history_keypress(KEY_DELETE_LEFT);
|
2011-02-21 02:16:33 +03:00
|
|
|
break;
|
2010-10-25 03:17:21 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
case TOOLBAR_BUTTON_EXPAND:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_expand(false);
|
2011-02-21 02:16:33 +03:00
|
|
|
break;
|
2010-10-25 01:52:16 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
case TOOLBAR_BUTTON_COLLAPSE:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_contract(false);
|
2010-10-25 00:00:45 +04:00
|
|
|
break;
|
2011-02-21 02:16:33 +03:00
|
|
|
|
|
|
|
case TOOLBAR_BUTTON_OPEN:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_expand(true);
|
2010-10-25 00:00:45 +04:00
|
|
|
break;
|
2011-02-21 02:16:33 +03:00
|
|
|
|
|
|
|
case TOOLBAR_BUTTON_CLOSE:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_contract(true);
|
2010-10-25 00:00:45 +04:00
|
|
|
break;
|
2011-02-21 02:16:33 +03:00
|
|
|
|
|
|
|
case TOOLBAR_BUTTON_LAUNCH:
|
2013-09-03 01:41:04 +04:00
|
|
|
global_history_keypress(KEY_CR);
|
2011-02-21 02:16:33 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-10-25 00:00:45 +04:00
|
|
|
break;
|
|
|
|
}
|
2011-02-21 02:16:33 +03:00
|
|
|
}
|
2010-10-25 00:00:45 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the button state in the global history toolbar.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_global_history_toolbar_update_buttons(void)
|
|
|
|
{
|
|
|
|
ro_toolbar_set_button_shaded_state(global_history_window.toolbar,
|
|
|
|
TOOLBAR_BUTTON_DELETE,
|
2013-09-02 19:19:16 +04:00
|
|
|
!global_history_has_selection());
|
2011-02-21 02:16:33 +03:00
|
|
|
|
|
|
|
ro_toolbar_set_button_shaded_state(global_history_window.toolbar,
|
|
|
|
TOOLBAR_BUTTON_LAUNCH,
|
2013-09-02 19:19:16 +04:00
|
|
|
!global_history_has_selection());
|
2011-02-21 02:16:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save a new button arrangement in the global history toolbar.
|
|
|
|
*
|
|
|
|
* \param *config The new button configuration string.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_global_history_toolbar_save_buttons(char *config)
|
|
|
|
{
|
2012-03-22 13:34:34 +04:00
|
|
|
nsoption_set_charp(toolbar_history, config);
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_gui_save_options();
|
2010-10-25 00:00:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Prepare the global history menu for opening
|
2005-02-07 17:28:43 +03:00
|
|
|
*
|
2011-02-21 02:16:33 +03:00
|
|
|
* \param w The window owning the menu.
|
|
|
|
* \param i The icon owning the menu.
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param *menu The menu about to be opened.
|
2011-02-21 02:16:33 +03:00
|
|
|
* \param *pointer Pointer to the relevant wimp event block, or
|
|
|
|
* NULL for an Adjust click.
|
|
|
|
* \return true if the event was handled; else false.
|
2005-02-07 17:28:43 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
bool ro_gui_global_history_menu_prepare(wimp_w w, wimp_i i, wimp_menu *menu,
|
|
|
|
wimp_pointer *pointer)
|
2006-04-10 03:21:13 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
bool selection;
|
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
if (menu != global_history_window.menu)
|
|
|
|
return false;
|
2010-10-25 03:17:21 +04:00
|
|
|
|
2013-09-02 19:19:16 +04:00
|
|
|
selection = global_history_has_selection();
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_gui_menu_set_entry_shaded(global_history_window.menu,
|
|
|
|
TREE_SELECTION, !selection);
|
|
|
|
ro_gui_menu_set_entry_shaded(global_history_window.menu,
|
|
|
|
TREE_CLEAR_SELECTION, !selection);
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_gui_save_prepare(GUI_SAVE_HISTORY_EXPORT_HTML,
|
|
|
|
NULL, NULL, NULL, NULL);
|
2010-10-25 03:17:21 +04:00
|
|
|
|
|
|
|
ro_gui_menu_set_entry_shaded(menu, TOOLBAR_BUTTONS,
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_menu_option_shade(
|
|
|
|
global_history_window.toolbar));
|
2010-10-25 03:17:21 +04:00
|
|
|
ro_gui_menu_set_entry_ticked(menu, TOOLBAR_BUTTONS,
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_menu_buttons_tick(
|
|
|
|
global_history_window.toolbar));
|
2010-10-05 23:14:46 +04:00
|
|
|
|
2010-10-25 03:17:21 +04:00
|
|
|
ro_gui_menu_set_entry_shaded(menu, TOOLBAR_EDIT,
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_menu_edit_shade(
|
|
|
|
global_history_window.toolbar));
|
2010-10-25 03:17:21 +04:00
|
|
|
ro_gui_menu_set_entry_ticked(menu, TOOLBAR_EDIT,
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_menu_edit_tick(
|
|
|
|
global_history_window.toolbar));
|
|
|
|
|
|
|
|
return true;
|
2005-02-07 17:28:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Handle submenu warnings for the global_hostory menu
|
2006-04-10 03:21:13 +04:00
|
|
|
*
|
2011-02-21 02:16:33 +03:00
|
|
|
* \param w The window owning the menu.
|
|
|
|
* \param i The icon owning the menu.
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param *menu The menu to which the warning applies.
|
|
|
|
* \param *selection The wimp menu selection data.
|
|
|
|
* \param action The selected menu action.
|
2005-02-07 17:28:43 +03:00
|
|
|
*/
|
2006-04-11 06:39:55 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
void ro_gui_global_history_menu_warning(wimp_w w, wimp_i i, wimp_menu *menu,
|
2010-10-05 23:14:46 +04:00
|
|
|
wimp_selection *selection, menu_action action)
|
|
|
|
{
|
|
|
|
/* Do nothing */
|
2006-04-11 06:39:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Handle selections from the global history menu
|
2006-04-11 06:39:55 +04:00
|
|
|
*
|
2011-02-21 02:16:33 +03:00
|
|
|
* \param w The window owning the menu.
|
|
|
|
* \param i The icon owning the menu.
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param *menu The menu from which the selection was made.
|
|
|
|
* \param *selection The wimp menu selection data.
|
|
|
|
* \param action The selected menu action.
|
|
|
|
* \return true if action accepted; else false.
|
2006-04-11 06:39:55 +04:00
|
|
|
*/
|
2005-04-08 00:46:22 +04:00
|
|
|
|
2011-02-21 02:16:33 +03:00
|
|
|
bool ro_gui_global_history_menu_select(wimp_w w, wimp_i i, wimp_menu *menu,
|
2010-10-05 23:14:46 +04:00
|
|
|
wimp_selection *selection, menu_action action)
|
|
|
|
{
|
|
|
|
switch (action) {
|
|
|
|
case HISTORY_EXPORT:
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_gui_dialog_open_persistent(w, dialog_saveas, true);
|
2006-04-11 06:39:55 +04:00
|
|
|
return true;
|
2010-10-05 23:14:46 +04:00
|
|
|
case TREE_EXPAND_ALL:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_expand(false);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_EXPAND_FOLDERS:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_expand(true);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_EXPAND_LINKS:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_expand(false);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_COLLAPSE_ALL:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_contract(true);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_COLLAPSE_FOLDERS:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_contract(true);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_COLLAPSE_LINKS:
|
2013-09-03 15:36:55 +04:00
|
|
|
global_history_contract(false);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_SELECTION_LAUNCH:
|
2013-09-03 01:41:04 +04:00
|
|
|
global_history_keypress(KEY_CR);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_SELECTION_DELETE:
|
2013-09-03 01:41:04 +04:00
|
|
|
global_history_keypress(KEY_DELETE_LEFT);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_SELECT_ALL:
|
2013-09-03 01:41:04 +04:00
|
|
|
global_history_keypress(KEY_SELECT_ALL);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
|
|
|
case TREE_CLEAR_SELECTION:
|
2013-09-03 01:41:04 +04:00
|
|
|
global_history_keypress(KEY_CLEAR_SELECTION);
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
2010-10-25 01:52:16 +04:00
|
|
|
case TOOLBAR_BUTTONS:
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_set_display_buttons(global_history_window.toolbar,
|
|
|
|
!ro_toolbar_get_display_buttons(
|
|
|
|
global_history_window.toolbar));
|
2010-10-25 01:52:16 +04:00
|
|
|
return true;
|
|
|
|
case TOOLBAR_EDIT:
|
2011-02-21 02:16:33 +03:00
|
|
|
ro_toolbar_toggle_edit(global_history_window.toolbar);
|
2010-10-25 01:52:16 +04:00
|
|
|
return true;
|
2010-10-05 23:14:46 +04:00
|
|
|
default:
|
|
|
|
return false;
|
2005-12-31 07:36:24 +03:00
|
|
|
}
|
2006-04-11 06:39:55 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
return false;
|
2005-12-31 07:36:24 +03:00
|
|
|
}
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Check if a particular window handle is the global history window
|
2005-02-07 17:28:43 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param window the window in question
|
|
|
|
* \return true if this window is the global history
|
2005-02-07 17:28:43 +03:00
|
|
|
*/
|
2005-04-08 00:46:22 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
bool ro_gui_global_history_check_window(wimp_w window)
|
|
|
|
{
|
2010-10-25 01:52:16 +04:00
|
|
|
if (global_history_window.window == window)
|
2010-10-05 23:14:46 +04:00
|
|
|
return true;
|
2010-10-25 01:52:16 +04:00
|
|
|
else
|
2010-10-05 23:14:46 +04:00
|
|
|
return false;
|
2005-02-07 17:28:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-05 23:14:46 +04:00
|
|
|
* Check if a particular menu handle is the global history menu
|
2005-02-07 17:28:43 +03:00
|
|
|
*
|
2010-10-05 23:14:46 +04:00
|
|
|
* \param *menu The menu in question.
|
|
|
|
* \return true if this menu is the global history menu
|
2005-02-07 17:28:43 +03:00
|
|
|
*/
|
2010-10-05 23:14:46 +04:00
|
|
|
|
|
|
|
bool ro_gui_global_history_check_menu(wimp_menu *menu)
|
2006-04-10 03:21:13 +04:00
|
|
|
{
|
2010-10-05 23:14:46 +04:00
|
|
|
if (global_history_window.menu == menu)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
2005-02-07 17:28:43 +03:00
|
|
|
}
|
2010-10-05 23:14:46 +04:00
|
|
|
|