123 lines
4.1 KiB
C
123 lines
4.1 KiB
C
/******************************************************************************
|
|
* $Id$
|
|
*
|
|
* Copyright (c) 2006-2007 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.
|
|
*****************************************************************************/
|
|
|
|
#ifndef TR_WINDOW_H
|
|
#define TR_WINDOW_H
|
|
|
|
#include <glib-object.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#define TR_WINDOW_TYPE ( tr_window_get_type() )
|
|
|
|
#define TR_WINDOW( obj ) \
|
|
( G_TYPE_CHECK_INSTANCE_CAST( (obj), TR_WINDOW_TYPE, TrWindow ) )
|
|
|
|
#define TR_WINDOW_CLASS( class ) \
|
|
( G_TYPE_CHECK_CLASS_CAST( (class), TR_WINDOW_TYPE, TrWindowClass ) )
|
|
|
|
#define TR_IS_WINDOW( obj ) \
|
|
( G_TYPE_CHECK_INSTANCE_TYPE( (obj), TR_WINDOW_TYPE ) )
|
|
|
|
#define TR_IS_WINDOW_CLASS( class ) \
|
|
( G_TYPE_CHECK_CLASS_TYPE( (class), TR_WINDOW_TYPE ) )
|
|
|
|
#define TR_WINDOW_GET_CLASS( obj ) \
|
|
( G_TYPE_INSTANCE_GET_CLASS( (obj), TR_WINDOW_TYPE, TrWindowClass ) )
|
|
|
|
typedef struct _TrWindow TrWindow;
|
|
typedef struct _TrWindowClass TrWindowClass;
|
|
|
|
/* treat the contents of this structure as private */
|
|
struct _TrWindow
|
|
{
|
|
GtkWindow parent;
|
|
GtkScrolledWindow * scroll;
|
|
GtkTreeView * view;
|
|
GtkStatusbar * status;
|
|
GtkToolbar * toolbar;
|
|
GObject * namerend;
|
|
int doubleclick;
|
|
struct
|
|
{
|
|
char * label;
|
|
GtkWidget * tool;
|
|
int id;
|
|
int flags;
|
|
} * actions;
|
|
int count;
|
|
GtkWidget * stupidpopuphack;
|
|
gboolean disposed;
|
|
};
|
|
|
|
struct _TrWindowClass
|
|
{
|
|
GtkWindowClass parent;
|
|
int actionsig;
|
|
};
|
|
|
|
GType
|
|
tr_window_get_type( void );
|
|
|
|
GtkWidget *
|
|
tr_window_new( void );
|
|
|
|
void
|
|
tr_window_action_add( TrWindow * wind, int id, int flags, const char * name,
|
|
const char * icon, const char * description );
|
|
|
|
void
|
|
tr_window_update( TrWindow * wind, float downspeed, float upspeed );
|
|
|
|
/* some evil magic to show the window with a nice initial window size */
|
|
void
|
|
tr_window_size_hack( TrWindow * wind );
|
|
|
|
/* XXX these should be somewhere else */
|
|
#define ACTF_TOOL ( 1 << 0 ) /* appear in the toolbar */
|
|
#define ACTF_MENU ( 1 << 1 ) /* appear in the popup menu */
|
|
#define ACTF_ALWAYS ( 1 << 2 ) /* available regardless of selection */
|
|
#define ACTF_ACTIVE ( 1 << 3 ) /* available for active torrent */
|
|
#define ACTF_INACTIVE ( 1 << 4 ) /* available for inactive torrent */
|
|
/* appear in the toolbar and the popup menu */
|
|
#define ACTF_WHEREVER ( ACTF_TOOL | ACTF_MENU )
|
|
/* available if there is something selected */
|
|
#define ACTF_WHATEVER ( ACTF_ACTIVE | ACTF_INACTIVE )
|
|
|
|
/* XXX this too*/
|
|
#define ACT_ISAVAIL( flags, status ) \
|
|
( ( ACTF_ACTIVE & (flags) && TR_STATUS_ACTIVE & (status) ) || \
|
|
( ACTF_INACTIVE & (flags) && TR_STATUS_INACTIVE & (status) ) || \
|
|
ACTF_ALWAYS & (flags) )
|
|
|
|
/* XXX and this */
|
|
/* model column names */
|
|
enum {
|
|
MC_NAME, MC_SIZE, MC_STAT, MC_ERR, MC_TERR,
|
|
MC_PROG, MC_DRATE, MC_URATE, MC_ETA, MC_PEERS,
|
|
MC_UPEERS, MC_DPEERS, MC_DOWN, MC_UP,
|
|
MC_TORRENT, MC_ROW_COUNT,
|
|
};
|
|
|
|
#endif
|