(gtk) make the filename naming scheme a little more consistent.

This commit is contained in:
Charles Kerr 2008-02-26 19:58:03 +00:00
parent dea64f0c5a
commit 851e6ce008
29 changed files with 52 additions and 52 deletions

View File

@ -28,12 +28,12 @@ noinst_HEADERS = \
stats.h \ stats.h \
sexy-icon-entry.h \ sexy-icon-entry.h \
torrent-cell-renderer.h \ torrent-cell-renderer.h \
tr_core.h \ tr-core.h \
tr_icon.h \ tr-icon.h \
tr-io.h \ tr-io.h \
tr_prefs.h \ tr-prefs.h \
tr_torrent.h \ tr-torrent.h \
tr_window.h \ tr-window.h \
ui.h \ ui.h \
util.h util.h
@ -55,12 +55,12 @@ transmission_SOURCES = \
sexy-icon-entry.c \ sexy-icon-entry.c \
stats.c \ stats.c \
torrent-cell-renderer.c \ torrent-cell-renderer.c \
tr_core.c \ tr-core.c \
tr_icon.c \ tr-icon.c \
tr-io.c \ tr-io.c \
tr_prefs.c \ tr-prefs.c \
tr_torrent.c \ tr-torrent.c \
tr_window.c \ tr-window.c \
util.c util.c
dist_man_MANS = transmission.1 dist_man_MANS = transmission.1

View File

@ -15,8 +15,8 @@
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include <libtransmission/transmission.h> #include <libtransmission/transmission.h>
#include "conf.h" #include "conf.h"
#include "tr_core.h" #include "tr-core.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "lock.h" #include "lock.h"
#include "logo.h" #include "logo.h"

View File

@ -14,7 +14,7 @@
#define TR_ACTIONS_H #define TR_ACTIONS_H
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "tr_core.h" #include "tr-core.h"
void actions_init ( GtkUIManager * ui_manager, gpointer callback_user_data ); void actions_init ( GtkUIManager * ui_manager, gpointer callback_user_data );

View File

@ -21,7 +21,7 @@
#include "actions.h" #include "actions.h"
#include "details.h" #include "details.h"
#include "file-list.h" #include "file-list.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "hig.h" #include "hig.h"
#include "util.h" #include "util.h"

View File

@ -14,7 +14,7 @@
#define GTK_TORRENT_INSPECTOR_H #define GTK_TORRENT_INSPECTOR_H
#include <gtk/gtkwindow.h> #include <gtk/gtkwindow.h>
#include "tr_torrent.h" #include "tr-torrent.h"
GtkWidget* torrent_inspector_new ( GtkWindow * parent, TrTorrent * tor ); GtkWidget* torrent_inspector_new ( GtkWindow * parent, TrTorrent * tor );

View File

@ -30,8 +30,8 @@
#include "conf.h" #include "conf.h"
#include "dialogs.h" #include "dialogs.h"
#include "hig.h" #include "hig.h"
#include "tr_core.h" #include "tr-core.h"
#include "tr_prefs.h" #include "tr-prefs.h"
struct dirdata struct dirdata
{ {

View File

@ -25,8 +25,8 @@
#ifndef TG_PREFS_H #ifndef TG_PREFS_H
#define TG_PREFS_H #define TG_PREFS_H
#include "tr_core.h" #include "tr-core.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "util.h" #include "util.h"
/* prompt for a download directory for torrents, then add them */ /* prompt for a download directory for torrents, then add them */

View File

@ -26,7 +26,7 @@
#define GTK_TORRENT_FILE_LIST_H #define GTK_TORRENT_FILE_LIST_H
#include <gtk/gtkwidget.h> #include <gtk/gtkwidget.h>
#include "tr_torrent.h" #include "tr-torrent.h"
/* create a new file list */ /* create a new file list */
GtkWidget * file_list_new( TrTorrent * ); GtkWidget * file_list_new( TrTorrent * );

View File

@ -41,10 +41,10 @@
#include "conf.h" #include "conf.h"
#include "ipc.h" #include "ipc.h"
#include "tr_core.h" #include "tr-core.h"
#include "tr-io.h" #include "tr-io.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "util.h" #include "util.h"
#ifndef AF_LOCAL #ifndef AF_LOCAL

View File

@ -27,7 +27,7 @@
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "tr_core.h" #include "tr-core.h"
void void
ipc_socket_setup( GtkWindow * wind, TrCore * core ); ipc_socket_setup( GtkWindow * wind, TrCore * core );

View File

@ -50,11 +50,11 @@
#include "notify.h" #include "notify.h"
#include "open-dialog.h" #include "open-dialog.h"
#include "stats.h" #include "stats.h"
#include "tr_core.h" #include "tr-core.h"
#include "tr_icon.h" #include "tr-icon.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "tr_window.h" #include "tr-window.h"
#include "util.h" #include "util.h"
#include "ui.h" #include "ui.h"

View File

@ -34,7 +34,7 @@
#include "conf.h" #include "conf.h"
#include "hig.h" #include "hig.h"
#include "msgwin.h" #include "msgwin.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "util.h" #include "util.h"
#define MAX_MSGCOUNT 5000 #define MAX_MSGCOUNT 5000

View File

@ -25,7 +25,7 @@
#ifndef TG_MSGWIN_H #ifndef TG_MSGWIN_H
#define TG_MSGWIN_H #define TG_MSGWIN_H
#include "tr_core.h" #include "tr-core.h"
void void
msgwin_init( void ); msgwin_init( void );

View File

@ -13,7 +13,7 @@
#ifndef __TR_NOTIFY_H__ #ifndef __TR_NOTIFY_H__
#define __TR_NOTIFY_H__ #define __TR_NOTIFY_H__
#include "tr_torrent.h" #include "tr-torrent.h"
void tr_notify_init( void ); void tr_notify_init( void );
void tr_notify_send( TrTorrent * tor ); void tr_notify_send( TrTorrent * tor );

View File

@ -14,7 +14,7 @@
#define TR_GTK_OPEN_DIALOG_H #define TR_GTK_OPEN_DIALOG_H
#include <gtk/gtkwindow.h> #include <gtk/gtkwindow.h>
#include "tr_core.h" #include "tr-core.h"
GtkWidget* makeaddwind( GtkWindow * parent, GtkWidget* makeaddwind( GtkWindow * parent,
TrCore * core, TrCore * core,

View File

@ -14,7 +14,7 @@
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "hig.h" #include "hig.h"
#include "stats.h" #include "stats.h"
#include "tr_core.h" #include "tr-core.h"
struct stat_ui struct stat_ui
{ {

View File

@ -15,7 +15,7 @@
#include <gtk/gtkwidget.h> #include <gtk/gtkwidget.h>
#include <gtk/gtkwindow.h> #include <gtk/gtkwindow.h>
#include "tr_core.h" #include "tr-core.h"
GtkWidget* stats_dialog_create( GtkWindow * parent, GtkWidget* stats_dialog_create( GtkWindow * parent,
TrCore * core ); TrCore * core );

View File

@ -18,7 +18,7 @@
#include <libtransmission/transmission.h> #include <libtransmission/transmission.h>
#include "hig.h" #include "hig.h"
#include "torrent-cell-renderer.h" #include "torrent-cell-renderer.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "util.h" #include "util.h"
/* #define TEST_RTL */ /* #define TEST_RTL */

View File

@ -31,9 +31,9 @@
#include <libtransmission/utils.h> /* tr_strcmp */ #include <libtransmission/utils.h> /* tr_strcmp */
#include "conf.h" #include "conf.h"
#include "tr_core.h" #include "tr-core.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "util.h" #include "util.h"
struct TrCorePrivate struct TrCorePrivate

View File

@ -32,7 +32,7 @@
#include <libtransmission/transmission.h> #include <libtransmission/transmission.h>
#include "tr_torrent.h" #include "tr-torrent.h"
#include "util.h" #include "util.h"
#define TR_CORE_TYPE (tr_core_get_type()) #define TR_CORE_TYPE (tr_core_get_type())

View File

@ -25,7 +25,7 @@
#include <glib/gi18n.h> #include <glib/gi18n.h>
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "actions.h" #include "actions.h"
#include "tr_icon.h" #include "tr-icon.h"
#include "util.h" #include "util.h"
#ifndef STATUS_ICON_SUPPORTED #ifndef STATUS_ICON_SUPPORTED

View File

@ -26,7 +26,7 @@
#define TR_ICON_H #define TR_ICON_H
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "tr_core.h" #include "tr-core.h"
#if GTK_CHECK_VERSION(2,10,0) #if GTK_CHECK_VERSION(2,10,0)
#define STATUS_ICON_SUPPORTED #define STATUS_ICON_SUPPORTED

View File

@ -16,8 +16,8 @@
#include <libtransmission/transmission.h> #include <libtransmission/transmission.h>
#include "conf.h" #include "conf.h"
#include "hig.h" #include "hig.h"
#include "tr_core.h" #include "tr-core.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "util.h" #include "util.h"
/** /**

View File

@ -31,8 +31,8 @@
#include <libtransmission/transmission.h> #include <libtransmission/transmission.h>
#include "tr_prefs.h" #include "tr-prefs.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "conf.h" #include "conf.h"
#include "notify.h" #include "notify.h"
#include "util.h" #include "util.h"

View File

@ -34,9 +34,9 @@
#include "hig.h" #include "hig.h"
#include "sexy-icon-entry.h" #include "sexy-icon-entry.h"
#include "torrent-cell-renderer.h" #include "torrent-cell-renderer.h"
#include "tr_prefs.h" #include "tr-prefs.h"
#include "tr_torrent.h" #include "tr-torrent.h"
#include "tr_window.h" #include "tr-window.h"
#include "util.h" #include "util.h"
#if !GTK_CHECK_VERSION(2,8,0) #if !GTK_CHECK_VERSION(2,8,0)

View File

@ -26,7 +26,7 @@
#define TR_WINDOW_H #define TR_WINDOW_H
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "tr_core.h" #include "tr-core.h"
typedef GtkWindow TrWindow; typedef GtkWindow TrWindow;

View File

@ -35,9 +35,9 @@
#include <libevent/evhttp.h> #include <libevent/evhttp.h>
#include "tr_prefs.h"
#include "tr_torrent.h"
#include "conf.h" #include "conf.h"
#include "tr-prefs.h"
#include "tr-torrent.h"
#include "util.h" #include "util.h"
static void static void