transmission/gtk/util.h

144 lines
5.3 KiB
C
Raw Normal View History

/******************************************************************************
* $Id$
*
2008-01-01 17:20:20 +00:00
* Copyright (c) 2005-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.
*****************************************************************************/
2006-07-16 19:39:23 +00:00
#ifndef TG_UTIL_H
#define TG_UTIL_H
#include <sys/types.h>
#include <stdarg.h>
/* macro to shut up "unused parameter" warnings */
2008-05-18 16:44:30 +00:00
#ifndef UNUSED
#define UNUSED G_GNUC_UNUSED
2008-05-18 16:44:30 +00:00
#endif
2006-07-16 19:39:23 +00:00
/* return number of items in array */
#define ALEN( a ) ( (signed)G_N_ELEMENTS( a ) )
2006-07-16 19:39:23 +00:00
/* used for a callback function with a data parameter */
typedef void ( *callbackfunc_t )( void* );
2006-07-16 19:39:23 +00:00
/* return a human-readable string for the size given in bytes. */
char* tr_strlsize( char * buf,
guint64 size,
size_t buflen );
/* return a human-readable string for the transfer rate given in bytes. */
char* tr_strlspeed( char * buf,
double KiBps,
size_t buflen );
/* return a human-readable string for the given ratio. */
char* tr_strlratio( char * buf,
double ratio,
size_t buflen );
/* return a human-readable string for the time given in seconds. */
char* tr_strltime( char * buf,
int secs,
size_t buflen );
2006-07-16 19:39:23 +00:00
char* gtr_localtime( time_t time );
char* gtr_localtime2( char * buf, time_t time, size_t buflen );
2006-07-16 19:39:23 +00:00
/* create a directory and any missing parent directories */
int mkdir_p( const char *name,
mode_t mode );
2006-07-16 19:39:23 +00:00
/* create a copy of a GSList of strings, this dups the actual strings too */
GSList * dupstrlist( GSList * list );
/* joins a GSList of strings into one string using an optional separator */
char * joinstrlist( GSList *list,
char * sep );
2006-07-16 19:39:23 +00:00
/* free a GSList of strings */
void freestrlist( GSList *list );
2006-07-16 19:39:23 +00:00
/* decodes a string that has been urlencoded */
char * decode_uri( const char * uri );
2006-07-16 19:39:23 +00:00
/* return a list of cleaned-up paths, with invalid directories removed */
GSList * checkfilenames( int argc,
char ** argv );
2006-07-16 19:39:23 +00:00
void gtr_open_file( const char * path );
gboolean gtr_dbus_add_torrent( const char * filename );
2008-05-18 16:44:30 +00:00
gboolean gtr_dbus_present_window( void );
char* gtr_get_help_url( void );
2008-05-18 16:44:30 +00:00
2007-02-19 22:09:05 +00:00
#ifdef GTK_MAJOR_VERSION
2006-07-16 19:39:23 +00:00
2009-03-28 16:47:01 +00:00
void gtr_widget_set_tooltip_text( GtkWidget * w, const char * tip );
2008-09-03 16:29:59 +00:00
GtkWidget * gtr_button_new_from_stock( const char * stock,
const char * mnemonic );
guint gtr_timeout_add_seconds( guint seconds,
GSourceFunc function,
gpointer data );
void addTorrentErrorDialog( GtkWidget * window_or_child,
int err,
const char * filename );
2007-02-19 22:09:05 +00:00
/* create an error dialog, if wind is NULL or mapped then show dialog now,
otherwise show it when wind becomes mapped */
void errmsg( GtkWindow * wind,
const char * format,
... ) G_GNUC_PRINTF( 2, 3 );
2006-07-16 19:39:23 +00:00
2007-02-19 22:09:05 +00:00
/* create an error dialog but do not gtk_widget_show() it,
calls func( data ) when the dialog is closed */
GtkWidget * errmsg_full( GtkWindow * wind,
callbackfunc_t func,
void * data,
const char * format,
... ) G_GNUC_PRINTF( 4, 5 );
2006-07-16 19:39:23 +00:00
/* pop up the context menu if a user right-clicks.
if the row they right-click on isn't selected, select it. */
gboolean on_tree_view_button_pressed( GtkWidget * view,
GdkEventButton * event,
gpointer unused );
/* if the click didn't specify a row, clear the selection */
gboolean on_tree_view_button_released( GtkWidget * view,
GdkEventButton * event,
gpointer unused );
gpointer tr_object_ref_sink( gpointer object );
int tr_file_trash_or_remove( const char * filename );
2006-07-16 19:39:23 +00:00
#endif /* GTK_MAJOR_VERSION */
#endif /* TG_UTIL_H */