• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/

Lines Matching refs:NULL

34 static TrCore * myCore = NULL;
35 static GtkActionGroup * myGroup = NULL;
45 { "sort-by-activity", NULL, N_( "Sort by _Activity" ), NULL, NULL, 0 },
46 { "sort-by-name", NULL, N_( "Sort by _Name" ), NULL, NULL, 1 },
47 { "sort-by-progress", NULL, N_( "Sort by _Progress" ), NULL, NULL, 2 },
48 { "sort-by-queue", NULL, N_( "Sort by _Queue" ), NULL, NULL, 3 },
49 { "sort-by-ratio", NULL, N_( "Sort by Rati_o" ), NULL, NULL, 4 },
50 { "sort-by-state", NULL, N_( "Sort by Stat_e" ), NULL, NULL, 5 },
51 { "sort-by-age", NULL, N_( "Sort by A_ge" ), NULL, NULL, 6 },
52 { "sort-by-time-left", NULL, N_( "Sort by Time _Left" ), NULL, NULL, 7 },
53 { "sort-by-size", NULL, N_( "Sort by Si_ze" ), NULL, NULL, 8 }
70 { "toggle-main-window", NULL, N_( "_Show Transmission" ), NULL, NULL, G_CALLBACK( action_cb ), TRUE },
71 { "toggle-message-log", NULL, N_( "Message _Log" ), NULL, NULL, G_CALLBACK( action_cb ), FALSE }
86 { "alt-speed-enabled", NULL, N_( "Enable Alternative Speed _Limits" ), NULL, NULL, G_CALLBACK( toggle_pref_cb ), FALSE },
87 { "compact-view", NULL, N_( "_Compact View" ), "<alt>C", NULL, G_CALLBACK( toggle_pref_cb ), FALSE },
88 { "sort-reversed", NULL, N_( "Re_verse Sort Order" ), NULL, NULL, G_CALLBACK( toggle_pref_cb ), FALSE },
89 { "show-filterbar", NULL, N_( "_Filterbar" ), NULL, NULL, G_CALLBACK( toggle_pref_cb ), FALSE },
90 { "show-statusbar", NULL, N_( "_Statusbar" ), NULL, NULL, G_CALLBACK( toggle_pref_cb ), FALSE },
91 { "show-toolbar", NULL, N_( "_Toolbar" ), NULL, NULL, G_CALLBACK( toggle_pref_cb ), FALSE }
96 { "file-menu", NULL, N_( "_File" ), NULL, NULL, NULL },
97 { "torrent-menu", NULL, N_( "_Torrent" ), NULL, NULL, NULL },
98 { "view-menu", NULL, N_( "_View" ), NULL, NULL, NULL },
99 { "sort-menu", NULL, N_( "_Sort Torrents By" ), NULL, NULL, NULL },
100 { "queue-menu", NULL, N_( "_Queue" ), NULL, NULL, NULL },
101 { "edit-menu", NULL, N_( "_Edit" ), NULL, NULL, NULL },
102 { "help-menu", NULL, N_( "_Help" ), NULL, NULL, NULL },
103 { "copy-magnet-link-to-clipboard", GTK_STOCK_COPY, N_("Copy _Magnet Link to Clipboard" ), "", NULL, G_CALLBACK( action_cb ) },
105 { "open-torrent-toolbar", GTK_STOCK_OPEN, NULL, NULL, N_( "Open a torrent" ), G_CALLBACK( action_cb ) },
106 { "open-torrent-menu", GTK_STOCK_OPEN, NULL, NULL, N_( "Open a torrent" ), G_CALLBACK( action_cb ) },
109 { "show-stats", NULL, N_( "_Statistics" ), NULL, NULL, G_CALLBACK( action_cb ) },
110 { "donate", NULL, N_( "_Donate" ), NULL, NULL, G_CALLBACK( action_cb ) },
111 { "torrent-verify", NULL, N_( "_Verify Local Data" ), "<control>V", NULL, G_CALLBACK( action_cb ) },
113 { "pause-all-torrents", GTK_STOCK_MEDIA_PAUSE, N_( "_Pause All" ), NULL, N_( "Pause all torrents" ), G_CALLBACK( action_cb ) },
114 { "start-all-torrents", GTK_STOCK_MEDIA_PLAY, N_( "_Start All" ), NULL, N_( "Start all torrents" ), G_CALLBACK( action_cb ) },
115 { "relocate-torrent", NULL, N_("Set _Location���" ), NULL, NULL, G_CALLBACK( action_cb ) },
116 { "remove-torrent", GTK_STOCK_REMOVE, NULL, "Delete", N_( "Remove torrent" ), G_CALLBACK( action_cb ) },
117 { "delete-torrent", GTK_STOCK_DELETE, N_( "_Delete Files and Remove" ), "<shift>Delete", NULL, G_CALLBACK( action_cb ) },
118 { "new-torrent", GTK_STOCK_NEW, N_( "_New���" ), NULL, N_( "Create a torrent" ), G_CALLBACK( action_cb ) },
119 { "quit", GTK_STOCK_QUIT, N_( "_Quit" ), NULL, NULL, G_CALLBACK( action_cb ) },
120 { "select-all", GTK_STOCK_SELECT_ALL, N_( "Select _All" ), "<control>A", NULL, G_CALLBACK( action_cb ) },
121 { "deselect-all", NULL, N_( "Dese_lect All" ), "<shift><control>A", NULL, G_CALLBACK( action_cb ) },
122 { "edit-preferences", GTK_STOCK_PREFERENCES, NULL, NULL, NULL, G_CALLBACK( action_cb ) },
123 { "show-torrent-properties", GTK_STOCK_PROPERTIES, NULL, "<alt>Return", N_( "Torrent properties" ), G_CALLBACK( action_cb ) },
124 { "open-torrent-folder", GTK_STOCK_OPEN, N_( "Open Fold_er" ), "<control>E", NULL, G_CALLBACK( action_cb ) },
125 { "show-about-dialog", GTK_STOCK_ABOUT, NULL, NULL, NULL, G_CALLBACK( action_cb ) },
126 { "help", GTK_STOCK_HELP, N_( "_Contents" ), "F1", NULL, G_CALLBACK( action_cb ) },
127 { "torrent-reannounce", GTK_STOCK_NETWORK, N_( "Ask Tracker for _More Peers" ), NULL, NULL, G_CALLBACK( action_cb ) },
128 { "queue-move-top", GTK_STOCK_GOTO_TOP, N_( "Move to _Top" ), NULL, NULL, G_CALLBACK( action_cb ) },
129 { "queue-move-up", GTK_STOCK_GO_UP, N_( "Move _Up" ), NULL, NULL, G_CALLBACK( action_cb ) },
130 { "queue-move-down", GTK_STOCK_GO_DOWN, N_( "Move _Down" ), NULL, NULL, G_CALLBACK( action_cb ) },
131 { "queue-move-bottom", GTK_STOCK_GOTO_BOTTOM, N_( "Move to _Bottom" ), NULL, NULL, G_CALLBACK( action_cb ) },
132 { "present-main-window", NULL, N_( "Present Main Window" ), NULL, NULL, G_CALLBACK( action_cb ) }
177 NULL );
191 static GtkUIManager * myUIManager = NULL;
213 gtk_action_group_set_translation_domain( action_group, NULL );
227 NULL );
255 static GHashTable * key_to_action = NULL;
262 if( key_to_action != NULL )
266 g_hash_table_new_full( g_str_hash, g_str_equal, g_free, NULL );
268 for( l = gtk_ui_manager_get_action_groups( uim ); l != NULL;
274 for( ait = actions; ait != NULL; ait = ait->next )
296 g_assert( action != NULL );
305 g_assert( action != NULL );
306 g_object_set( action, "sensitive", b, NULL );
314 g_assert( action != NULL );
315 g_object_set( action, "is-important", b, NULL );