2006-08-13 00:26:52 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-01 17:20:20 +00:00
|
|
|
* Copyright (c) 2005-2008 Transmission authors and contributors
|
2006-08-13 00:26:52 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
|
2007-02-19 22:09:05 +00:00
|
|
|
#include "tr_prefs.h"
|
2006-07-16 19:39:23 +00:00
|
|
|
#include "tr_torrent.h"
|
2007-09-27 20:57:58 +00:00
|
|
|
#include "conf.h"
|
2006-07-16 19:39:23 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
errcb(GtkWidget *wind, int resp, gpointer data);
|
|
|
|
|
2007-06-27 18:34:38 +00:00
|
|
|
int
|
|
|
|
tr_strcmp( const char * a, const char * b )
|
|
|
|
{
|
|
|
|
if( a && b ) return strcmp( a, b );
|
|
|
|
if( a ) return 1;
|
|
|
|
if( b ) return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 18:52:39 +00:00
|
|
|
char*
|
|
|
|
tr_strlratio( char * buf, double ratio, size_t buflen )
|
|
|
|
{
|
|
|
|
if( (int)ratio == TR_RATIO_NA )
|
|
|
|
g_strlcpy( buf, _( "None" ), buflen );
|
|
|
|
else if( (int)ratio == TR_RATIO_INF )
|
|
|
|
g_strlcpy( buf, "\xE2\x88\x9E", buflen );
|
|
|
|
else if( ratio < 10.0 )
|
|
|
|
g_snprintf( buf, buflen, "%.2f", ratio );
|
|
|
|
else if( ratio < 100.0 )
|
|
|
|
g_snprintf( buf, buflen, "%.1f", ratio );
|
|
|
|
else
|
|
|
|
g_snprintf( buf, buflen, "%.0f", ratio );
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2007-12-19 02:46:30 +00:00
|
|
|
char*
|
|
|
|
tr_strlsize( char * buf, guint64 size, size_t buflen )
|
|
|
|
{
|
|
|
|
if( !size )
|
2008-01-04 18:52:39 +00:00
|
|
|
g_strlcpy( buf, _( "None" ), buflen );
|
2007-12-19 02:46:30 +00:00
|
|
|
else {
|
|
|
|
static const char *units[] = {
|
|
|
|
N_("B"), N_("KiB"), N_("MiB"), N_("GiB"), N_("TiB"),
|
|
|
|
N_("PiB"), N_("EiB"), N_("ZiB"), N_("YiB")
|
|
|
|
};
|
|
|
|
unsigned int i;
|
2007-12-22 03:01:14 +00:00
|
|
|
double small = size;
|
|
|
|
for( i=0; i<G_N_ELEMENTS(units) && (small>=1024.0); ++i )
|
|
|
|
small /= 1024.0;
|
2007-12-21 22:43:14 +00:00
|
|
|
if( i < 2 ) /* B & KiB */
|
2007-12-19 02:46:30 +00:00
|
|
|
g_snprintf( buf, buflen, "%d %s", (int)small, _(units[i]) );
|
2007-12-21 22:43:14 +00:00
|
|
|
else
|
2007-12-22 03:01:14 +00:00
|
|
|
g_snprintf( buf, buflen, "%.1f %s", small, _(units[i]) );
|
2007-12-19 02:46:30 +00:00
|
|
|
}
|
|
|
|
return buf;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-12-19 02:46:30 +00:00
|
|
|
char*
|
|
|
|
tr_strlspeed( char * buf, double KiBps, size_t buflen )
|
2007-06-06 00:30:13 +00:00
|
|
|
{
|
2007-12-19 02:46:30 +00:00
|
|
|
const guint64 bps = KiBps * 1024;
|
|
|
|
if( !bps )
|
2008-01-04 18:52:39 +00:00
|
|
|
g_strlcpy( buf, _( "None" ), buflen );
|
2007-12-19 02:46:30 +00:00
|
|
|
else {
|
|
|
|
char bbuf[64];
|
|
|
|
tr_strlsize( bbuf, (guint64)(KiBps*1024), sizeof(bbuf) );
|
|
|
|
g_snprintf( buf, buflen, "%s/s", bbuf );
|
|
|
|
}
|
|
|
|
return buf;
|
2007-06-06 00:30:13 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#define SECONDS(s) ((s) % 60)
|
|
|
|
#define MINUTES(s) ((s) / 60 % 60)
|
|
|
|
#define HOURS(s) ((s) / 60 / 60 % 24)
|
|
|
|
#define DAYS(s) ((s) / 60 / 60 / 24 % 7)
|
|
|
|
|
2007-12-26 06:38:33 +00:00
|
|
|
char*
|
|
|
|
tr_strltime( char * buf, int secs, size_t buflen )
|
|
|
|
{
|
|
|
|
if( secs < 60 )
|
|
|
|
{
|
|
|
|
g_snprintf( buf, buflen, _( "%i %s" ),
|
|
|
|
SECONDS(secs), ngettext("sec", "secs", SECONDS(secs)));
|
|
|
|
}
|
|
|
|
else if( secs < 60*60 )
|
|
|
|
{
|
|
|
|
g_snprintf( buf, buflen, _("%i %s %i %s"),
|
|
|
|
MINUTES(secs), ngettext("min", "mins", MINUTES(secs)),
|
|
|
|
SECONDS(secs), ngettext("sec", "secs", SECONDS(secs)));
|
|
|
|
}
|
|
|
|
else if( secs < 60*60*24 )
|
|
|
|
{
|
|
|
|
g_snprintf( buf, buflen, _("%i %s %i %s"),
|
|
|
|
HOURS(secs), ngettext("hr", "hrs", HOURS(secs)),
|
|
|
|
MINUTES(secs), ngettext("min", "mins", MINUTES(secs)));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_snprintf( buf, buflen, _("%i %s %i %s"),
|
|
|
|
DAYS(secs), ngettext("day", "days", DAYS(secs)),
|
|
|
|
HOURS(secs), ngettext("hr", "hrs", HOURS(secs)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 18:52:39 +00:00
|
|
|
|
2007-06-06 00:30:13 +00:00
|
|
|
char *
|
|
|
|
rfc822date (guint64 epoch_msec)
|
|
|
|
{
|
2007-10-29 23:49:00 +00:00
|
|
|
const time_t secs = epoch_msec / 1000;
|
|
|
|
const struct tm tm = *localtime (&secs);
|
|
|
|
char buf[128];
|
|
|
|
strftime( buf, sizeof(buf), "%a, %d %b %Y %T %Z", &tm );
|
|
|
|
return g_locale_to_utf8( buf, -1, NULL, NULL, NULL );
|
2007-06-06 00:30:13 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
gboolean
|
2007-10-03 21:02:30 +00:00
|
|
|
mkdir_p(const char *name, mode_t mode)
|
|
|
|
{
|
|
|
|
#if GLIB_CHECK_VERSION(2,8,0)
|
|
|
|
return !g_mkdir_with_parents( name, mode );
|
|
|
|
#else
|
|
|
|
struct stat sb;
|
|
|
|
char *parent;
|
|
|
|
gboolean ret;
|
|
|
|
int oerrno;
|
|
|
|
|
|
|
|
if(0 != stat(name, &sb)) {
|
|
|
|
if(ENOENT != errno)
|
|
|
|
return FALSE;
|
|
|
|
parent = g_path_get_dirname(name);
|
|
|
|
ret = mkdir_p(parent, mode);
|
|
|
|
oerrno = errno;
|
|
|
|
g_free(parent);
|
|
|
|
errno = oerrno;
|
|
|
|
return (ret ? (0 == mkdir(name, mode)) : FALSE);
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-03 21:02:30 +00:00
|
|
|
if(!S_ISDIR(sb.st_mode)) {
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-03 21:02:30 +00:00
|
|
|
return TRUE;
|
|
|
|
#endif
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-02-07 02:59:25 +00:00
|
|
|
GList *
|
2007-10-13 03:15:02 +00:00
|
|
|
dupstrlist( GList * l )
|
2007-02-07 02:59:25 +00:00
|
|
|
{
|
2007-10-13 03:15:02 +00:00
|
|
|
GList * ret = NULL;
|
|
|
|
for( ; l!=NULL; l=l->next )
|
|
|
|
ret = g_list_prepend( ret, g_strdup( l->data ) );
|
|
|
|
return g_list_reverse( ret );
|
2007-02-07 02:59:25 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
char *
|
2007-06-06 00:30:13 +00:00
|
|
|
joinstrlist(GList *list, char *sep)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
GString *gstr = g_string_new (NULL);
|
|
|
|
for (l=list; l!=NULL; l=l->next) {
|
|
|
|
g_string_append (gstr, (char*)l->data);
|
|
|
|
if (l->next != NULL)
|
|
|
|
g_string_append (gstr, (sep));
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
2007-06-06 00:30:13 +00:00
|
|
|
return g_string_free (gstr, FALSE);
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-06-06 00:30:13 +00:00
|
|
|
freestrlist(GList *list)
|
|
|
|
{
|
|
|
|
g_list_foreach (list, (GFunc)g_free, NULL);
|
|
|
|
g_list_free (list);
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
urldecode(const char *str, int len) {
|
|
|
|
int ii, jj;
|
|
|
|
char *ret;
|
|
|
|
|
2007-10-13 03:15:02 +00:00
|
|
|
if( len <= 0 )
|
|
|
|
len = strlen( str );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
for(ii = jj = 0; ii < len; ii++, jj++)
|
|
|
|
if('%' == str[ii])
|
|
|
|
ii += 2;
|
|
|
|
|
|
|
|
ret = g_new(char, jj + 1);
|
|
|
|
|
|
|
|
for(ii = jj = 0; ii < len; ii++, jj++) {
|
|
|
|
switch(str[ii]) {
|
|
|
|
case '%':
|
|
|
|
if(ii + 2 < len) {
|
2007-10-13 03:15:02 +00:00
|
|
|
char buf[3] = { str[ii+1], str[ii+2], '\0' };
|
2006-07-16 19:39:23 +00:00
|
|
|
ret[jj] = g_ascii_strtoull(buf, NULL, 16);
|
|
|
|
}
|
|
|
|
ii += 2;
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
ret[jj] = ' ';
|
|
|
|
default:
|
|
|
|
ret[jj] = str[ii];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret[jj] = '\0';
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
GList *
|
2007-10-12 19:53:30 +00:00
|
|
|
checkfilenames( int argc, char **argv )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
GList * ret = NULL;
|
|
|
|
char * pwd = g_get_current_dir( );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-12 19:53:30 +00:00
|
|
|
for( i=0; i<argc; ++i )
|
|
|
|
{
|
|
|
|
char * filename = g_path_is_absolute( argv[i] )
|
|
|
|
? g_strdup ( argv[i] )
|
|
|
|
: g_build_filename( pwd, argv[i], NULL );
|
|
|
|
|
|
|
|
if( g_file_test( filename, G_FILE_TEST_EXISTS ) )
|
|
|
|
ret = g_list_append( ret, filename );
|
|
|
|
else
|
|
|
|
g_free( filename );
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-12 19:53:30 +00:00
|
|
|
g_free( pwd );
|
|
|
|
return ret;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-05-23 19:26:29 +00:00
|
|
|
enum tr_torrent_action
|
|
|
|
toraddaction( const char * action )
|
|
|
|
{
|
2007-10-12 19:53:30 +00:00
|
|
|
if( !action || !strcmp( "copy", action ) )
|
2007-05-23 19:26:29 +00:00
|
|
|
return TR_TOR_COPY;
|
2007-10-12 19:53:30 +00:00
|
|
|
|
|
|
|
if( !strcmp( "move", action ) )
|
2007-05-23 19:26:29 +00:00
|
|
|
return TR_TOR_MOVE;
|
2007-10-12 19:53:30 +00:00
|
|
|
|
|
|
|
return TR_TOR_LEAVE;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2007-05-23 19:26:29 +00:00
|
|
|
toractionname( enum tr_torrent_action action )
|
2007-03-12 00:04:11 +00:00
|
|
|
{
|
2007-05-23 19:26:29 +00:00
|
|
|
switch( action )
|
|
|
|
{
|
|
|
|
case TR_TOR_COPY:
|
|
|
|
return "copy";
|
2007-10-12 19:53:30 +00:00
|
|
|
|
2007-05-23 19:26:29 +00:00
|
|
|
case TR_TOR_MOVE:
|
|
|
|
return "move";
|
2007-10-12 19:53:30 +00:00
|
|
|
|
2007-05-23 19:26:29 +00:00
|
|
|
default:
|
|
|
|
return "leave";
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
char *
|
2007-02-19 22:09:05 +00:00
|
|
|
getdownloaddir( void )
|
|
|
|
{
|
|
|
|
static char * wd = NULL;
|
2007-09-27 20:57:58 +00:00
|
|
|
char * dir = pref_string_get( PREF_KEY_DIR_DEFAULT );
|
|
|
|
if ( dir == NULL ) {
|
|
|
|
if( wd == NULL )
|
|
|
|
wd = g_get_current_dir();
|
|
|
|
dir = g_strdup( wd );
|
2007-02-19 22:09:05 +00:00
|
|
|
}
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
/**
|
|
|
|
* don't use more than 50% the height of the screen, nor 80% the width.
|
|
|
|
* but don't be too small, either -- set the minimums to 500 x 300
|
|
|
|
*/
|
2007-02-23 06:18:45 +00:00
|
|
|
void
|
2007-06-18 03:40:41 +00:00
|
|
|
sizingmagic( GtkWindow * wind,
|
|
|
|
GtkScrolledWindow * scroll,
|
|
|
|
GtkPolicyType hscroll,
|
|
|
|
GtkPolicyType vscroll )
|
2007-02-23 06:18:45 +00:00
|
|
|
{
|
2007-06-18 03:40:41 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
2007-02-23 06:18:45 +00:00
|
|
|
GtkRequisition req;
|
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
GdkScreen * screen = gtk_widget_get_screen( GTK_WIDGET( wind ) );
|
2007-04-03 08:18:53 +00:00
|
|
|
|
|
|
|
gtk_scrolled_window_set_policy( scroll, GTK_POLICY_NEVER,
|
2007-06-18 03:40:41 +00:00
|
|
|
GTK_POLICY_NEVER );
|
2007-04-03 08:18:53 +00:00
|
|
|
|
|
|
|
gtk_widget_size_request( GTK_WIDGET( wind ), &req );
|
2007-06-18 03:40:41 +00:00
|
|
|
req.height = MAX( req.height, 300 );
|
2007-04-03 08:18:53 +00:00
|
|
|
height = MIN( req.height, gdk_screen_get_height( screen ) / 5 * 4 );
|
|
|
|
|
|
|
|
gtk_scrolled_window_set_policy( scroll, GTK_POLICY_NEVER, vscroll );
|
|
|
|
gtk_widget_size_request( GTK_WIDGET( wind ), &req );
|
2007-06-18 03:40:41 +00:00
|
|
|
req.width = MAX( req.width, 500 );
|
2007-04-03 08:18:53 +00:00
|
|
|
width = MIN( req.width, gdk_screen_get_width( screen ) / 2 );
|
|
|
|
|
|
|
|
gtk_window_set_default_size( wind, width, height );
|
|
|
|
gtk_scrolled_window_set_policy( scroll, hscroll, vscroll );
|
2007-02-23 06:18:45 +00:00
|
|
|
}
|
|
|
|
|
2007-02-19 22:09:05 +00:00
|
|
|
void
|
|
|
|
errmsg( GtkWindow * wind, const char * format, ... )
|
|
|
|
{
|
|
|
|
GtkWidget * dialog;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start( ap, format );
|
|
|
|
dialog = verrmsg_full( wind, NULL, NULL, format, ap );
|
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
if( NULL != wind && !GTK_WIDGET_MAPPED( GTK_WIDGET( wind ) ) )
|
|
|
|
{
|
|
|
|
g_signal_connect_swapped( wind, "map",
|
|
|
|
G_CALLBACK( gtk_widget_show ), dialog );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_widget_show( dialog );
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
2007-02-19 22:09:05 +00:00
|
|
|
errmsg_full( GtkWindow * wind, callbackfunc_t func, void * data,
|
|
|
|
const char * format, ... )
|
|
|
|
{
|
|
|
|
GtkWidget * dialog;
|
|
|
|
va_list ap;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-02-19 22:09:05 +00:00
|
|
|
va_start( ap, format );
|
|
|
|
dialog = verrmsg_full( wind, func, data, format, ap );
|
|
|
|
va_end( ap );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-02-19 22:09:05 +00:00
|
|
|
return dialog;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
2007-02-19 22:09:05 +00:00
|
|
|
verrmsg_full( GtkWindow * wind, callbackfunc_t func, void * data,
|
|
|
|
const char * format, va_list ap )
|
|
|
|
{
|
2006-07-16 19:39:23 +00:00
|
|
|
GtkWidget *dialog;
|
|
|
|
char *msg;
|
|
|
|
GList *funcdata;
|
|
|
|
|
|
|
|
msg = g_strdup_vprintf(format, ap);
|
|
|
|
|
|
|
|
if(NULL == wind)
|
|
|
|
dialog = gtk_message_dialog_new(
|
|
|
|
NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", msg);
|
|
|
|
else
|
|
|
|
dialog = gtk_message_dialog_new(wind,
|
|
|
|
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", msg);
|
|
|
|
|
|
|
|
if(NULL == func)
|
|
|
|
funcdata = NULL;
|
|
|
|
else
|
2007-07-18 17:28:25 +00:00
|
|
|
funcdata = g_list_append(g_list_append(NULL, (void *) func), data);
|
2006-07-16 19:39:23 +00:00
|
|
|
g_signal_connect(dialog, "response", G_CALLBACK(errcb), funcdata);
|
|
|
|
g_free(msg);
|
|
|
|
|
|
|
|
return dialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-01-19 05:04:38 +00:00
|
|
|
errcb(GtkWidget *widget, int resp UNUSED, gpointer data) {
|
2006-07-16 19:39:23 +00:00
|
|
|
GList *funcdata;
|
|
|
|
callbackfunc_t func;
|
|
|
|
|
|
|
|
if(NULL != data) {
|
|
|
|
funcdata = g_list_first(data);
|
2007-07-18 17:28:25 +00:00
|
|
|
func = (callbackfunc_t) funcdata->data;
|
2006-07-16 19:39:23 +00:00
|
|
|
data = funcdata->next->data;
|
|
|
|
func(data);
|
|
|
|
g_list_free(funcdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_destroy(widget);
|
|
|
|
}
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2007-07-06 16:25:24 +00:00
|
|
|
typedef void (PopupFunc)(GtkWidget*, GdkEventButton*);
|
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
/* pop up the context menu if a user right-clicks.
|
|
|
|
if the row they right-click on isn't selected, select it. */
|
2007-07-06 16:25:24 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
gboolean
|
|
|
|
on_tree_view_button_pressed (GtkWidget * view,
|
|
|
|
GdkEventButton * event,
|
|
|
|
gpointer func)
|
|
|
|
{
|
|
|
|
GtkTreeView * tv = GTK_TREE_VIEW( view );
|
|
|
|
|
|
|
|
if (event->type == GDK_BUTTON_PRESS && event->button == 3)
|
|
|
|
{
|
|
|
|
GtkTreeSelection * selection = gtk_tree_view_get_selection(tv);
|
|
|
|
GtkTreePath *path;
|
|
|
|
if (gtk_tree_view_get_path_at_pos (tv,
|
|
|
|
(gint) event->x,
|
|
|
|
(gint) event->y,
|
|
|
|
&path, NULL, NULL, NULL))
|
|
|
|
{
|
|
|
|
if (!gtk_tree_selection_path_is_selected (selection, path))
|
|
|
|
{
|
|
|
|
gtk_tree_selection_unselect_all (selection);
|
|
|
|
gtk_tree_selection_select_path (selection, path);
|
|
|
|
}
|
|
|
|
gtk_tree_path_free(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
((PopupFunc*)func)(view, event);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-01-15 17:55:09 +00:00
|
|
|
gpointer
|
|
|
|
tr_object_ref_sink( gpointer object )
|
|
|
|
{
|
|
|
|
#if GLIB_CHECK_VERSION(2,10,0)
|
|
|
|
g_object_ref_sink( object );
|
|
|
|
#else
|
|
|
|
g_object_ref( object );
|
|
|
|
gtk_object_sink( GTK_OBJECT( object ) );
|
|
|
|
#endif
|
|
|
|
return object;
|
|
|
|
}
|