2008-02-13 03:00:21 +00:00
|
|
|
/*
|
2009-01-10 23:09:07 +00:00
|
|
|
* This file Copyright (C) 2008-2009 Charles Kerr <charles@transmissionbt.com>
|
2008-02-13 03:00:21 +00:00
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-02-13 03:00:21 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2008-09-23 19:11:04 +00:00
|
|
|
*
|
2008-02-26 21:08:51 +00:00
|
|
|
* $Id$
|
2008-02-13 03:00:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include <gtk/gtk.h>
|
2008-04-03 02:11:15 +00:00
|
|
|
#include "add-dialog.h"
|
2008-03-18 20:41:27 +00:00
|
|
|
#include "conf.h"
|
2008-02-13 03:00:21 +00:00
|
|
|
#include "file-list.h"
|
|
|
|
#include "hig.h"
|
2008-03-18 20:41:27 +00:00
|
|
|
#include "tr-prefs.h"
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2008-07-02 00:17:27 +00:00
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
#define N_RECENT 4
|
|
|
|
|
|
|
|
static GSList*
|
|
|
|
get_recent_destinations( void )
|
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
int i;
|
2008-07-02 00:17:27 +00:00
|
|
|
GSList * list = NULL;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
|
|
|
for( i = 0; i < N_RECENT; ++i )
|
2008-07-02 00:17:27 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
char key[64];
|
2008-07-02 00:17:27 +00:00
|
|
|
const char * val;
|
2008-09-23 19:11:04 +00:00
|
|
|
g_snprintf( key, sizeof( key ), "recent-download-dir-%d", i + 1 );
|
|
|
|
if( ( val = pref_string_get( key ) ) )
|
2008-07-02 00:17:27 +00:00
|
|
|
list = g_slist_append( list, (void*)val );
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-12-13 23:17:36 +00:00
|
|
|
save_recent_destination( TrCore * core, const char * dir )
|
2008-07-02 00:17:27 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
int i;
|
2008-07-02 00:17:27 +00:00
|
|
|
GSList * list = get_recent_destinations( );
|
|
|
|
GSList * l;
|
|
|
|
|
|
|
|
if( !dir )
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* if it was already in the list, remove it */
|
2008-09-23 19:11:04 +00:00
|
|
|
if( ( l = g_slist_find_custom( list, dir, (GCompareFunc)strcmp ) ) )
|
2008-07-02 00:17:27 +00:00
|
|
|
list = g_slist_delete_link( list, l );
|
|
|
|
|
|
|
|
/* add it to the front of the list */
|
|
|
|
list = g_slist_prepend( list, (void*)dir );
|
|
|
|
|
|
|
|
/* make local copies of the strings that aren't
|
|
|
|
* invalidated by pref_string_set() */
|
2008-09-23 19:11:04 +00:00
|
|
|
for( l = list; l; l = l->next )
|
|
|
|
l->data = g_strdup( l->data );
|
2008-07-02 00:17:27 +00:00
|
|
|
|
|
|
|
/* save the first N_RECENT directories */
|
2008-09-23 19:11:04 +00:00
|
|
|
for( l = list, i = 0; l && ( i < N_RECENT ); ++i, l = l->next )
|
|
|
|
{
|
2008-07-02 00:17:27 +00:00
|
|
|
char key[64];
|
2008-09-23 19:11:04 +00:00
|
|
|
g_snprintf( key, sizeof( key ), "recent-download-dir-%d", i + 1 );
|
2008-07-02 00:17:27 +00:00
|
|
|
pref_string_set( key, l->data );
|
|
|
|
}
|
2008-12-13 23:17:36 +00:00
|
|
|
pref_save( tr_core_session( core ) );
|
2008-07-02 00:17:27 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
g_slist_foreach( list, (GFunc)g_free, NULL );
|
|
|
|
g_slist_free( list );
|
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
2008-04-03 02:11:15 +00:00
|
|
|
struct AddData
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
TrCore * core;
|
|
|
|
GtkWidget * list;
|
|
|
|
GtkWidget * run_check;
|
|
|
|
GtkWidget * trash_check;
|
|
|
|
char * filename;
|
|
|
|
char * downloadDir;
|
|
|
|
TrTorrent * gtor;
|
|
|
|
tr_ctor * ctor;
|
2008-02-13 03:00:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2008-05-20 23:58:59 +00:00
|
|
|
removeOldTorrent( struct AddData * data )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
|
|
|
if( data->gtor )
|
|
|
|
{
|
2009-04-24 01:37:04 +00:00
|
|
|
file_list_clear( data->list );
|
2008-05-20 23:58:59 +00:00
|
|
|
tr_torrent_set_remove_flag( data->gtor, TRUE );
|
2008-02-13 03:00:21 +00:00
|
|
|
g_object_unref( G_OBJECT( data->gtor ) );
|
|
|
|
data->gtor = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
addResponseCB( GtkDialog * dialog,
|
|
|
|
gint response,
|
|
|
|
gpointer gdata )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2008-04-03 02:11:15 +00:00
|
|
|
struct AddData * data = gdata;
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
if( data->gtor )
|
|
|
|
{
|
|
|
|
if( response != GTK_RESPONSE_ACCEPT )
|
2008-12-13 23:17:36 +00:00
|
|
|
{
|
2008-05-20 23:58:59 +00:00
|
|
|
removeOldTorrent( data );
|
2008-12-13 23:17:36 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
else
|
|
|
|
{
|
2008-12-13 23:17:36 +00:00
|
|
|
if( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( data->run_check ) ) )
|
2008-02-13 03:00:21 +00:00
|
|
|
tr_torrentStart( tr_torrent_handle( data->gtor ) );
|
2008-12-13 23:17:36 +00:00
|
|
|
|
2008-02-13 03:00:21 +00:00
|
|
|
tr_core_add_torrent( data->core, data->gtor );
|
2008-12-13 23:17:36 +00:00
|
|
|
|
|
|
|
if( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( data->trash_check ) ) )
|
|
|
|
|
2009-01-22 20:46:21 +00:00
|
|
|
tr_file_trash_or_remove( data->filename );
|
2008-12-13 23:17:36 +00:00
|
|
|
save_recent_destination( data->core, data->downloadDir );
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_ctorFree( data->ctor );
|
|
|
|
g_free( data->filename );
|
2008-05-18 16:44:30 +00:00
|
|
|
g_free( data->downloadDir );
|
2008-02-13 03:00:21 +00:00
|
|
|
g_free( data );
|
|
|
|
gtk_widget_destroy( GTK_WIDGET( dialog ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-04-03 02:11:15 +00:00
|
|
|
updateTorrent( struct AddData * o )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2009-04-24 01:37:04 +00:00
|
|
|
if( !o->gtor )
|
|
|
|
file_list_clear( o->list );
|
|
|
|
else {
|
|
|
|
tr_torrent * tor = tr_torrent_handle( o->gtor );
|
|
|
|
tr_torrentSetDownloadDir( tor, o->downloadDir );
|
|
|
|
file_list_set_torrent( o->list, tr_torrentId( tor ) );
|
|
|
|
}
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
|
|
|
|
2008-08-14 03:37:02 +00:00
|
|
|
/**
|
|
|
|
* When the source .torrent file is deleted
|
|
|
|
* (such as, if it was a temp file that a web browser passed to us),
|
|
|
|
* gtk invokes this callback and `filename' will be NULL.
|
|
|
|
* The `filename' tests here are to prevent us from losing the current
|
|
|
|
* metadata when that happens.
|
|
|
|
*/
|
2008-02-13 03:00:21 +00:00
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
sourceChanged( GtkFileChooserButton * b,
|
|
|
|
gpointer gdata )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2008-04-03 02:11:15 +00:00
|
|
|
struct AddData * data = gdata;
|
2008-09-23 19:11:04 +00:00
|
|
|
char * filename = gtk_file_chooser_get_filename(
|
|
|
|
GTK_FILE_CHOOSER( b ) );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
/* maybe instantiate a torrent */
|
2008-08-14 03:37:02 +00:00
|
|
|
if( data->filename || !data->gtor )
|
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
int err = 0;
|
|
|
|
int new_file = 0;
|
2008-02-13 03:00:21 +00:00
|
|
|
tr_torrent * torrent;
|
2008-08-14 03:37:02 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
if( filename
|
|
|
|
&& ( !data->filename || strcmp( filename, data->filename ) ) )
|
2008-08-14 03:37:02 +00:00
|
|
|
{
|
|
|
|
g_free( data->filename );
|
|
|
|
data->filename = g_strdup( filename );
|
|
|
|
tr_ctorSetMetainfoFromFile( data->ctor, data->filename );
|
|
|
|
new_file = 1;
|
|
|
|
}
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
tr_ctorSetDownloadDir( data->ctor, TR_FORCE, data->downloadDir );
|
2008-02-14 17:18:00 +00:00
|
|
|
tr_ctorSetPaused( data->ctor, TR_FORCE, TRUE );
|
|
|
|
tr_ctorSetDeleteSource( data->ctor, FALSE );
|
2008-08-14 03:37:02 +00:00
|
|
|
|
2009-04-02 17:30:29 +00:00
|
|
|
if( ( torrent = tr_torrentNew( data->ctor, &err ) ) )
|
2008-09-23 19:11:04 +00:00
|
|
|
{
|
2008-08-14 03:37:02 +00:00
|
|
|
removeOldTorrent( data );
|
2008-02-13 03:00:21 +00:00
|
|
|
data->gtor = tr_torrent_new_preexisting( torrent );
|
2008-09-23 19:11:04 +00:00
|
|
|
}
|
|
|
|
else if( new_file )
|
|
|
|
{
|
|
|
|
addTorrentErrorDialog( GTK_WIDGET( b ), err, data->filename );
|
2008-08-14 03:37:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
updateTorrent( data );
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
|
|
|
|
2008-08-14 03:37:02 +00:00
|
|
|
g_free( filename );
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
verifyRequested( GtkButton * button UNUSED,
|
|
|
|
gpointer gdata )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2008-04-03 02:11:15 +00:00
|
|
|
struct AddData * data = gdata;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-02-13 03:00:21 +00:00
|
|
|
if( data->gtor )
|
2008-02-27 17:38:39 +00:00
|
|
|
tr_torrentVerify( tr_torrent_handle( data->gtor ) );
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
downloadDirChanged( GtkFileChooserButton * b,
|
|
|
|
gpointer gdata )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
char * fname = gtk_file_chooser_get_filename(
|
|
|
|
GTK_FILE_CHOOSER( b ) );
|
2008-08-14 03:37:02 +00:00
|
|
|
struct AddData * data = gdata;
|
|
|
|
|
|
|
|
if( fname && ( !data->downloadDir || strcmp( fname, data->downloadDir ) ) )
|
2008-04-13 01:36:53 +00:00
|
|
|
{
|
2008-05-18 16:44:30 +00:00
|
|
|
g_free( data->downloadDir );
|
2008-08-14 03:37:02 +00:00
|
|
|
data->downloadDir = g_strdup( fname );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2008-04-13 01:36:53 +00:00
|
|
|
updateTorrent( data );
|
|
|
|
verifyRequested( NULL, data );
|
|
|
|
}
|
2008-08-14 03:37:02 +00:00
|
|
|
|
|
|
|
g_free( fname );
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
|
|
|
|
2008-03-19 20:34:35 +00:00
|
|
|
static void
|
|
|
|
addTorrentFilters( GtkFileChooser * chooser )
|
|
|
|
{
|
|
|
|
GtkFileFilter * filter;
|
|
|
|
|
|
|
|
filter = gtk_file_filter_new( );
|
|
|
|
gtk_file_filter_set_name( filter, _( "Torrent files" ) );
|
|
|
|
gtk_file_filter_add_pattern( filter, "*.torrent" );
|
|
|
|
gtk_file_chooser_add_filter( chooser, filter );
|
|
|
|
|
|
|
|
filter = gtk_file_filter_new( );
|
|
|
|
gtk_file_filter_set_name( filter, _( "All files" ) );
|
|
|
|
gtk_file_filter_add_pattern( filter, "*" );
|
|
|
|
gtk_file_chooser_add_filter( chooser, filter );
|
|
|
|
}
|
|
|
|
|
2008-02-13 03:00:21 +00:00
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
2008-02-19 05:52:37 +00:00
|
|
|
GtkWidget*
|
2008-09-23 19:11:04 +00:00
|
|
|
addSingleTorrentDialog( GtkWindow * parent,
|
|
|
|
TrCore * core,
|
|
|
|
tr_ctor * ctor )
|
2008-02-13 03:00:21 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
int row;
|
|
|
|
int col;
|
|
|
|
const char * str;
|
|
|
|
GtkWidget * w;
|
|
|
|
GtkWidget * d;
|
|
|
|
GtkWidget * t;
|
|
|
|
GtkWidget * l;
|
2008-04-03 02:11:15 +00:00
|
|
|
struct AddData * data;
|
2008-09-23 19:11:04 +00:00
|
|
|
uint8_t flag;
|
|
|
|
GSList * list;
|
|
|
|
GSList * walk;
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
/* make the dialog */
|
2008-09-23 19:11:04 +00:00
|
|
|
d = gtk_dialog_new_with_buttons( _(
|
|
|
|
"Torrent Options" ), parent,
|
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT |
|
|
|
|
GTK_DIALOG_NO_SEPARATOR,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_ADD, GTK_RESPONSE_ACCEPT,
|
|
|
|
NULL );
|
2008-02-28 14:48:23 +00:00
|
|
|
gtk_dialog_set_default_response( GTK_DIALOG( d ),
|
|
|
|
GTK_RESPONSE_ACCEPT );
|
|
|
|
gtk_dialog_set_alternative_button_order( GTK_DIALOG( d ),
|
|
|
|
GTK_RESPONSE_ACCEPT,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1 );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
if( tr_ctorGetDownloadDir( ctor, TR_FORCE, &str ) )
|
2008-02-13 03:57:48 +00:00
|
|
|
g_assert_not_reached( );
|
2008-04-13 01:36:53 +00:00
|
|
|
g_assert( str );
|
2008-03-18 16:18:22 +00:00
|
|
|
|
2008-04-03 02:11:15 +00:00
|
|
|
data = g_new0( struct AddData, 1 );
|
2008-02-13 03:00:21 +00:00
|
|
|
data->core = core;
|
|
|
|
data->ctor = ctor;
|
|
|
|
data->filename = g_strdup( tr_ctorGetSourceFile( ctor ) );
|
2008-05-18 16:44:30 +00:00
|
|
|
data->downloadDir = g_strdup( str );
|
2009-04-24 01:37:04 +00:00
|
|
|
data->list = file_list_new( core, 0 );
|
2008-09-23 19:11:04 +00:00
|
|
|
data->trash_check =
|
|
|
|
gtk_check_button_new_with_mnemonic( _( "_Move source file to Trash" ) );
|
|
|
|
data->run_check =
|
|
|
|
gtk_check_button_new_with_mnemonic( _( "_Start when added" ) );
|
2008-03-18 16:18:22 +00:00
|
|
|
|
2008-02-14 17:18:00 +00:00
|
|
|
g_signal_connect( G_OBJECT( d ), "response",
|
2008-04-03 02:11:15 +00:00
|
|
|
G_CALLBACK( addResponseCB ), data );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
t = gtk_table_new( 6, 2, FALSE );
|
|
|
|
gtk_container_set_border_width( GTK_CONTAINER( t ), GUI_PAD_BIG );
|
|
|
|
gtk_table_set_row_spacings( GTK_TABLE( t ), GUI_PAD );
|
|
|
|
gtk_table_set_col_spacings( GTK_TABLE( t ), GUI_PAD_BIG );
|
|
|
|
|
|
|
|
row = col = 0;
|
2008-07-19 19:55:08 +00:00
|
|
|
l = gtk_label_new_with_mnemonic( _( "_Torrent file:" ) );
|
2008-02-13 03:00:21 +00:00
|
|
|
gtk_misc_set_alignment( GTK_MISC( l ), 0.0f, 0.5f );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), l, col, col + 1, row, row + 1, GTK_FILL, 0,
|
|
|
|
0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
++col;
|
2008-03-19 20:34:35 +00:00
|
|
|
w = gtk_file_chooser_button_new( _( "Select Source File" ),
|
2008-02-14 17:18:00 +00:00
|
|
|
GTK_FILE_CHOOSER_ACTION_OPEN );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), w, col, col + 1, row, row + 1, ~0, 0, 0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
gtk_label_set_mnemonic_widget( GTK_LABEL( l ), w );
|
2008-03-19 20:34:35 +00:00
|
|
|
addTorrentFilters( GTK_FILE_CHOOSER( w ) );
|
2008-02-13 03:00:21 +00:00
|
|
|
if( data->filename )
|
2008-09-23 19:11:04 +00:00
|
|
|
if( !gtk_file_chooser_set_filename( GTK_FILE_CHOOSER( w ),
|
|
|
|
data->filename ) )
|
2008-02-13 04:34:51 +00:00
|
|
|
g_warning( "couldn't select '%s'", data->filename );
|
2008-05-06 01:43:24 +00:00
|
|
|
g_signal_connect( w, "selection-changed",
|
|
|
|
G_CALLBACK( sourceChanged ), data );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
++row;
|
|
|
|
col = 0;
|
2008-03-19 17:14:47 +00:00
|
|
|
l = gtk_label_new_with_mnemonic( _( "_Destination folder:" ) );
|
2008-02-13 03:00:21 +00:00
|
|
|
gtk_misc_set_alignment( GTK_MISC( l ), 0.0f, 0.5f );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), l, col, col + 1, row, row + 1, GTK_FILL, 0,
|
|
|
|
0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
++col;
|
2008-09-23 19:11:04 +00:00
|
|
|
w = gtk_file_chooser_button_new( _(
|
|
|
|
"Select Destination Folder" ),
|
|
|
|
GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER );
|
|
|
|
if( !gtk_file_chooser_set_filename( GTK_FILE_CHOOSER( w ),
|
|
|
|
data->downloadDir ) )
|
2008-05-18 16:44:30 +00:00
|
|
|
g_warning( "couldn't select '%s'", data->downloadDir );
|
2008-07-02 00:17:27 +00:00
|
|
|
list = get_recent_destinations( );
|
2008-09-23 19:11:04 +00:00
|
|
|
for( walk = list; walk; walk = walk->next )
|
|
|
|
gtk_file_chooser_add_shortcut_folder( GTK_FILE_CHOOSER(
|
|
|
|
w ), walk->data, NULL );
|
2008-07-02 00:17:27 +00:00
|
|
|
g_slist_free( list );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), w, col, col + 1, row, row + 1, ~0, 0, 0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
gtk_label_set_mnemonic_widget( GTK_LABEL( l ), w );
|
2008-09-23 19:11:04 +00:00
|
|
|
g_signal_connect( w, "selection-changed",
|
|
|
|
G_CALLBACK( downloadDirChanged ), data );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
++row;
|
|
|
|
col = 0;
|
2008-03-18 16:18:22 +00:00
|
|
|
w = data->list;
|
2008-02-13 03:00:21 +00:00
|
|
|
gtk_widget_set_size_request ( w, 466u, 300u );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach_defaults( GTK_TABLE(
|
|
|
|
t ), w, col, col + 2, row, row + 1 );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
++row;
|
|
|
|
col = 0;
|
2008-07-19 19:55:08 +00:00
|
|
|
w = gtk_button_new_with_mnemonic( _( "_Verify Local Data" ) );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), w, col, col + 1, row, row + 1, GTK_FILL, 0,
|
|
|
|
0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
g_signal_connect( w, "clicked", G_CALLBACK( verifyRequested ), data );
|
|
|
|
|
|
|
|
++row;
|
|
|
|
col = 0;
|
2008-03-18 19:14:21 +00:00
|
|
|
w = data->run_check;
|
|
|
|
if( tr_ctorGetPaused( ctor, TR_FORCE, &flag ) )
|
2008-03-09 15:27:08 +00:00
|
|
|
g_assert_not_reached( );
|
2008-03-18 19:14:21 +00:00
|
|
|
gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( w ), !flag );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), w, col, col + 2, row, row + 1, GTK_FILL, 0,
|
|
|
|
0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
++row;
|
|
|
|
col = 0;
|
2008-03-18 19:14:21 +00:00
|
|
|
w = data->trash_check;
|
|
|
|
if( tr_ctorGetDeleteSource( ctor, &flag ) )
|
2008-02-13 03:57:48 +00:00
|
|
|
g_assert_not_reached( );
|
2008-03-18 19:14:21 +00:00
|
|
|
gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( w ), flag );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_table_attach( GTK_TABLE(
|
|
|
|
t ), w, col, col + 2, row, row + 1, GTK_FILL, 0,
|
|
|
|
0, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2008-10-31 18:25:21 +00:00
|
|
|
gtk_box_pack_start( GTK_BOX( GTK_DIALOG( d )->vbox ), t, TRUE, TRUE, 0 );
|
2008-02-13 03:00:21 +00:00
|
|
|
gtk_widget_show_all( d );
|
2008-02-19 05:52:37 +00:00
|
|
|
return d;
|
2008-02-13 03:00:21 +00:00
|
|
|
}
|
2008-03-18 01:22:11 +00:00
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
onAddDialogResponse( GtkDialog * dialog,
|
|
|
|
int response,
|
|
|
|
gpointer core )
|
2008-03-18 01:22:11 +00:00
|
|
|
{
|
2008-03-19 14:54:32 +00:00
|
|
|
char * folder;
|
|
|
|
|
|
|
|
/* remember this folder the next time we use this dialog */
|
|
|
|
folder = gtk_file_chooser_get_current_folder( GTK_FILE_CHOOSER( dialog ) );
|
2008-03-18 20:41:27 +00:00
|
|
|
pref_string_set( PREF_KEY_OPEN_DIALOG_FOLDER, folder );
|
|
|
|
g_free( folder );
|
|
|
|
|
2008-03-19 14:54:32 +00:00
|
|
|
if( response == GTK_RESPONSE_ACCEPT )
|
|
|
|
{
|
2008-10-28 19:49:33 +00:00
|
|
|
GtkFileChooser * chooser = GTK_FILE_CHOOSER( dialog );
|
|
|
|
GtkWidget * w = gtk_file_chooser_get_extra_widget( chooser );
|
|
|
|
GtkToggleButton * tb = GTK_TOGGLE_BUTTON( w );
|
|
|
|
const gboolean showOptions = gtk_toggle_button_get_active( tb );
|
2008-03-19 14:54:32 +00:00
|
|
|
const pref_flag_t start = PREF_FLAG_DEFAULT;
|
2008-10-28 19:49:33 +00:00
|
|
|
const pref_flag_t prompt = showOptions
|
|
|
|
? PREF_FLAG_TRUE
|
|
|
|
: PREF_FLAG_FALSE;
|
|
|
|
GSList * l = gtk_file_chooser_get_filenames( chooser );
|
|
|
|
|
2008-03-19 14:54:32 +00:00
|
|
|
tr_core_add_list( core, l, start, prompt );
|
2008-03-18 01:22:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_destroy( GTK_WIDGET( dialog ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
2008-04-03 02:11:15 +00:00
|
|
|
addDialog( GtkWindow * parent,
|
2008-09-23 19:11:04 +00:00
|
|
|
TrCore * core )
|
2008-03-18 01:22:11 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
GtkWidget * w;
|
|
|
|
GtkWidget * c;
|
2008-06-12 16:25:36 +00:00
|
|
|
const char * folder;
|
2008-03-18 01:22:11 +00:00
|
|
|
|
2008-04-03 02:13:13 +00:00
|
|
|
w = gtk_file_chooser_dialog_new( _( "Add a Torrent" ), parent,
|
2008-03-18 01:22:11 +00:00
|
|
|
GTK_FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
2008-04-03 02:11:15 +00:00
|
|
|
GTK_STOCK_ADD, GTK_RESPONSE_ACCEPT,
|
2008-03-18 01:22:11 +00:00
|
|
|
NULL );
|
|
|
|
gtk_dialog_set_alternative_button_order( GTK_DIALOG( w ),
|
|
|
|
GTK_RESPONSE_ACCEPT,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1 );
|
|
|
|
gtk_file_chooser_set_select_multiple( GTK_FILE_CHOOSER( w ), TRUE );
|
2008-03-19 20:34:35 +00:00
|
|
|
addTorrentFilters( GTK_FILE_CHOOSER( w ) );
|
2008-09-23 19:11:04 +00:00
|
|
|
g_signal_connect( w, "response", G_CALLBACK(
|
|
|
|
onAddDialogResponse ), core );
|
2008-03-18 01:22:11 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
if( ( folder = pref_string_get( PREF_KEY_OPEN_DIALOG_FOLDER ) ) )
|
2008-03-18 20:41:27 +00:00
|
|
|
gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER( w ), folder );
|
2008-03-19 14:54:32 +00:00
|
|
|
|
|
|
|
c = gtk_check_button_new_with_mnemonic( _( "Display _options dialog" ) );
|
2008-09-23 19:11:04 +00:00
|
|
|
gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( c ),
|
|
|
|
pref_flag_get( PREF_KEY_OPTIONS_PROMPT ) );
|
2008-03-19 14:54:32 +00:00
|
|
|
gtk_file_chooser_set_extra_widget( GTK_FILE_CHOOSER( w ), c );
|
|
|
|
gtk_widget_show( c );
|
2008-03-18 20:41:27 +00:00
|
|
|
|
2008-03-18 01:22:11 +00:00
|
|
|
gtk_widget_show( w );
|
|
|
|
return w;
|
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|