2007-06-18 03:40:41 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2007-2014 Mnemosyne LLC
|
2007-06-18 03:40:41 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2008-09-23 19:11:04 +00:00
|
|
|
*
|
2007-06-18 03:40:41 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-06-18 03:40:41 +00:00
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2008-02-26 19:58:03 +00:00
|
|
|
#include "tr-core.h"
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
#define WINDOW_ICON "transmission-main-window-icon"
|
|
|
|
#define TRAY_ICON "transmission-tray-icon"
|
|
|
|
#define NOTIFICATION_ICON "transmission-notification-icon"
|
2010-01-21 20:51:48 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void gtr_actions_init(GtkUIManager* ui_manager, gpointer callback_user_data);
|
|
|
|
void gtr_actions_set_core(TrCore* core);
|
2017-04-20 16:02:19 +00:00
|
|
|
void gtr_actions_handler(char const* action_name, gpointer user_data);
|
2010-01-21 20:51:48 +00:00
|
|
|
|
2017-04-21 07:40:57 +00:00
|
|
|
void gtr_action_activate(char const* action_name);
|
|
|
|
void gtr_action_set_sensitive(char const* action_name, gboolean is_sensitive);
|
|
|
|
void gtr_action_set_toggled(char const* action_name, gboolean is_toggled);
|
|
|
|
void gtr_action_set_important(char const* action_name, gboolean is_important);
|
2017-04-20 16:02:19 +00:00
|
|
|
GtkWidget* gtr_action_get_widget(char const* path);
|