1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* MATE Search Tool
*
* File: gsearchtool-callbacks.h
*
* (C) 2002 the Free Software Foundation
*
* Authors: Dennis Cranston <dennis_cranston@yahoo.com>
* George Lebl
*
* This program 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; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef _GSEARCHTOOL_CALLBACKS_H_
#define _GSEARCHTOOL_CALLBACKS_H_
#ifdef __cplusplus
extern "C" {
#pragma }
#endif
#include "eggsmclient.h"
void
version_cb (const gchar * option_name,
const gchar * value,
gpointer data,
GError ** error);
void
quit_session_cb (EggSMClient * client,
gpointer data);
void
quit_cb (GtkWidget * widget,
GdkEvent * event,
gpointer data);
void
click_close_cb (GtkWidget * widget,
gpointer data);
void
click_find_cb (GtkWidget * widget,
gpointer data);
void
click_stop_cb (GtkWidget * widget,
gpointer data);
void
click_help_cb (GtkWidget * widget,
gpointer data);
void
click_expander_cb (GObject * object,
GParamSpec * param_spec,
gpointer data);
void
size_allocate_cb (GtkWidget * widget,
GtkAllocation * allocation,
gpointer data);
void
add_constraint_cb (GtkWidget * widget,
gpointer data);
void
remove_constraint_cb (GtkWidget * widget,
gpointer data);
void
constraint_activate_cb (GtkWidget * widget,
gpointer data);
void
constraint_update_info_cb (GtkWidget * widget,
gpointer data);
void
name_contains_activate_cb (GtkWidget * widget,
gpointer data);
void
look_in_folder_changed_cb (GtkWidget * widget,
gpointer data);
void
open_file_cb (GtkMenuItem * action,
gpointer data);
void
open_file_event_cb (GtkWidget * widget,
GdkEventButton * event,
gpointer data);
void
open_folder_cb (GtkAction * action,
gpointer data);
void
file_changed_cb (GFileMonitor * handle,
const gchar * monitor_uri,
const gchar * info_uri,
GFileMonitorEvent event_type,
gpointer data);
void
move_to_trash_cb (GtkAction * action,
gpointer data);
void
drag_begin_file_cb (GtkWidget * widget,
GdkDragContext * context,
gpointer data);
void
drag_file_cb (GtkWidget * widget,
GdkDragContext * context,
GtkSelectionData * selection_data,
guint info,
guint time,
gpointer data);
void
show_file_selector_cb (GtkAction * action,
gpointer data);
void
save_results_cb (GtkWidget * chooser,
gint response,
gpointer data);
void
save_session_cb (EggSMClient * client,
GKeyFile * state_file,
gpointer client_data);
gboolean
key_press_cb (GtkWidget * widget,
GdkEventKey * event,
gpointer data);
gboolean
file_button_release_event_cb (GtkWidget * widget,
GdkEventButton * event,
gpointer data);
gboolean
file_event_after_cb (GtkWidget * widget,
GdkEventButton * event,
gpointer data);
gboolean
file_button_press_event_cb (GtkWidget * widget,
GdkEventButton * event,
gpointer data);
gboolean
file_key_press_event_cb (GtkWidget * widget,
GdkEventKey * event,
gpointer data);
gboolean
file_motion_notify_cb (GtkWidget *widget,
GdkEventMotion *event,
gpointer user_data);
gboolean
file_leave_notify_cb (GtkWidget *widget,
GdkEventCrossing *event,
gpointer user_data);
gboolean
not_running_timeout_cb (gpointer data);
void
disable_quick_search_cb (GtkWidget * dialog,
gint response,
gpointer data);
void
single_click_to_activate_key_changed_cb (GSettings * settings,
gchar * key,
gpointer user_data);
void
columns_changed_cb (GtkTreeView * treeview,
gpointer user_data);
gboolean
window_state_event_cb (GtkWidget * widget,
GdkEventWindowState * event,
gpointer data);
#ifdef __cplusplus
}
#endif
#endif /* _GSEARCHTOOL_CALLBACKS_H_ */
|