2007-07-19 14:06:50 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <wx/aboutdlg.h>
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/config.h>
|
|
|
|
#include <wx/toolbar.h>
|
|
|
|
#include <wx/wx.h>
|
|
|
|
extern "C" {
|
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp : public wxApp
|
|
|
|
{
|
|
|
|
virtual bool OnInit();
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
tr_handle_t * handle = NULL;
|
|
|
|
|
|
|
|
class MyFrame : public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
|
|
|
|
virtual ~MyFrame();
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnOpen(wxCommandEvent& event);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxConfig * myConfig;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_START,
|
|
|
|
ID_STOP,
|
|
|
|
ID_REMOVE,
|
|
|
|
ID_QUIT,
|
|
|
|
ID_TORRENT_INFO,
|
|
|
|
ID_EDIT_PREFS,
|
|
|
|
ID_SHOW_DEBUG_WINDOW,
|
|
|
|
ID_ABOUT,
|
|
|
|
N_IDS
|
|
|
|
};
|
|
|
|
|
|
|
|
void MyFrame :: OnOpen( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
const wxString key = _T("LastDirectory");
|
|
|
|
wxString directory;
|
|
|
|
myConfig->Read( key, &directory );
|
|
|
|
wxFileDialog * w = new wxFileDialog( this, _T("message"),
|
|
|
|
directory,
|
|
|
|
_T(""), /* default file */
|
|
|
|
_T("Torrent files|*.torrent"),
|
|
|
|
wxOPEN|wxMULTIPLE );
|
|
|
|
|
|
|
|
if( w->ShowModal() == wxID_OK )
|
|
|
|
{
|
|
|
|
wxArrayString paths;
|
|
|
|
w->GetPaths( paths );
|
|
|
|
size_t nPaths = paths.GetCount();
|
|
|
|
for( size_t i=0; i<nPaths; ++i )
|
|
|
|
{
|
|
|
|
const wxString& w = paths[i];
|
|
|
|
std::cerr << w.ToAscii() << std::endl;
|
|
|
|
}
|
|
|
|
myConfig->Write( key, w->GetDirectory() );
|
|
|
|
}
|
|
|
|
|
|
|
|
delete w;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
|
|
|
handle = tr_init( "wx" );
|
|
|
|
|
2007-07-19 14:50:42 +00:00
|
|
|
MyFrame * frame = new MyFrame( _T("Xmission"),
|
2007-07-19 14:06:50 +00:00
|
|
|
wxPoint(50,50),
|
|
|
|
wxSize(450,350));
|
|
|
|
|
|
|
|
frame->Connect( wxID_OPEN, wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction) &MyFrame::OnOpen );
|
|
|
|
frame->Connect( wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction) &MyFrame::OnQuit );
|
|
|
|
frame->Connect( wxID_ABOUT, wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction) &MyFrame::OnAbout );
|
|
|
|
|
|
|
|
frame->Show( true );
|
|
|
|
SetTopWindow( frame );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
MyFrame::~MyFrame()
|
|
|
|
{
|
|
|
|
delete myConfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size):
|
|
|
|
wxFrame((wxFrame*)NULL,-1,title,pos,size),
|
|
|
|
myConfig( new wxConfig( _T("xmission") ) )
|
|
|
|
{
|
2007-07-19 14:50:42 +00:00
|
|
|
wxImage::AddHandler( new wxPNGHandler );
|
|
|
|
wxImage transmission_logo ( _T("xpm/transmission.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
wxIcon ico;
|
|
|
|
ico.CopyFromBitmap( wxBitmap( transmission_logo ) );
|
|
|
|
SetIcon( ico );
|
|
|
|
//SetIcon( wxImage( _T("xpm/transmission.png"), wxBITMAP_TYPE_PNG ) );
|
2007-07-19 14:06:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*** Menu
|
|
|
|
**/
|
|
|
|
|
|
|
|
wxMenuBar *menuBar = new wxMenuBar;
|
|
|
|
|
|
|
|
wxMenu * m = new wxMenu;
|
|
|
|
m->Append( wxID_OPEN, _T("&Open") );
|
|
|
|
m->Append( ID_START, _T("&Start") );
|
|
|
|
m->Append( wxID_STOP, _T("Sto&p") ) ;
|
|
|
|
m->Append( wxID_REFRESH, _T("Re&check") );
|
|
|
|
m->Append( wxID_REMOVE, _T("&Remove") );
|
|
|
|
m->AppendSeparator();
|
|
|
|
m->Append( wxID_NEW, _T("Create &New Torrent") );
|
|
|
|
m->AppendSeparator();
|
|
|
|
m->Append( wxID_CLOSE, _T("&Close") );
|
|
|
|
m->Append( wxID_EXIT, _T("&Exit") );
|
|
|
|
menuBar->Append( m, _T("&File") );
|
|
|
|
|
|
|
|
m = new wxMenu;
|
|
|
|
m->Append( ID_TORRENT_INFO, _T("Torrent &Info") );
|
|
|
|
m->Append( wxID_PREFERENCES, _T("Edit &Preferences") );
|
|
|
|
menuBar->Append( m, _T("&Edit") );
|
|
|
|
|
|
|
|
m = new wxMenu;
|
|
|
|
m->Append( ID_SHOW_DEBUG_WINDOW, _T("Show &Debug Window") );
|
|
|
|
m->AppendSeparator();
|
2007-07-19 14:50:42 +00:00
|
|
|
m->Append( wxID_ABOUT, _T("&About Xmission") );
|
2007-07-19 14:06:50 +00:00
|
|
|
menuBar->Append( m, _T("&Help") );
|
|
|
|
|
|
|
|
SetMenuBar(menuBar);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*** Toolbar
|
|
|
|
**/
|
|
|
|
|
2007-07-19 14:50:42 +00:00
|
|
|
wxImage open_image( _T("xpm/fileopen.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
wxImage exec_image( _T("xpm/exec.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
wxImage stop_image( _T("xpm/stop.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
wxImage drop_image( _T("xpm/gtk-remove.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
wxImage info_image( _T("xpm/gtk-properties.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
|
2007-07-19 14:06:50 +00:00
|
|
|
wxToolBar* toolbar = CreateToolBar( wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT | wxTB_TEXT );
|
|
|
|
toolbar->SetToolBitmapSize( wxSize( 16, 16 ) );
|
2007-07-19 14:50:42 +00:00
|
|
|
toolbar->AddTool( wxID_OPEN, _T("Open"), open_image );
|
|
|
|
toolbar->AddTool( ID_START, _T("Start"), exec_image );
|
|
|
|
toolbar->AddTool( wxID_STOP, _T("Stop"), stop_image );
|
|
|
|
toolbar->AddTool( wxID_REMOVE, _T("Remove"), drop_image );
|
2007-07-19 14:06:50 +00:00
|
|
|
toolbar->AddSeparator();
|
2007-07-19 14:50:42 +00:00
|
|
|
toolbar->AddTool( ID_TORRENT_INFO, _("Torrent Info"), info_image );
|
2007-07-19 14:06:50 +00:00
|
|
|
toolbar->Realize();
|
|
|
|
|
|
|
|
/**
|
|
|
|
*** Status Bar
|
|
|
|
**/
|
|
|
|
|
|
|
|
CreateStatusBar();
|
2007-07-19 14:50:42 +00:00
|
|
|
SetStatusText(_T("Welcome to Xmission!"));
|
2007-07-19 14:06:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
Close(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2007-07-19 14:50:42 +00:00
|
|
|
wxImage transmission_logo ( _T("xpm/transmission.png"), wxBITMAP_TYPE_PNG );
|
|
|
|
wxIcon ico;
|
|
|
|
ico.CopyFromBitmap( wxBitmap( transmission_logo ) );
|
|
|
|
|
2007-07-19 14:06:50 +00:00
|
|
|
wxAboutDialogInfo info;
|
2007-07-19 14:50:42 +00:00
|
|
|
info.SetName(_T("Xmission"));
|
2007-07-19 14:06:50 +00:00
|
|
|
info.SetVersion(_T(LONG_VERSION_STRING));
|
|
|
|
info.SetCopyright(_T("Copyright 2005-2007 The Transmission Project"));
|
|
|
|
info.SetDescription(_T("A fast, lightweight bittorrent client"));
|
|
|
|
info.SetWebSite( _T( "http://transmission.m0k.org/" ) );
|
2007-07-19 14:50:42 +00:00
|
|
|
info.SetIcon( ico );
|
2007-07-19 14:06:50 +00:00
|
|
|
info.AddDeveloper( "Josh Elsasser (Back-end; GTK+)" );
|
|
|
|
info.AddDeveloper ("Charles Kerr (Back-end, GTK+, wxWidgets)");
|
|
|
|
info.AddDeveloper( "Mitchell Livingston (Back-end; OS X)" );
|
|
|
|
info.AddDeveloper( "Eric Petit (Back-end; OS X)" );
|
|
|
|
info.AddDeveloper( "Bryan Varner (BeOS)" );
|
|
|
|
wxAboutBox( info );
|
|
|
|
}
|