Last change
on this file since 2849 was
2849,
checked in by charles, 15 years ago
|
svn propset svn:keywords 'Date Rev Author Id' filename
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
752 bytes
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> |
---|
3 | * |
---|
4 | * This file is licensed by the GPL version 2. Works owned by the |
---|
5 | * Transmission project are granted a special exemption to clause 2(b) |
---|
6 | * so that the bulk of its code can remain under the MIT license. |
---|
7 | * This exemption does not extend to derived works not owned by |
---|
8 | * the Transmission project. |
---|
9 | * |
---|
10 | * $Id: actions.h 2849 2007-08-18 17:27:28Z charles $ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef TR_ACTIONS_H |
---|
14 | #define TR_ACTIONS_H |
---|
15 | |
---|
16 | #include <gtk/gtk.h> |
---|
17 | |
---|
18 | void actions_init ( GtkUIManager * ui_manager, gpointer callback_user_data ); |
---|
19 | |
---|
20 | void action_activate ( const char * name ); |
---|
21 | |
---|
22 | void action_sensitize ( const char * name, gboolean b ); |
---|
23 | |
---|
24 | void action_toggle ( const char * name, gboolean b ); |
---|
25 | |
---|
26 | GtkWidget* action_get_widget ( const char * path ); |
---|
27 | |
---|
28 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.