transmission/gtk/tr_core.c

766 lines
23 KiB
C
Raw Normal View History

/******************************************************************************
* $Id$
*
2008-01-01 17:20:20 +00:00
* Copyright (c) 2007-2008 Transmission authors and contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
2007-08-04 01:34:00 +00:00
#include <inttypes.h>
#include <stdio.h>
#include <string.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <libtransmission/transmission.h>
2007-07-23 03:03:45 +00:00
#include <libtransmission/utils.h>
2007-05-23 04:39:06 +00:00
#include "conf.h"
#include "tr_core.h"
#include "tr_prefs.h"
#include "tr_torrent.h"
#include "util.h"
static void
2008-01-19 05:04:38 +00:00
tr_core_marshal_err( GClosure * closure, GValue * ret UNUSED, guint count,
const GValue * vals, gpointer hint UNUSED,
gpointer marshal )
{
typedef void (*TRMarshalErr)
( gpointer, enum tr_core_err, const char *, gpointer );
TRMarshalErr callback;
GCClosure * cclosure = (GCClosure*) closure;
enum tr_core_err errcode;
const char * errstr;
gpointer inst, gdata;
g_return_if_fail( 3 == count );
inst = g_value_peek_pointer( vals );
errcode = g_value_get_int( vals + 1 );
errstr = g_value_get_string( vals + 2 );
gdata = closure->data;
callback = (TRMarshalErr) ( NULL == marshal ?
cclosure->callback : marshal );
callback( inst, errcode, errstr, gdata );
}
static void
2008-01-19 05:04:38 +00:00
tr_core_marshal_prompt( GClosure * closure, GValue * ret UNUSED, guint count,
const GValue * vals, gpointer hint UNUSED,
gpointer marshal )
{
typedef void (*TRMarshalPrompt)
( gpointer, GList *, enum tr_torrent_action, gboolean, gpointer );
TRMarshalPrompt callback;
GCClosure * cclosure = (GCClosure*) closure;
GList * paths;
enum tr_torrent_action action;
gboolean paused;
gpointer inst, gdata;
g_return_if_fail( 4 == count );
inst = g_value_peek_pointer( vals );
paths = g_value_get_pointer( vals + 1 );
action = g_value_get_int( vals + 2 );
paused = g_value_get_boolean( vals + 3 );
gdata = closure->data;
callback = (TRMarshalPrompt) ( NULL == marshal ?
cclosure->callback : marshal );
callback( inst, paths, action, paused, gdata );
}
static void
2008-01-19 05:04:38 +00:00
tr_core_marshal_data( GClosure * closure, GValue * ret UNUSED, guint count,
const GValue * vals, gpointer hint UNUSED,
2007-05-24 10:37:07 +00:00
gpointer marshal )
{
typedef void (*TRMarshalPrompt)
( gpointer, uint8_t *, size_t, gboolean, gpointer );
TRMarshalPrompt callback;
GCClosure * cclosure = (GCClosure*) closure;
uint8_t * data;
size_t size;
gboolean paused;
gpointer inst, gdata;
g_return_if_fail( 4 == count );
inst = g_value_peek_pointer( vals );
data = (uint8_t *) g_value_get_string( vals + 1 );
2007-05-24 10:37:07 +00:00
size = g_value_get_uint( vals + 2 );
paused = g_value_get_boolean( vals + 3 );
gdata = closure->data;
callback = (TRMarshalPrompt) ( NULL == marshal ?
cclosure->callback : marshal );
callback( inst, data, size, paused, gdata );
}
static void
tr_core_dispose( GObject * obj )
{
TrCore * self = (TrCore *) obj;
GObjectClass * parent;
if( self->disposed )
return;
self->disposed = TRUE;
pref_save( NULL );
parent = g_type_class_peek( g_type_parent( TR_CORE_TYPE ) );
parent->dispose( obj );
}
static void
2008-01-19 05:04:38 +00:00
tr_core_class_init( gpointer g_class, gpointer g_class_data UNUSED )
{
GObjectClass * gobject_class;
TrCoreClass * core_class;
gobject_class = G_OBJECT_CLASS( g_class );
gobject_class->dispose = tr_core_dispose;
core_class = TR_CORE_CLASS( g_class );
core_class->errsig = g_signal_new( "error", G_TYPE_FROM_CLASS( g_class ),
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
tr_core_marshal_err, G_TYPE_NONE,
2, G_TYPE_INT, G_TYPE_STRING );
core_class->promptsig = g_signal_new( "directory-prompt",
G_TYPE_FROM_CLASS( g_class ),
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
tr_core_marshal_prompt, G_TYPE_NONE,
3, G_TYPE_POINTER, G_TYPE_INT,
G_TYPE_BOOLEAN );
core_class->promptdatasig = g_signal_new( "directory-prompt-data",
G_TYPE_FROM_CLASS( g_class ),
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
tr_core_marshal_data,
G_TYPE_NONE, 3, G_TYPE_STRING,
G_TYPE_UINT, G_TYPE_BOOLEAN );
core_class->quitsig = g_signal_new( "quit", G_TYPE_FROM_CLASS( g_class ),
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0 );
core_class->prefsig = g_signal_new( "prefs-changed",
G_TYPE_FROM_CLASS( g_class ),
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING );
}
static int
compareDouble( double a, double b )
{
if( a < b ) return -1;
if( b < a ) return 1;
return 0;
}
static int
compareByActivity( GtkTreeModel * model,
GtkTreeIter * a,
GtkTreeIter * b,
gpointer user_data UNUSED )
{
int i;
2007-12-27 18:56:54 +00:00
tr_torrent *ta, *tb;
const tr_stat *sa, *sb;
2007-12-27 18:56:54 +00:00
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
sa = tr_torrentStatCached( ta );
sb = tr_torrentStatCached( tb );
if(( i = compareDouble( sa->rateUpload + sa->rateDownload,
sb->rateUpload + sb->rateDownload ) ))
return i;
if( sa->uploadedEver != sb->uploadedEver )
return sa->uploadedEver < sa->uploadedEver ? -1 : 1;
return 0;
}
static int
compareByDateAdded( GtkTreeModel * model UNUSED,
GtkTreeIter * a UNUSED,
GtkTreeIter * b UNUSED,
gpointer user_data UNUSED )
{
return 0; /* FIXME */
}
static int
compareByName( GtkTreeModel * model,
GtkTreeIter * a,
GtkTreeIter * b,
gpointer user_data UNUSED )
{
int ret;
char *ca, *cb;
gtk_tree_model_get( model, a, MC_NAME_COLLATED, &ca, -1 );
gtk_tree_model_get( model, b, MC_NAME_COLLATED, &cb, -1 );
ret = strcmp( ca, cb );
g_free( cb );
g_free( ca );
return ret;
}
static int
compareByProgress( GtkTreeModel * model,
GtkTreeIter * a,
GtkTreeIter * b,
gpointer user_data UNUSED )
{
int ret;
2007-12-27 18:56:54 +00:00
tr_torrent *ta, *tb;
const tr_stat *sa, *sb;
2007-12-27 18:56:54 +00:00
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
sa = tr_torrentStatCached( ta );
sb = tr_torrentStatCached( tb );
ret = compareDouble( sa->percentDone, sb->percentDone );
if( !ret )
ret = compareDouble( sa->ratio, sb->ratio );
return ret;
}
2007-12-19 07:03:28 +00:00
static int
compareByState( GtkTreeModel * model,
GtkTreeIter * a,
GtkTreeIter * b,
gpointer user_data )
2007-12-19 07:03:28 +00:00
{
int sa, sb, ret;
/* first by state */
gtk_tree_model_get( model, a, MC_STATUS, &sa, -1 );
gtk_tree_model_get( model, b, MC_STATUS, &sb, -1 );
ret = sa - sb;
/* second by progress */
if( !ret )
ret = compareByProgress( model, a, b, user_data );
return ret;
2007-12-19 07:03:28 +00:00
}
static int
compareByTracker( GtkTreeModel * model,
GtkTreeIter * a,
GtkTreeIter * b,
gpointer user_data UNUSED )
{
2007-12-19 07:03:28 +00:00
const tr_torrent *ta, *tb;
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
return strcmp( tr_torrentInfo(ta)->primaryAddress,
tr_torrentInfo(tb)->primaryAddress );
}
/***
****
***/
static void
setSort( TrCore * core, const char * mode, gboolean isReversed )
{
int col = MC_TORRENT_RAW;
GtkSortType type = isReversed ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING;
GtkTreeSortable * sortable = GTK_TREE_SORTABLE( core->model );
if( !strcmp( mode, "sort-by-activity" ) )
gtk_tree_sortable_set_sort_func( sortable, col, compareByActivity, NULL, NULL );
else if( !strcmp( mode, "sort-by-date-added" ) )
gtk_tree_sortable_set_sort_func( sortable, col, compareByDateAdded, NULL, NULL );
else if( !strcmp( mode, "sort-by-progress" ) )
gtk_tree_sortable_set_sort_func( sortable, col, compareByProgress, NULL, NULL );
else if( !strcmp( mode, "sort-by-state" ) )
gtk_tree_sortable_set_sort_func( sortable, col, compareByState, NULL, NULL );
else if( !strcmp( mode, "sort-by-tracker" ) )
gtk_tree_sortable_set_sort_func( sortable, col, compareByTracker, NULL, NULL );
else {
type = isReversed ? GTK_SORT_DESCENDING : GTK_SORT_ASCENDING;
gtk_tree_sortable_set_sort_func( sortable, col, compareByName, NULL, NULL );
}
gtk_tree_sortable_set_sort_column_id( sortable, col, type );
}
2007-12-19 18:42:33 +00:00
static void
prefsChanged( TrCore * core, const char * key, gpointer data UNUSED )
{
if( !strcmp( key, PREF_KEY_SORT_MODE ) || !strcmp( key, PREF_KEY_SORT_REVERSED ) )
2007-12-19 18:42:33 +00:00
{
char * mode = pref_string_get( PREF_KEY_SORT_MODE );
gboolean isReversed = pref_flag_get( PREF_KEY_SORT_REVERSED );
setSort( core, mode, isReversed );
g_free( mode );
}
else if( !strcmp( key, PREF_KEY_MAX_PEERS_GLOBAL ) )
{
const uint16_t val = pref_int_get( key );
tr_setGlobalPeerLimit( core->handle, val );
}
}
static void
2008-01-19 05:04:38 +00:00
tr_core_init( GTypeInstance * instance, gpointer g_class UNUSED )
{
tr_handle * h;
TrCore * self = (TrCore *) instance;
GtkListStore * store;
/* column types for the model used to store torrent information */
/* keep this in sync with the enum near the bottom of tr_core.h */
GType types[] = {
G_TYPE_STRING, /* name */
G_TYPE_STRING, /* collated name */
G_TYPE_STRING, /* hash string */
TR_TORRENT_TYPE, /* TrTorrent object */
G_TYPE_POINTER, /* tr_torrent* */
G_TYPE_INT, /* tr_stat()->status */
G_TYPE_INT /* ID for IPC */
};
h = tr_initFull( "gtk",
pref_flag_get( PREF_KEY_PEX ),
pref_flag_get( PREF_KEY_NAT ),
pref_int_get( PREF_KEY_PORT ),
pref_flag_get( PREF_KEY_ENCRYPTED_ONLY )
? TR_ENCRYPTION_REQUIRED
: TR_ENCRYPTION_PREFERRED,
pref_flag_get( PREF_KEY_UL_LIMIT_ENABLED ),
pref_int_get( PREF_KEY_UL_LIMIT ),
pref_flag_get( PREF_KEY_DL_LIMIT_ENABLED ),
pref_int_get( PREF_KEY_DL_LIMIT ),
pref_int_get( PREF_KEY_MAX_PEERS_GLOBAL ),
pref_int_get( PREF_KEY_MSGLEVEL ),
TRUE );
/* create the model used to store torrent data */
g_assert( ALEN( types ) == MC_ROW_COUNT );
store = gtk_list_store_newv( MC_ROW_COUNT, types );
self->model = GTK_TREE_MODEL( store );
self->handle = h;
self->nextid = 1;
self->quitting = FALSE;
self->disposed = FALSE;
}
GType
tr_core_get_type( void )
{
static GType type = 0;
if( !type )
2007-05-23 04:39:06 +00:00
{
static const GTypeInfo info =
{
sizeof( TrCoreClass ),
NULL, /* base_init */
NULL, /* base_finalize */
tr_core_class_init, /* class_init */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof( TrCore ),
0, /* n_preallocs */
tr_core_init, /* instance_init */
NULL,
};
type = g_type_register_static( G_TYPE_OBJECT, "TrCore", &info, 0 );
2007-05-23 04:39:06 +00:00
}
return type;
}
/**
***
**/
TrCore *
tr_core_new( void )
{
2007-12-19 18:42:33 +00:00
TrCore * core = TR_CORE( g_object_new( TR_CORE_TYPE, NULL ) );
/* init from prefs & listen to pref changes */
prefsChanged( core, PREF_KEY_SORT_MODE, NULL );
prefsChanged( core, PREF_KEY_SORT_REVERSED, NULL );
prefsChanged( core, PREF_KEY_MAX_PEERS_GLOBAL, NULL );
2007-12-22 16:34:47 +00:00
g_signal_connect( core, "prefs-changed", G_CALLBACK(prefsChanged), NULL );
2007-12-19 18:42:33 +00:00
return core;
}
GtkTreeModel *
tr_core_model( TrCore * self )
{
g_return_val_if_fail (TR_IS_CORE(self), NULL);
return self->disposed ? NULL : self->model;
}
tr_handle *
tr_core_handle( TrCore * self )
{
g_return_val_if_fail (TR_IS_CORE(self), NULL);
return self->disposed ? NULL : self->handle;
}
static char*
doCollate( const char * in )
{
const char * end = in + strlen( in );
char * casefold;
char * ret;
while( in < end ) {
const gunichar ch = g_utf8_get_char( in );
if (!g_unichar_isalnum (ch)) // eat everything before the first alnum
in += g_unichar_to_utf8( ch, NULL );
else
break;
}
if ( in == end )
return g_strdup ("");
casefold = g_utf8_casefold( in, end-in );
ret = g_utf8_collate_key( casefold, -1 );
g_free( casefold );
return ret;
}
static void
tr_core_insert( TrCore * self, TrTorrent * tor )
{
const tr_info * inf = tr_torrent_info( tor );
const tr_stat * torStat = tr_torrent_stat( tor );
char * collated = doCollate( inf->name );
GtkTreeIter unused;
gtk_list_store_insert_with_values( GTK_LIST_STORE( self->model ), &unused, 0,
MC_NAME, inf->name,
MC_NAME_COLLATED, collated,
MC_HASH, inf->hashString,
MC_TORRENT, tor,
MC_TORRENT_RAW, tor->handle,
MC_STATUS, torStat->status,
MC_ID, self->nextid,
-1);
self->nextid++;
g_object_unref( tor );
g_free( collated );
}
int
tr_core_load( TrCore * self, gboolean forcePaused )
{
2007-07-23 03:03:45 +00:00
int i;
int count = 0;
tr_torrent ** torrents;
char * path;
2007-12-21 22:18:40 +00:00
tr_ctor * ctor;
TR_IS_CORE( self );
path = getdownloaddir( );
2007-07-23 03:03:45 +00:00
2007-12-21 22:18:40 +00:00
ctor = tr_ctorNew( self->handle );
if( forcePaused )
tr_ctorSetPaused( ctor, TR_FORCE, TRUE );
2007-12-21 22:18:40 +00:00
tr_ctorSetDestination( ctor, TR_FALLBACK, path );
tr_ctorSetMaxConnectedPeers( ctor, TR_FALLBACK, pref_int_get( PREF_KEY_MAX_PEERS_PER_TORRENT ) );
2007-12-21 22:18:40 +00:00
torrents = tr_loadTorrents ( self->handle, ctor, &count );
2007-07-23 03:03:45 +00:00
for( i=0; i<count; ++i )
tr_core_insert( self, tr_torrent_new_preexisting( torrents[i] ) );
2007-12-21 22:18:40 +00:00
tr_free( torrents );
tr_ctorFree( ctor );
g_free( path );
2007-12-21 22:18:40 +00:00
return count;
}
gboolean
tr_core_add( TrCore * self, const char * path, enum tr_torrent_action act,
gboolean paused )
{
GList * list;
int ret;
TR_IS_CORE( self );
list = g_list_append( NULL, (void *) path );
ret = tr_core_add_list( self, list, act, paused );
g_list_free( list );
return 1 == ret;
}
static void
tr_core_errsig( TrCore * self, enum tr_core_err type, const char * msg )
{
TrCoreClass * class;
class = g_type_class_peek( TR_CORE_TYPE );
g_signal_emit( self, class->errsig, 0, type, msg );
}
gboolean
tr_core_add_dir( TrCore * self, const char * path, const char * dir,
enum tr_torrent_action act, gboolean paused )
{
TrTorrent * tor;
char * errstr;
TR_IS_CORE( self );
errstr = NULL;
2007-05-23 19:26:29 +00:00
tor = tr_torrent_new( self->handle, path, dir, act, paused, &errstr );
if( NULL == tor )
{
tr_core_errsig( self, TR_CORE_ERR_ADD_TORRENT, errstr );
g_free( errstr );
return FALSE;
}
g_assert( NULL == errstr );
tr_core_insert( self, tor );
return TRUE;
}
int
tr_core_add_list( TrCore * self, GList * paths, enum tr_torrent_action act,
gboolean paused )
{
char * dir;
int count;
TR_IS_CORE( self );
if( pref_flag_get( PREF_KEY_DIR_ASK ) )
{
TrCoreClass * class = g_type_class_peek( TR_CORE_TYPE );
g_signal_emit( self, class->promptsig, 0, paths, act, paused );
return 0;
}
dir = getdownloaddir();
count = 0;
for( ; paths; paths=paths->next )
if( tr_core_add_dir( self, paths->data, dir, act, paused ) )
count++;
g_free( dir );
return count;
}
2007-05-24 10:37:07 +00:00
gboolean
tr_core_add_data( TrCore * self, uint8_t * data, size_t size, gboolean paused )
{
gboolean ret;
char * path;
2007-05-24 10:37:07 +00:00
TR_IS_CORE( self );
if( pref_flag_get( PREF_KEY_DIR_ASK ) )
2007-05-24 10:37:07 +00:00
{
TrCoreClass * class = g_type_class_peek( TR_CORE_TYPE );
2007-05-24 10:37:07 +00:00
g_signal_emit( self, class->promptdatasig, 0, data, size, paused );
return FALSE;
}
path = getdownloaddir( );
ret = tr_core_add_data_dir( self, data, size, path, paused );
g_free( path );
return ret;
2007-05-24 10:37:07 +00:00
}
gboolean
tr_core_add_data_dir( TrCore * self, uint8_t * data, size_t size,
const char * dir, gboolean paused )
{
TrTorrent * tor;
char * errstr = NULL;
2007-05-24 10:37:07 +00:00
TR_IS_CORE( self );
tor = tr_torrent_new_with_data( self->handle, data, size, dir,
paused, &errstr );
if( NULL == tor )
{
tr_core_errsig( self, TR_CORE_ERR_ADD_TORRENT, errstr );
g_free( errstr );
return FALSE;
}
g_assert( NULL == errstr );
tr_core_insert( self, tor );
return TRUE;
}
void
tr_core_torrents_added( TrCore * self )
{
TR_IS_CORE( self );
tr_core_update( self );
tr_core_errsig( self, TR_CORE_ERR_NO_MORE_TORRENTS, NULL );
}
void
tr_core_delete_torrent( TrCore * self, GtkTreeIter * iter )
{
TrTorrent * tor;
TR_IS_CORE( self );
gtk_tree_model_get( self->model, iter, MC_TORRENT, &tor, -1 );
gtk_list_store_remove( GTK_LIST_STORE( self->model ), iter );
2007-07-23 03:03:45 +00:00
tr_torrentRemoveSaved( tr_torrent_handle( tor ) );
g_object_unref( G_OBJECT( tor ) );
}
static gboolean
update_foreach( GtkTreeModel * model,
GtkTreePath * path UNUSED,
GtkTreeIter * iter,
gpointer data )
{
TrTorrent * gtor;
int oldStatus;
const tr_stat * torStat;
struct core_stats * stats = data;
gtk_tree_model_get( model, iter, MC_TORRENT, &gtor,
MC_STATUS, &oldStatus,
-1 );
torStat = tr_torrent_stat( gtor );
/* sum the torrents' cumulative stats... */
if( torStat->status == TR_STATUS_DOWNLOAD )
++stats->downloadCount;
else if( torStat->status == TR_STATUS_SEED )
++stats->seedingCount;
stats->clientDownloadSpeed += torStat->rateDownload;
stats->clientUploadSpeed += torStat->rateUpload;
/* update the model's status if necessary */
if( oldStatus != (int) torStat->status )
gtk_list_store_set( GTK_LIST_STORE( model ), iter,
MC_STATUS, torStat->status,
-1 );
tr_torrent_check_seeding_cap ( gtor );
g_object_unref( gtor );
return FALSE;
}
void
tr_core_update( TrCore * self )
{
int column;
GtkSortType order;
GtkTreeSortable * sortable;
/* pause sorting */
sortable = GTK_TREE_SORTABLE( self->model );
gtk_tree_sortable_get_sort_column_id( sortable, &column, &order );
gtk_tree_sortable_set_sort_column_id( sortable, GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID, order );
/* refresh the model */
memset( &self->stats, 0, sizeof( struct core_stats ) );
gtk_tree_model_foreach( self->model, update_foreach, &self->stats );
/* resume sorting */
gtk_tree_sortable_set_sort_column_id( sortable, column, order );
}
void
tr_core_quit( TrCore * self )
{
TrCoreClass * class;
TR_IS_CORE( self );
class = g_type_class_peek( TR_CORE_TYPE );
g_signal_emit( self, class->quitsig, 0 );
}
/**
*** Prefs
**/
static void
commitPrefsChange( TrCore * self, const char * key )
{
TrCoreClass * class = g_type_class_peek( TR_CORE_TYPE );
pref_save( NULL );
g_signal_emit( self, class->prefsig, 0, key );
}
void
tr_core_set_pref( TrCore * self, const char * key, const char * newval )
{
char * oldval = pref_string_get( key );
if( tr_strcmp( oldval, newval ) )
{
pref_string_set( key, newval );
commitPrefsChange( self, key );
}
g_free( oldval );
}
void
tr_core_set_pref_bool( TrCore * self, const char * key, gboolean newval )
{
const gboolean oldval = pref_flag_get( key );
if( oldval != newval )
{
pref_flag_set( key, newval );
commitPrefsChange( self, key );
}
}
void
tr_core_set_pref_int( TrCore * self, const char * key, int newval )
{
const int oldval = pref_int_get( key );
if( oldval != newval )
{
pref_int_set( key, newval );
commitPrefsChange( self, key );
}
}