Upstream tarball 9324
[amule.git] / src / amuleDlg.cpp
blob7cc7bfdf38383e9a1cbb1ae10324c5efd8400ee0
2 //
3 // This file is part of the aMule Project.
4 //
5 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
6 // Copyright (c) 2002-2008 Merkur ( devs@emule-project.net / http://www.emule-project.net )
7 //
8 // Any parts of this program derived from the xMule, lMule or eMule project,
9 // or contributed by third-party developers are copyrighted by their
10 // respective authors.
12 // This program is free software; you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation; either version 2 of the License, or
15 // (at your option) any later version.
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with this program; if not, write to the Free Software
24 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include <wx/app.h>
29 #include <wx/archive.h>
30 #include <wx/config.h> // Do_not_auto_remove (MacOS 10.3, wx 2.7)
31 #include <wx/confbase.h> // Do_not_auto_remove (MacOS 10.3, wx 2.7)
32 #include <wx/html/htmlwin.h>
33 #include <wx/mimetype.h> // Do_not_auto_remove (win32)
34 #include <wx/stattext.h>
35 #include <wx/stdpaths.h>
36 #include <wx/textfile.h> // Do_not_auto_remove (win32)
37 #include <wx/tokenzr.h>
38 #include <wx/wfstream.h>
39 #include <wx/zipstrm.h>
40 #include <wx/sysopt.h>
41 #include <wx/wupdlock.h> // Needed for wxWindowUpdateLocker
43 #include <common/EventIDs.h>
45 #ifdef HAVE_CONFIG_H
46 #include "config.h" // Needed for SVNDATE, PACKAGE, VERSION
47 #else
48 #include <common/ClientVersion.h>
49 #endif // HAVE_CONFIG_H
51 #include "amuleDlg.h" // Interface declarations.
53 #include <common/Format.h> // Needed for CFormat
54 #include "amule.h" // Needed for theApp
55 #include "ChatWnd.h" // Needed for CChatWnd
56 #include "ClientListCtrl.h" // Needed for CClientListCtrl
57 #include "DownloadListCtrl.h" // Needed for CDownloadListCtrl
58 #include "DownloadQueue.h" // Needed for CDownloadQueue
59 #include "KadDlg.h" // Needed for CKadDlg
60 #include "Logger.h"
61 #include "MuleTrayIcon.h"
62 #include "muuli_wdr.h" // Needed for ID_BUTTON*
63 #include "Preferences.h" // Needed for CPreferences
64 #include "PrefsUnifiedDlg.h"
65 #include "SearchDlg.h" // Needed for CSearchDlg
66 #include "Server.h" // Needed for CServer
67 #include "ServerConnect.h" // Needed for CServerConnect
68 #include "ServerWnd.h" // Needed for CServerWnd
69 #include "SharedFilesWnd.h" // Needed for CSharedFilesWnd
70 #include "Statistics.h" // Needed for theStats
71 #include "StatisticsDlg.h" // Needed for CStatisticsDlg
72 #include "TerminationProcess.h" // Needed for CTerminationProcess
73 #include "TransferWnd.h" // Needed for CTransferWnd
74 #ifndef CLIENT_GUI
75 #include "PartFileConvert.h"
76 #endif
78 #ifndef __WXMSW__
79 #include "aMule.xpm"
80 #endif
82 #include "kademlia/kademlia/Kademlia.h"
84 #ifdef ENABLE_IP2COUNTRY
85 #include "IP2Country.h" // Needed for IP2Country
86 #endif
88 #ifdef ENABLE_IP2COUNTRY // That's no bug. MSVC has ENABLE_IP2COUNTRY always on,
89 // but dummy GeoIP.h turns ENABLE_IP2COUNTRY off again.
90 void CamuleDlg::IP2CountryDownloadFinished(uint32 result)
92 m_IP2Country->DownloadFinished(result);
95 void CamuleDlg::EnableIP2Country()
97 if (thePrefs::IsGeoIPEnabled()) {
98 m_IP2Country->Enable();
102 #else
104 void CamuleDlg::IP2CountryDownloadFinished(uint32){}
105 void CamuleDlg::EnableIP2Country(){}
107 #endif
109 BEGIN_EVENT_TABLE(CamuleDlg, wxFrame)
111 EVT_TOOL(ID_BUTTONNETWORKS, CamuleDlg::OnToolBarButton)
112 EVT_TOOL(ID_BUTTONSEARCH, CamuleDlg::OnToolBarButton)
113 EVT_TOOL(ID_BUTTONTRANSFER, CamuleDlg::OnToolBarButton)
114 EVT_TOOL(ID_BUTTONSHARED, CamuleDlg::OnToolBarButton)
115 EVT_TOOL(ID_BUTTONMESSAGES, CamuleDlg::OnToolBarButton)
116 EVT_TOOL(ID_BUTTONSTATISTICS, CamuleDlg::OnToolBarButton)
117 EVT_TOOL(ID_ABOUT, CamuleDlg::OnAboutButton)
119 EVT_TOOL(ID_BUTTONNEWPREFERENCES, CamuleDlg::OnPrefButton)
120 #ifndef CLIENT_GUI
121 EVT_TOOL(ID_BUTTONIMPORT, CamuleDlg::OnImportButton)
122 #endif
124 EVT_TOOL(ID_BUTTONCONNECT, CamuleDlg::OnBnConnect)
126 EVT_CLOSE(CamuleDlg::OnClose)
127 EVT_ICONIZE(CamuleDlg::OnMinimize)
129 EVT_BUTTON(ID_BUTTON_FAST, CamuleDlg::OnBnClickedFast)
131 EVT_TIMER(ID_GUI_TIMER_EVENT, CamuleDlg::OnGUITimer)
133 EVT_SIZE(CamuleDlg::OnMainGUISizeChange)
135 EVT_KEY_UP(CamuleDlg::OnKeyPressed)
137 EVT_MENU(wxID_EXIT, CamuleDlg::OnExit)
139 END_EVENT_TABLE()
141 #ifndef wxCLOSE_BOX
142 #define wxCLOSE_BOX 0
143 #endif
145 CamuleDlg::CamuleDlg(
146 wxWindow* pParent,
147 const wxString &title,
148 wxPoint where,
149 wxSize dlg_size)
151 wxFrame(
152 pParent, -1, title, where, dlg_size,
153 wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxDIALOG_NO_PARENT|
154 wxRESIZE_BORDER|wxMINIMIZE_BOX|wxMAXIMIZE_BOX|wxCLOSE_BOX,
155 wxT("aMule")),
156 m_activewnd(NULL),
157 m_transferwnd(NULL),
158 m_serverwnd(NULL),
159 m_sharedfileswnd(NULL),
160 m_searchwnd(NULL),
161 m_chatwnd(NULL),
162 m_statisticswnd(NULL),
163 m_kademliawnd(NULL),
164 m_prefsDialog(NULL),
165 m_srv_split_pos(0),
166 m_imagelist(16,16),
167 m_tblist(32,32),
168 m_prefsVisible(false),
169 m_wndToolbar(NULL),
170 m_wndTaskbarNotifier(NULL),
171 m_TrayIcon(false),
172 m_nActiveDialog(DT_NETWORKS_WND),
173 m_is_safe_state(false),
174 m_BlinkMessages(false),
175 m_CurrentBlinkBitmap(24),
176 m_last_iconizing(0),
177 m_skinFileName(),
178 m_clientSkinNames(CLIENT_SKIN_SIZE)
180 // Initialize skin names
181 m_clientSkinNames[Client_Green_Smiley] = wxT("Transfer");
182 m_clientSkinNames[Client_Red_Smiley] = wxT("Connecting");
183 m_clientSkinNames[Client_Yellow_Smiley] = wxT("OnQueue");
184 m_clientSkinNames[Client_Grey_Smiley] = wxT("A4AFNoNeededPartsQueueFull");
185 m_clientSkinNames[Client_White_Smiley] = wxT("StatusUnknown");
186 m_clientSkinNames[Client_ExtendedProtocol_Smiley] = wxT("ExtendedProtocol");
187 m_clientSkinNames[Client_SecIdent_Smiley] = wxT("SecIdent");
188 m_clientSkinNames[Client_BadGuy_Smiley] = wxT("BadGuy");
189 m_clientSkinNames[Client_CreditsGrey_Smiley] = wxT("CreditsGrey");
190 m_clientSkinNames[Client_CreditsYellow_Smiley] = wxT("CreditsYellow");
191 m_clientSkinNames[Client_Upload_Smiley] = wxT("Upload");
192 m_clientSkinNames[Client_Friend_Smiley] = wxT("Friend");
193 m_clientSkinNames[Client_eMule_Smiley] = wxT("eMule");
194 m_clientSkinNames[Client_mlDonkey_Smiley] = wxT("mlDonkey");
195 m_clientSkinNames[Client_eDonkeyHybrid_Smiley] = wxT("eDonkeyHybrid");
196 m_clientSkinNames[Client_aMule_Smiley] = wxT("aMule");
197 m_clientSkinNames[Client_lphant_Smiley] = wxT("lphant");
198 m_clientSkinNames[Client_Shareaza_Smiley] = wxT("Shareaza");
199 m_clientSkinNames[Client_xMule_Smiley] = wxT("xMule");
200 m_clientSkinNames[Client_Unknown] = wxT("Unknown");
201 m_clientSkinNames[Client_InvalidRating_Smiley] = wxT("InvalidRatingOnFile");
202 m_clientSkinNames[Client_PoorRating_Smiley] = wxT("PoorRatingOnFile");
203 m_clientSkinNames[Client_GoodRating_Smiley] = wxT("GoodRatingOnFile");
204 m_clientSkinNames[Client_FairRating_Smiley] = wxT("FairRatingOnFile");
205 m_clientSkinNames[Client_ExcellentRating_Smiley] = wxT("ExcellentRatingOnFile");
206 m_clientSkinNames[Client_CommentOnly_Smiley] = wxT("CommentOnly");
207 m_clientSkinNames[Client_Encryption_Smiley] = wxT("Encrypted");
209 // wxWidgets send idle events to ALL WINDOWS by default... *SIGH*
210 wxIdleEvent::SetMode(wxIDLE_PROCESS_SPECIFIED);
211 wxUpdateUIEvent::SetMode(wxUPDATE_UI_PROCESS_SPECIFIED);
212 wxInitAllImageHandlers();
213 Apply_Clients_Skin();
215 #ifdef __WXMSW__
216 wxSystemOptions::SetOption(wxT("msw.remap"), 0);
217 #endif
219 SetIcon(wxICON(aMule));
221 srand(time(NULL));
223 // Create new sizer and stuff a wxPanel in there.
224 wxFlexGridSizer *s_main = new wxFlexGridSizer(1);
225 s_main->AddGrowableCol(0);
226 s_main->AddGrowableRow(0);
228 wxPanel* p_cnt = new wxPanel(this, -1, wxDefaultPosition, wxDefaultSize);
229 s_main->Add(p_cnt, 0, wxGROW|wxEXPAND, 0);
230 muleDlg(p_cnt, false, true);
231 SetSizer(s_main, true);
233 m_serverwnd = new CServerWnd(p_cnt, m_srv_split_pos);
234 AddLogLineM(false, wxEmptyString);
235 AddLogLineM(false, wxT(" - ") +
236 CFormat(_("This is aMule %s based on eMule.")) % GetMuleVersion());
237 AddLogLineM(false, wxT(" ") +
238 CFormat(_("Running on %s")) % wxGetOsDescription());
239 AddLogLineM(false, wxT(" - ") +
240 wxString(_("Visit http://www.amule.org to check if a new version is available.")));
241 AddLogLineM(false, wxEmptyString);
243 #ifdef ENABLE_IP2COUNTRY
244 m_GeoIPavailable = true;
245 m_IP2Country = new CIP2Country();
246 #else
247 m_GeoIPavailable = false;
248 #endif
249 m_searchwnd = new CSearchDlg(p_cnt);
250 m_transferwnd = new CTransferWnd(p_cnt);
251 m_sharedfileswnd = new CSharedFilesWnd(p_cnt);
252 m_statisticswnd = new CStatisticsDlg(p_cnt, theApp->m_statistics);
253 m_chatwnd = new CChatWnd(p_cnt);
254 m_kademliawnd = CastChild(wxT("kadWnd"), CKadDlg);
256 m_serverwnd->Show(false);
257 m_searchwnd->Show(false);
258 m_transferwnd->Show(false);
259 m_sharedfileswnd->Show(false);
260 m_statisticswnd->Show(false);
261 m_chatwnd->Show(false);
263 // Create the GUI timer
264 gui_timer=new wxTimer(this,ID_GUI_TIMER_EVENT);
265 if (!gui_timer) {
266 AddLogLineM(false, _("FATAL ERROR: Failed to create Timer"));
267 exit(1);
270 // Set transfers as active window
271 Create_Toolbar(thePrefs::VerticalToolbar());
272 SetActiveDialog(DT_TRANSFER_WND, m_transferwnd);
273 // Prepare the dialog, sets the splitter-position
274 m_transferwnd->Prepare();
275 m_wndToolbar->ToggleTool(ID_BUTTONTRANSFER, true );
277 bool override_where = (where != wxDefaultPosition);
278 bool override_size = (
279 (dlg_size.x != DEFAULT_SIZE_X) ||
280 (dlg_size.y != DEFAULT_SIZE_Y) );
281 if (!LoadGUIPrefs(override_where, override_size)) {
282 // Prefs not loaded for some reason, exit
283 AddLogLineM( true, wxT("Error! Unable to load Preferences") );
284 return;
287 m_is_safe_state = true;
289 // Init statistics stuff, better do it asap
290 m_statisticswnd->Init();
291 m_kademliawnd->Init();
292 m_searchwnd->UpdateCatChoice();
293 if (thePrefs::UseTrayIcon()) {
294 CreateSystray();
297 Show(true);
298 // Must we start minimized?
299 if (thePrefs::GetStartMinimized()) {
300 DoIconize(true);
303 // Set shortcut keys
304 wxAcceleratorEntry entries[] = {
305 wxAcceleratorEntry(wxACCEL_CTRL, wxT('Q'), wxID_EXIT)
308 SetAcceleratorTable(wxAcceleratorTable(itemsof(entries), entries));
309 ShowED2KLinksHandler( thePrefs::GetFED2KLH() );
311 wxNotebook* logs_notebook = CastChild( ID_SRVLOG_NOTEBOOK, wxNotebook);
312 wxNotebook* networks_notebook = CastChild( ID_NETNOTEBOOK, wxNotebook);
314 wxASSERT(logs_notebook->GetPageCount() == 4);
315 wxASSERT(networks_notebook->GetPageCount() == 2);
317 for (uint32 i = 0; i < logs_notebook->GetPageCount(); ++i) {
318 m_logpages[i].page = logs_notebook->GetPage(i);
319 m_logpages[i].name = logs_notebook->GetPageText(i);
322 for (uint32 i = 0; i < networks_notebook->GetPageCount(); ++i) {
323 m_networkpages[i].page = networks_notebook->GetPage(i);
324 m_networkpages[i].name = networks_notebook->GetPageText(i);
327 DoNetworkRearrange();
331 // Madcat - Sets Fast ED2K Links Handler on/off.
332 void CamuleDlg::ShowED2KLinksHandler( bool show )
334 // Errorchecking in case the pointer becomes invalid ...
335 if (s_fed2klh == NULL) {
336 wxLogWarning(wxT("Unable to find Fast ED2K Links handler sizer! Hiding FED2KLH aborted."));
337 return;
340 s_dlgcnt->Show( s_fed2klh, show );
341 s_dlgcnt->Layout();
344 // Toogles ed2k link handler.
345 void CamuleDlg::ToogleED2KLinksHandler()
347 // Errorchecking in case the pointer becomes invalid ...
348 if (s_fed2klh == NULL) {
349 wxLogWarning(wxT("Unable to find Fast ED2K Links handler sizer! Toogling FED2KLH aborted."));
350 return;
352 ShowED2KLinksHandler(!s_dlgcnt->IsShown(s_fed2klh));
355 void CamuleDlg::SetActiveDialog(DialogType type, wxWindow* dlg)
357 m_nActiveDialog = type;
359 if ( type == DT_TRANSFER_WND ) {
360 if (thePrefs::ShowCatTabInfos()) {
361 m_transferwnd->UpdateCatTabTitles();
365 if ( m_activewnd ) {
366 m_activewnd->Show(false);
367 contentSizer->Detach(m_activewnd);
370 contentSizer->Add(dlg, 1, wxALIGN_LEFT|wxEXPAND);
371 dlg->Show(true);
372 m_activewnd=dlg;
373 s_dlgcnt->Layout();
375 // Since we might be suspending redrawing while hiding the dialog
376 // we have to refresh it once it is visible again
377 dlg->Refresh( true );
378 dlg->SetFocus();
382 void CamuleDlg::UpdateTrayIcon(int percent)
384 // set trayicon-icon
385 if(!theApp->IsConnected()) {
386 m_wndTaskbarNotifier->SetTrayIcon(TRAY_ICON_DISCONNECTED, percent);
387 } else {
388 if(theApp->IsConnectedED2K() && theApp->serverconnect->IsLowID()) {
389 m_wndTaskbarNotifier->SetTrayIcon(TRAY_ICON_LOWID, percent);
390 } else {
391 m_wndTaskbarNotifier->SetTrayIcon(TRAY_ICON_HIGHID, percent);
397 void CamuleDlg::CreateSystray()
399 wxCHECK_RET(m_TrayIcon == false,
400 wxT("Systray already created"));
402 m_wndTaskbarNotifier = new CMuleTrayIcon();
403 m_TrayIcon = true;
404 // This will effectively show the Tray Icon.
405 UpdateTrayIcon(0);
409 void CamuleDlg::RemoveSystray()
411 delete m_wndTaskbarNotifier;
412 m_wndTaskbarNotifier = NULL;
413 m_TrayIcon = false;
417 void CamuleDlg::OnToolBarButton(wxCommandEvent& ev)
419 static int lastbutton = ID_BUTTONTRANSFER;
421 // Kry - just if the GUI is ready for it
422 if ( m_is_safe_state ) {
424 // Rehide the handler if needed
425 if ( lastbutton == ID_BUTTONSEARCH && !thePrefs::GetFED2KLH() ) {
426 if (ev.GetId() != ID_BUTTONSEARCH) {
427 ShowED2KLinksHandler( false );
428 } else {
429 // Toogle ED2K handler.
430 ToogleED2KLinksHandler();
434 if ( lastbutton != ev.GetId() ) {
435 switch ( ev.GetId() ) {
436 case ID_BUTTONNETWORKS:
437 SetActiveDialog(DT_NETWORKS_WND, m_serverwnd);
438 // Set serverlist splitter position
439 CastChild( wxT("SrvSplitterWnd"), wxSplitterWindow )->SetSashPosition(m_srv_split_pos, true);
440 break;
442 case ID_BUTTONSEARCH:
443 // The search dialog should always display the handler
444 if ( !thePrefs::GetFED2KLH() )
445 ShowED2KLinksHandler( true );
447 SetActiveDialog(DT_SEARCH_WND, m_searchwnd);
448 break;
450 case ID_BUTTONTRANSFER:
451 SetActiveDialog(DT_TRANSFER_WND, m_transferwnd);
452 // Prepare the dialog, sets the splitter-position
453 m_transferwnd->Prepare();
454 break;
456 case ID_BUTTONSHARED:
457 SetActiveDialog(DT_SHARED_WND, m_sharedfileswnd);
458 break;
460 case ID_BUTTONMESSAGES:
461 m_BlinkMessages = false;
462 SetActiveDialog(DT_CHAT_WND, m_chatwnd);
463 break;
465 case ID_BUTTONSTATISTICS:
466 SetActiveDialog(DT_STATS_WND, m_statisticswnd);
467 break;
469 // This shouldn't happen, but just in case
470 default:
471 AddLogLineM( true, wxT("Unknown button triggered CamuleApp::OnToolBarButton().") );
472 break;
476 m_wndToolbar->ToggleTool(lastbutton, lastbutton == ev.GetId() );
477 lastbutton = ev.GetId();
482 void CamuleDlg::OnAboutButton(wxCommandEvent& WXUNUSED(ev))
484 wxString msg = wxT(" ");
485 #ifdef CLIENT_GUI
486 msg << _("aMule remote control ") << wxT(VERSION);
487 #else
488 msg << wxT("aMule ") << wxT(VERSION);
489 #endif
490 msg << wxT(" ");
491 #ifdef SVNDATE
492 msg << _("Snapshot:") << wxT("\n ") << wxT(SVNDATE);
493 #endif
494 msg << wxT("\n\n") << _("'All-Platform' p2p client based on eMule \n\n") <<
495 _("Website: http://www.amule.org \n") <<
496 _("Forum: http://forum.amule.org \n") <<
497 _("FAQ: http://wiki.amule.org \n\n") <<
498 _("Contact: admin@amule.org (administrative issues) \n") <<
499 _("Copyright (c) 2003-2008 aMule Team \n\n") <<
500 _("Part of aMule is based on \n") <<
501 _("Kademlia: Peer-to-peer routing based on the XOR metric.\n") <<
502 _(" Copyright (c) 2002-2008 Petar Maymounkov ( petar@post.harvard.edu )\n") <<
503 _("http://kademlia.scs.cs.nyu.edu\n");
505 if (m_is_safe_state) {
506 wxMessageBox(msg, _("Message"), wxOK | wxICON_INFORMATION, this);
511 void CamuleDlg::OnPrefButton(wxCommandEvent& WXUNUSED(ev))
513 if (m_is_safe_state) {
514 if (m_prefsDialog == NULL) {
515 m_prefsDialog = new PrefsUnifiedDlg(this);
518 m_prefsDialog->TransferToWindow();
519 m_prefsDialog->Show(true);
520 m_prefsDialog->Raise();
525 #ifndef CLIENT_GUI
526 void CamuleDlg::OnImportButton(wxCommandEvent& WXUNUSED(ev))
528 if ( m_is_safe_state ) {
529 CPartFileConvert::ShowGUI(NULL);
532 #endif
534 CamuleDlg::~CamuleDlg()
536 AddLogLineN(_("Shutting down aMule..."));
538 SaveGUIPrefs();
540 theApp->amuledlg = NULL;
542 #ifdef ENABLE_IP2COUNTRY
543 delete m_IP2Country;
544 #endif
546 AddLogLineN(_("aMule dialog destroyed"));
550 void CamuleDlg::OnBnConnect(wxCommandEvent& WXUNUSED(evt))
553 bool disconnect = (theApp->IsConnectedED2K() || theApp->serverconnect->IsConnecting())
554 #ifndef CLIENT_GUI
555 || (Kademlia::CKademlia::IsRunning())
556 #endif
558 if (thePrefs::GetNetworkED2K()) {
559 if (disconnect) {
560 //disconnect if currently connected
561 if (theApp->serverconnect->IsConnecting()) {
562 theApp->serverconnect->StopConnectionTry();
563 } else {
564 theApp->serverconnect->Disconnect();
566 } else {
567 //connect if not currently connected
568 AddLogLineM(true, _("Connecting"));
569 theApp->serverconnect->ConnectToAnyServer();
571 } else {
572 wxASSERT(!theApp->IsConnectedED2K());
575 // Connect Kad also
576 if (thePrefs::GetNetworkKademlia()) {
577 if( disconnect ) {
578 theApp->StopKad();
579 } else {
580 theApp->StartKad();
582 } else {
583 #ifndef CLIENT_GUI
584 wxASSERT(!Kademlia::CKademlia::IsRunning());
585 #endif
588 ShowConnectionState();
592 void CamuleDlg::ResetLog(int id)
594 wxTextCtrl* ct = CastByID(id, m_serverwnd, wxTextCtrl);
595 wxCHECK_RET(ct, wxT("Resetting unknown log"));
597 ct->Clear();
599 if (id == ID_LOGVIEW) {
600 // Also clear the log line
601 wxStaticText* text = CastChild(wxT("infoLabel"), wxStaticText);
602 text->SetLabel(wxEmptyString);
603 text->GetParent()->Layout();
608 void CamuleDlg::AddLogLine(const wxString& line)
610 bool addtostatusbar = line[0] == '!';
611 wxString bufferline = line.Mid(1);
613 // Add the message to the log-view
614 wxTextCtrl* ct = CastByID( ID_LOGVIEW, m_serverwnd, wxTextCtrl );
615 if ( ct ) {
616 // Bold critical log-lines
617 // to enable this on Windows control has to be changed to wxTE_RICH2 in muuli
618 #ifdef __WXMSW__
619 ct->AppendText(line); // keep the leading "!" if it can't be bolded
620 #else
621 wxTextAttr style = ct->GetDefaultStyle();
622 wxFont font = style.GetFont();
623 font.SetWeight(addtostatusbar ? wxFONTWEIGHT_BOLD : wxFONTWEIGHT_NORMAL);
624 style.SetFont(font);
625 ct->SetDefaultStyle(style);
626 ct->AppendText(bufferline);
627 #endif
628 ct->ShowPosition( ct->GetLastPosition() - 1 );
632 // Set the status-bar if the event warrents it
633 if ( addtostatusbar ) {
634 // Escape "&"s, which would otherwise not show up
635 bufferline.Replace( wxT("&"), wxT("&&") );
636 wxStaticText* text = CastChild( wxT("infoLabel"), wxStaticText );
637 // Only show the first line if multiple lines
638 text->SetLabel( bufferline.BeforeFirst( wxT('\n') ) );
639 text->SetToolTip( bufferline );
640 text->GetParent()->Layout();
646 void CamuleDlg::AddServerMessageLine(wxString& message)
648 wxTextCtrl* cv= CastByID( ID_SERVERINFO, m_serverwnd, wxTextCtrl );
649 if(cv) {
650 if (message.Length() > 500) {
651 cv->AppendText(message.Left(500) + wxT("\n"));
652 } else {
653 cv->AppendText(message + wxT("\n"));
655 cv->ShowPosition(cv->GetLastPosition()-1);
660 void CamuleDlg::ShowConnectionState(bool skinChanged)
662 static wxImageList status_arrows(16,16,true,0);
663 if (!status_arrows.GetImageCount()) {
664 // Generate the image list (This is only done once)
665 for (int t = 0; t < 7; ++t) {
666 status_arrows.Add(connImages(t));
670 m_serverwnd->UpdateED2KInfo();
671 m_serverwnd->UpdateKadInfo();
674 ////////////////////////////////////////////////////////////
675 // Determine the status of the networks
677 enum ED2KState { ED2KOff = 0, ED2KLowID = 1, ED2KConnecting = 2, ED2KHighID = 3, ED2KUndef = -1 };
678 enum EKadState { EKadOff = 4, EKadFW = 5, EKadConnecting = 5, EKadOK = 6, EKadUndef = -1 };
680 ED2KState ed2kState = ED2KOff;
681 EKadState kadState = EKadOff;
683 ////////////////////////////////////////////////////////////
684 // Update the label on the status-bar and determine
685 // the states of the two networks.
687 wxString msgED2K;
688 if (theApp->IsConnectedED2K()) {
689 CServer* server = theApp->serverconnect->GetCurrentServer();
690 if (server) {
691 msgED2K = CFormat(wxT("eD2k: %s")) % server->GetListName();
694 if (theApp->serverconnect->IsLowID()) {
695 ed2kState = ED2KLowID;
696 } else {
697 ed2kState = ED2KHighID;
699 } else if (theApp->serverconnect->IsConnecting()) {
700 msgED2K = _("eD2k: Connecting");
702 ed2kState = ED2KConnecting;
703 } else if (thePrefs::GetNetworkED2K()) {
704 msgED2K = _("eD2k: Disconnected");
707 wxString msgKad;
708 if (theApp->IsConnectedKad()) {
709 if (theApp->IsFirewalledKad()) {
710 msgKad = _("Kad: Firewalled");
712 kadState = EKadFW;
713 } else {
714 msgKad = _("Kad: Connected");
716 kadState = EKadOK;
718 } else if (theApp->IsKadRunning()) {
719 msgKad = _("Kad: Connecting");
721 kadState = EKadConnecting;
722 } else if (thePrefs::GetNetworkKademlia()) {
723 msgKad = _("Kad: Off");
726 wxStaticText* connLabel = CastChild( wxT("connLabel"), wxStaticText );
727 wxCHECK_RET(connLabel, wxT("'connLabel' widget not found"));
729 wxString labelMsg;
730 if (msgED2K.Length() && msgKad.Length()) {
731 labelMsg = msgED2K + wxT(" | ") + msgKad;
732 } else {
733 labelMsg = msgED2K + msgKad;
736 connLabel->SetLabel(labelMsg);
737 connLabel->GetParent()->Layout();
740 ////////////////////////////////////////////////////////////
741 // Update the connect/disconnect/cancel button.
743 enum EConnState {
744 ECS_Unknown,
745 ECS_Connected,
746 ECS_Connecting,
747 ECS_Disconnected
750 static EConnState s_oldState = ECS_Unknown;
751 EConnState currentState = ECS_Disconnected;
753 if (theApp->serverconnect->IsConnecting() ||
754 (theApp->IsKadRunning() && !theApp->IsConnectedKad())) {
755 currentState = ECS_Connecting;
756 } else if (theApp->IsConnected()) {
757 currentState = ECS_Connected;
758 } else {
759 currentState = ECS_Disconnected;
762 if ( (true == skinChanged) || (currentState != s_oldState) ) {
763 wxWindowUpdateLocker freezer(m_wndToolbar);
765 wxToolBarToolBase* toolbarTool = m_wndToolbar->RemoveTool(ID_BUTTONCONNECT);
767 switch (currentState) {
768 case ECS_Connecting:
769 toolbarTool->SetLabel(_("Cancel"));
770 toolbarTool->SetShortHelp(_("Stop the current connection attempts"));
771 toolbarTool->SetNormalBitmap(m_tblist.GetBitmap(2));
772 break;
774 case ECS_Connected:
775 toolbarTool->SetLabel(_("Disconnect"));
776 toolbarTool->SetShortHelp(_("Disconnect from the currently connected networks"));
777 toolbarTool->SetNormalBitmap(m_tblist.GetBitmap(1));
778 break;
780 default:
781 toolbarTool->SetLabel(_("Connect"));
782 toolbarTool->SetShortHelp(_("Connect to the currently enabled networks"));
783 toolbarTool->SetNormalBitmap(m_tblist.GetBitmap(0));
786 m_wndToolbar->InsertTool(0, toolbarTool);
787 m_wndToolbar->Realize();
789 s_oldState = currentState;
793 ////////////////////////////////////////////////////////////
794 // Update the globe-icon in the lower-right corner.
795 // (only if connection state has changed)
797 static ED2KState s_ED2KOldState = ED2KUndef;
798 static EKadState s_EKadOldState = EKadUndef;
799 if (ed2kState != s_ED2KOldState || kadState != s_EKadOldState) {
800 s_ED2KOldState = ed2kState;
801 s_EKadOldState = kadState;
802 wxStaticBitmap* connBitmap = CastChild( wxT("connImage"), wxStaticBitmap );
803 wxCHECK_RET(connBitmap, wxT("'connImage' widget not found"));
805 wxBitmap statusIcon = connBitmap->GetBitmap();
806 // Sanity check - otherwise there's a crash here if aMule runs out of resources
807 if (statusIcon.GetRefData() == NULL) {
808 return;
811 wxMemoryDC bitmapDC(statusIcon);
813 status_arrows.Draw(kadState, bitmapDC, 0, 0, wxIMAGELIST_DRAW_TRANSPARENT);
814 status_arrows.Draw(ed2kState, bitmapDC, 0, 0, wxIMAGELIST_DRAW_TRANSPARENT);
816 connBitmap->SetBitmap(statusIcon);
821 void CamuleDlg::ShowUserCount(const wxString& info)
823 wxStaticText* label = CastChild( wxT("userLabel"), wxStaticText );
825 // Update Kad tab
826 m_serverwnd->UpdateKadInfo();
828 label->SetLabel(info);
829 label->GetParent()->Layout();
833 void CamuleDlg::ShowTransferRate()
835 float kBpsUp = theStats::GetUploadRate() / 1024.0;
836 float kBpsDown = theStats::GetDownloadRate() / 1024.0;
837 wxString buffer;
838 if( thePrefs::ShowOverhead() )
840 buffer = wxString::Format(_("Up: %.1f(%.1f) | Down: %.1f(%.1f)"), kBpsUp, theStats::GetUpOverheadRate() / 1024.0, kBpsDown, theStats::GetDownOverheadRate() / 1024.0);
841 } else {
842 buffer = wxString::Format(_("Up: %.1f | Down: %.1f"), kBpsUp, kBpsDown);
844 buffer.Truncate(50); // Max size 50
846 wxStaticText* label = CastChild( wxT("speedLabel"), wxStaticText );
847 label->SetLabel(buffer);
848 label->GetParent()->Layout();
850 // Show upload/download speed in title
851 if (thePrefs::GetShowRatesOnTitle()) {
852 wxString UpDownSpeed = wxString::Format(wxT("Up: %.1f | Down: %.1f"), kBpsUp, kBpsDown);
853 if (thePrefs::GetShowRatesOnTitle() == 1) {
854 SetTitle(theApp->m_FrameTitle + wxT(" -- ") + UpDownSpeed);
855 } else {
856 SetTitle(UpDownSpeed + wxT(" -- ") + theApp->m_FrameTitle);
860 wxASSERT(m_TrayIcon == thePrefs::UseTrayIcon());
861 if (m_TrayIcon) {
862 // set trayicon-icon
863 int percentDown = (int)ceil((kBpsDown*100) / thePrefs::GetMaxGraphDownloadRate());
864 UpdateTrayIcon( ( percentDown > 100 ) ? 100 : percentDown);
866 wxString buffer2;
867 if ( theApp->IsConnected() ) {
868 buffer2 = CFormat(_("aMule (%s | Connected)")) % buffer;
869 } else {
870 buffer2 = CFormat(_("aMule (%s | Disconnected)")) % buffer;
872 m_wndTaskbarNotifier->SetTrayToolTip(buffer2);
875 wxStaticBitmap* bmp = CastChild( wxT("transferImg"), wxStaticBitmap );
876 bmp->SetBitmap(dlStatusImages((kBpsUp>0.01 ? 2 : 0) + (kBpsDown>0.01 ? 1 : 0)));
879 void CamuleDlg::DlgShutDown()
881 // Are we already shutting down or still on init?
882 if ( m_is_safe_state == false ) {
883 return;
886 // we are going DOWN
887 m_is_safe_state = false;
889 // Stop the GUI Timer
890 delete gui_timer;
891 m_transferwnd->downloadlistctrl->DeleteAllItems();
893 // We want to delete the systray too!
894 RemoveSystray();
897 void CamuleDlg::OnClose(wxCloseEvent& evt)
899 // This will be here till the core close is != app close
900 if (evt.CanVeto() && thePrefs::IsConfirmExitEnabled() ) {
901 if (wxNO == wxMessageBox(wxString(_("Do you really want to exit aMule?")),
902 wxString(_("Exit confirmation")), wxYES_NO, this)) {
903 evt.Veto();
904 return;
908 Enable(false);
909 Show(false);
911 theApp->ShutDown(evt);
915 void CamuleDlg::OnBnClickedFast(wxCommandEvent& WXUNUSED(evt))
917 wxTextCtrl* ctl = CastChild( wxT("FastEd2kLinks"), wxTextCtrl );
919 for ( int i = 0; i < ctl->GetNumberOfLines(); i++ ) {
920 wxString strlink = ctl->GetLineText(i);
921 strlink.Trim(true);
922 strlink.Trim(false);
923 if ( !strlink.IsEmpty() ) {
924 theApp->downloadqueue->AddLink( strlink, m_transferwnd->downloadlistctrl->GetCategory() );
928 ctl->SetValue(wxEmptyString);
932 // Formerly known as LoadRazorPrefs()
933 bool CamuleDlg::LoadGUIPrefs(bool override_pos, bool override_size)
935 // Create a config base for loading razor preferences
936 wxConfigBase *config = wxConfigBase::Get();
937 // If config haven't been created exit without loading
938 if (config == NULL) {
939 return false;
942 // The section where to save in in file
943 wxString section = wxT("/Razor_Preferences/");
945 // Get window size and position
946 int x1 = config->Read(section + wxT("MAIN_X_POS"), -1);
947 int y1 = config->Read(section + wxT("MAIN_Y_POS"), -1);
948 int x2 = config->Read(section + wxT("MAIN_X_SIZE"), -1);
949 int y2 = config->Read(section + wxT("MAIN_Y_SIZE"), -1);
951 int maximized = config->Read(section + wxT("Maximized"), 01);
953 // Kry - Random usable pos for m_srv_split_pos
954 m_srv_split_pos = config->Read(section + wxT("SRV_SPLITTER_POS"), 463l);
955 if (!override_size) {
956 if (x2 > 0 && y2 > 0) {
957 SetSize(x2, y2);
958 } else {
959 #ifndef __WXGTK__
960 // Probably first run.
961 Maximize();
962 #endif
966 if (!override_pos) {
967 // If x1 and y1 != -1 Redefine location
968 if(x1 != -1 && y1 != -1) {
969 wxRect display = wxGetClientDisplayRect();
970 if (x1 <= display.GetRightTop().x && y1 <= display.GetRightBottom().y) {
971 Move(x1, y1);
972 } else {
973 // It's offscreen... so let's not.
978 if (!override_size && !override_pos && maximized) {
979 Maximize();
982 return true;
986 bool CamuleDlg::SaveGUIPrefs()
988 /* Razor 1a - Modif by MikaelB
989 Save client size and position */
991 // Create a config base for saving razor preferences
992 wxConfigBase *config = wxConfigBase::Get();
993 // If config haven't been created exit without saving
994 if (config == NULL) {
995 return false;
997 // The section where to save in in file
998 wxString section = wxT("/Razor_Preferences/");
1000 // Main window location and size
1001 int x1, y1, x2, y2;
1002 GetPosition(&x1, &y1);
1003 GetSize(&x2, &y2);
1005 // Saving window size and position
1006 config->Write(section+wxT("MAIN_X_POS"), (long) x1);
1007 config->Write(section+wxT("MAIN_Y_POS"), (long) y1);
1009 config->Write(section+wxT("MAIN_X_SIZE"), (long) x2);
1010 config->Write(section+wxT("MAIN_Y_SIZE"), (long) y2);
1012 config->Write(section+wxT("Maximized"), (long) (IsMaximized() ? 1 : 0));
1014 // Saving sash position of splitter in server window
1015 config->Write(section+wxT("SRV_SPLITTER_POS"), (long) m_srv_split_pos);
1017 config->Flush(true);
1019 /* End modif */
1021 return true;
1025 void CamuleDlg::DoIconize(bool iconize)
1027 if (m_TrayIcon && thePrefs::DoMinToTray()) {
1028 if (iconize) {
1029 // Skip() will do it.
1030 //Iconize(true);
1031 if (SafeState()) {
1032 Show(false);
1034 } else {
1035 Show(true);
1036 Raise();
1038 } else {
1039 // Will be done by Skip();
1040 //Iconize(iconize);
1044 void CamuleDlg::OnMinimize(wxIconizeEvent& evt)
1046 // Evil Hack: check if the mouse is inside the window
1047 #ifndef __WXMSW__
1048 if (GetScreenRect().Contains(wxGetMousePosition()))
1049 #endif
1051 if (m_prefsDialog && m_prefsDialog->IsShown()) {
1052 // Veto.
1053 } else {
1054 if (m_TrayIcon) {
1055 DoIconize(evt.Iconized());
1057 evt.Skip();
1062 void CamuleDlg::OnGUITimer(wxTimerEvent& WXUNUSED(evt))
1064 // Former TimerProc section
1066 static uint32 msPrev1, msPrev5, msPrevStats;
1068 uint32 msCur = theStats::GetUptimeMillis();
1070 // can this actually happen under wxwin ?
1071 if (!SafeState()) {
1072 return;
1075 #ifndef CLIENT_GUI
1076 static uint32 msPrevGraph;
1077 int msGraphUpdate = thePrefs::GetTrafficOMeterInterval() * 1000;
1078 if ((msGraphUpdate > 0) && ((msCur / msGraphUpdate) > (msPrevGraph / msGraphUpdate))) {
1079 // trying to get the graph shifts evenly spaced after a change in the update period
1080 msPrevGraph = msCur;
1082 GraphUpdateInfo update = theApp->m_statistics->GetPointsForUpdate();
1084 m_statisticswnd->UpdateStatGraphs(theStats::GetPeakConnections(), update);
1085 m_kademliawnd->UpdateGraph(update);
1087 #else
1088 //#warning TODO: CORE/GUI -- EC needed
1089 #endif
1091 int sStatsUpdate = thePrefs::GetStatsInterval();
1092 if ((sStatsUpdate > 0) && ((int)(msCur - msPrevStats) > sStatsUpdate*1000)) {
1093 if (m_statisticswnd->IsShownOnScreen()) {
1094 msPrevStats = msCur;
1095 m_statisticswnd->ShowStatistics();
1099 if (msCur-msPrev5 > 5000) { // every 5 seconds
1100 msPrev5 = msCur;
1101 ShowTransferRate();
1102 if (thePrefs::ShowCatTabInfos() && theApp->amuledlg->m_activewnd == theApp->amuledlg->m_transferwnd) {
1103 m_transferwnd->UpdateCatTabTitles();
1105 if (thePrefs::AutoSortDownload()) {
1106 m_transferwnd->downloadlistctrl->SortList();
1110 if (msCur-msPrev1 > 1000) { // every second
1111 msPrev1 = msCur;
1112 if (m_CurrentBlinkBitmap == 12) {
1113 m_CurrentBlinkBitmap = 7;
1114 SetMessagesTool();
1115 } else {
1116 if (m_BlinkMessages) {
1117 m_CurrentBlinkBitmap = 12;
1118 SetMessagesTool();
1126 void CamuleDlg::SetMessagesTool()
1128 int pos = m_wndToolbar->GetToolPos(ID_BUTTONMESSAGES);
1129 wxASSERT(pos == 6); // so we don't miss a change on wx2.4
1131 wxWindowUpdateLocker freezer(m_wndToolbar);
1132 #ifdef __WXCOCOA__
1133 m_wndToolbar->FindById(ID_BUTTONMESSAGES)->SetNormalBitmap(m_tblist.GetBitmap(m_CurrentBlinkBitmap));
1134 #else
1135 m_wndToolbar->SetToolNormalBitmap(ID_BUTTONMESSAGES, m_tblist.GetBitmap(m_CurrentBlinkBitmap));
1136 #endif
1139 void CamuleDlg::LaunchUrl( const wxString& url )
1141 wxString cmd;
1143 cmd = thePrefs::GetBrowser();
1144 wxString tmp = url;
1145 // Pipes cause problems, so escape them
1146 tmp.Replace( wxT("|"), wxT("%7C") );
1148 if ( !cmd.IsEmpty() ) {
1149 if (!cmd.Replace(wxT("%s"), tmp)) {
1150 // No %s found, just append the url
1151 cmd += wxT(" ") + tmp;
1154 CTerminationProcess *p = new CTerminationProcess(cmd);
1155 if (wxExecute(cmd, wxEXEC_ASYNC, p)) {
1156 AddLogLineN(_("Launch Command: ") + cmd);
1157 return;
1158 } else {
1159 delete p;
1161 } else {
1162 wxLaunchDefaultBrowser(tmp);
1163 return;
1165 // Unable to execute browser. But this error message doesn't make sense,
1166 // cosidering that you _can't_ set the browser executable path... =/
1167 wxLogError(wxT("Unable to launch browser. Please set correct browser executable path in Preferences."));
1171 wxString CamuleDlg::GenWebSearchUrl(const wxString &filename, WebSearch wsProvider )
1173 wxString URL;
1174 switch (wsProvider) {
1175 case WS_FILEHASH:
1176 URL = wxT("http://www.filehash.com/search.html?pattern=FILENAME&submit=Find");
1177 break;
1178 default:
1179 wxASSERT(0);
1181 URL.Replace(wxT("FILENAME"), filename);
1183 return URL;
1187 bool CamuleDlg::Check_and_Init_Skin()
1189 bool ret = true;
1190 wxString skinFileName(thePrefs::GetSkin());
1192 if (skinFileName.IsEmpty()) {
1193 return false;
1196 wxString userDir(JoinPaths(GetConfigDir(), wxT("skins")) + wxFileName::GetPathSeparator());
1198 wxStandardPathsBase &spb(wxStandardPaths::Get());
1199 #ifdef __WXMSW__
1200 wxString dataDir(spb.GetPluginsDir());
1201 #elif defined(__WXMAC__)
1202 wxString dataDir(spb.GetDataDir());
1203 #else
1204 wxString dataDir(spb.GetDataDir().BeforeLast(wxT('/')) + wxT("/amule"));
1205 #endif
1206 wxString systemDir(JoinPaths(dataDir,wxT("skins")) + wxFileName::GetPathSeparator());
1209 skinFileName.Replace(wxT("User:"), userDir );
1210 skinFileName.Replace(wxT("System:"), systemDir );
1212 m_skinFileName.Assign(skinFileName);
1213 if (!m_skinFileName.FileExists()) {
1214 AddLogLineM(true, CFormat(
1215 _("Skin directory '%s' does not exist")) %
1216 skinFileName );
1217 ret = false;
1218 } else if (!m_skinFileName.IsFileReadable()) {
1219 AddLogLineM(true, CFormat(
1220 _("WARNING: Unable to open skin file '%s' for read")) %
1221 skinFileName);
1222 ret = false;
1225 wxFFileInputStream in(m_skinFileName.GetFullPath());
1226 wxZipInputStream zip(in);
1228 while ((entry = zip.GetNextEntry()) != NULL) {
1229 wxZipEntry*& current = cat[entry->GetInternalName()];
1230 delete current;
1231 current = entry;
1234 return ret;
1238 void CamuleDlg::Add_Skin_Icon(
1239 const wxString &iconName,
1240 const wxBitmap &stdIcon,
1241 bool useSkins)
1243 wxImage new_image;
1244 if (useSkins) {
1245 wxFFileInputStream in(m_skinFileName.GetFullPath());
1246 wxZipInputStream zip(in);
1248 it = cat.find(wxZipEntry::GetInternalName(iconName + wxT(".png")));
1249 if ( it != cat.end() ) {
1250 zip.OpenEntry(*it->second);
1251 if ( !new_image.LoadFile(zip,wxBITMAP_TYPE_PNG) ) {
1252 AddLogLineM(false,
1253 wxT("Warning: Error loading icon for ") +
1254 iconName);
1255 useSkins = false;
1257 }else {
1258 AddLogLineM(false,
1259 wxT("Warning: Can't load icon for ") +
1260 iconName);
1261 useSkins = false;
1266 wxBitmap bmp(useSkins ? new_image : stdIcon);
1267 if (iconName.StartsWith(wxT("Client_"))) {
1268 m_imagelist.Add(bmp);
1269 } else if (iconName.StartsWith(wxT("Toolbar_"))) {
1270 m_tblist.Add(bmp);
1275 void CamuleDlg::Apply_Clients_Skin()
1277 bool useSkins = Check_and_Init_Skin();
1279 // Clear the client image list
1280 m_imagelist.RemoveAll();
1282 // Add the images to the image list
1283 for (int i = 0; i < CLIENT_SKIN_SIZE; ++i) {
1284 Add_Skin_Icon(wxT("Client_") + m_clientSkinNames[i],
1285 clientImages(i), useSkins);
1290 void CamuleDlg::Apply_Toolbar_Skin(wxToolBar *wndToolbar)
1292 bool useSkins = Check_and_Init_Skin();
1295 // Clear the toolbar image list
1296 m_tblist.RemoveAll();
1298 // Add the images to the image list
1299 Add_Skin_Icon(wxT("Toolbar_Connect"), connButImg(0), useSkins);
1300 Add_Skin_Icon(wxT("Toolbar_Disconnect"), connButImg(1), useSkins);
1301 Add_Skin_Icon(wxT("Toolbar_Connecting"), connButImg(2), useSkins);
1302 Add_Skin_Icon(wxT("Toolbar_Network"), amuleDlgImages(20), useSkins);
1303 Add_Skin_Icon(wxT("Toolbar_Transfers"), amuleDlgImages(21), useSkins);
1304 Add_Skin_Icon(wxT("Toolbar_Search"), amuleDlgImages(22), useSkins);
1305 Add_Skin_Icon(wxT("Toolbar_Shared"), amuleDlgImages(23), useSkins);
1306 Add_Skin_Icon(wxT("Toolbar_Messages"), amuleDlgImages(24), useSkins);
1307 Add_Skin_Icon(wxT("Toolbar_Stats"), amuleDlgImages(25), useSkins);
1308 Add_Skin_Icon(wxT("Toolbar_Prefs"), amuleDlgImages(26), useSkins);
1309 Add_Skin_Icon(wxT("Toolbar_Import"), amuleDlgImages(32), useSkins);
1310 Add_Skin_Icon(wxT("Toolbar_About"), amuleDlgImages(29), useSkins);
1311 Add_Skin_Icon(wxT("Toolbar_Blink"), amuleDlgImages(33), useSkins);
1313 // Build aMule toolbar
1314 wndToolbar->SetMargins(0, 0);
1316 // Placeholder. Gets updated by ShowConnectionState
1317 wndToolbar->AddTool(ID_BUTTONCONNECT, wxT("..."), m_tblist.GetBitmap(0));
1319 wndToolbar->AddSeparator();
1320 wndToolbar->AddTool(ID_BUTTONNETWORKS,
1321 _("Networks"), m_tblist.GetBitmap(3),
1322 wxNullBitmap, wxITEM_CHECK,
1323 _("Networks window"));
1324 wndToolbar->AddTool(ID_BUTTONSEARCH,
1325 _("Searches"), m_tblist.GetBitmap(5),
1326 wxNullBitmap, wxITEM_CHECK,
1327 _("Searches window"));
1328 wndToolbar->AddTool(ID_BUTTONTRANSFER,
1329 _("Transfers"), m_tblist.GetBitmap(4),
1330 wxNullBitmap, wxITEM_CHECK,
1331 _("Files transfers window"));
1332 wndToolbar->AddTool(ID_BUTTONSHARED,
1333 _("Shared files"), m_tblist.GetBitmap(6),
1334 wxNullBitmap, wxITEM_CHECK,
1335 _("Shared files window"));
1336 wndToolbar->AddTool(ID_BUTTONMESSAGES,
1337 _("Messages"), m_tblist.GetBitmap(7),
1338 wxNullBitmap, wxITEM_CHECK,
1339 _("Messages window"));
1340 wndToolbar->AddTool(ID_BUTTONSTATISTICS,
1341 _("Statistics"), m_tblist.GetBitmap(8),
1342 wxNullBitmap, wxITEM_CHECK,
1343 _("Statistics graph window"));
1344 wndToolbar->AddSeparator();
1345 wndToolbar->AddTool(ID_BUTTONNEWPREFERENCES,
1346 _("Preferences"), m_tblist.GetBitmap(9),
1347 wxNullBitmap, wxITEM_NORMAL,
1348 _("Preferences settings window"));
1349 wndToolbar->AddTool(ID_BUTTONIMPORT,
1350 _("Import"), m_tblist.GetBitmap(10),
1351 wxNullBitmap, wxITEM_NORMAL,
1352 _("The partfile importer tool"));
1353 wndToolbar->AddTool(ID_ABOUT,
1354 _("About"), m_tblist.GetBitmap(11),
1355 wxNullBitmap, wxITEM_NORMAL,
1356 _("About/Help"));
1358 wndToolbar->ToggleTool(ID_BUTTONTRANSFER, true);
1360 // Needed for non-GTK platforms, where the
1361 // items don't get added immediatly.
1362 wndToolbar->Realize();
1364 // Updates the "Connect" button, and so on.
1365 ShowConnectionState(true);
1369 void CamuleDlg::Create_Toolbar(bool orientation)
1371 Freeze();
1372 // Create ToolBar from the one designed by wxDesigner (BigBob)
1373 wxToolBar *current = GetToolBar();
1375 wxASSERT(current == m_wndToolbar);
1377 if (current) {
1378 bool oldorientation = ((current->GetWindowStyle() & wxTB_VERTICAL) == wxTB_VERTICAL);
1379 if (oldorientation != orientation) {
1380 current->Destroy();
1381 SetToolBar(NULL); // Remove old one if present
1382 m_wndToolbar = NULL;
1383 } else {
1384 current->ClearTools();
1388 if (!m_wndToolbar) {
1389 m_wndToolbar = CreateToolBar(
1390 (orientation ? wxTB_VERTICAL : wxTB_HORIZONTAL) |
1391 wxNO_BORDER | wxTB_TEXT | wxTB_3DBUTTONS |
1392 wxTB_FLAT | wxCLIP_CHILDREN | wxTB_NODIVIDER);
1395 m_wndToolbar->SetToolBitmapSize(wxSize(32, 32));
1398 Apply_Toolbar_Skin(m_wndToolbar);
1399 #ifdef CLIENT_GUI
1400 m_wndToolbar->DeleteTool(ID_BUTTONIMPORT);
1401 #endif
1403 Thaw();
1407 void CamuleDlg::OnMainGUISizeChange(wxSizeEvent& evt)
1409 wxFrame::OnSize(evt);
1410 if (m_transferwnd && m_transferwnd->clientlistctrl) {
1411 // Transfer window's splitter set again if it's hidden.
1412 if (m_transferwnd->clientlistctrl->GetListView() == vtNone) {
1413 int height = m_transferwnd->clientlistctrl->GetSize().GetHeight();
1414 wxSplitterWindow* splitter =
1415 CastChild(wxT("splitterWnd"), wxSplitterWindow);
1416 height += splitter->GetWindow1()->GetSize().GetHeight();
1417 splitter->SetSashPosition( height );
1424 void CamuleDlg::OnKeyPressed(wxKeyEvent& event)
1426 if (event.GetKeyCode() == WXK_F1) {
1427 // Ctrl/Alt/Shift must not be pressed, to avoid
1428 // conflicts with other (global) shortcuts.
1429 if (!event.HasModifiers() && !event.ShiftDown()) {
1430 LaunchUrl(wxT("http://wiki.amule.org"));
1431 return;
1435 event.Skip();
1439 void CamuleDlg::OnExit(wxCommandEvent& WXUNUSED(evt))
1441 Close();
1444 void CamuleDlg::DoNetworkRearrange()
1447 wxWindowUpdateLocker freezer(this);
1449 wxToolBarToolBase* toolbarTool = m_wndToolbar->RemoveTool(ID_BUTTONNETWORKS);
1451 wxNotebook* logs_notebook = CastChild( ID_SRVLOG_NOTEBOOK, wxNotebook);
1452 wxNotebook* networks_notebook = CastChild( ID_NETNOTEBOOK, wxNotebook);
1454 while (logs_notebook->GetPageCount() > 1) {
1455 logs_notebook->RemovePage(logs_notebook->GetPageCount() - 1);
1458 while (networks_notebook->GetPageCount() > 0) {
1459 networks_notebook->RemovePage(networks_notebook->GetPageCount() - 1);
1462 if (thePrefs::GetNetworkED2K()) {
1463 logs_notebook->AddPage(m_logpages[1].page, m_logpages[1].name);
1464 logs_notebook->AddPage(m_logpages[2].page, m_logpages[2].name);
1467 m_networkpages[0].page->Show(thePrefs::GetNetworkED2K());
1469 if (thePrefs::GetNetworkKademlia()) {
1470 logs_notebook->AddPage(m_logpages[3].page, m_logpages[3].name);
1473 m_networkpages[1].page->Show(thePrefs::GetNetworkKademlia());
1475 networks_notebook->Show(thePrefs::GetNetworkED2K() && thePrefs::GetNetworkKademlia());
1477 wxWindow* replacement = NULL;
1479 m_networknotebooksizer->Clear();
1481 if (thePrefs::GetNetworkED2K() && thePrefs::GetNetworkKademlia()) {
1482 toolbarTool->SetLabel(_("Networks"));
1484 m_networkpages[0].page->Reparent(networks_notebook);
1485 m_networkpages[1].page->Reparent(networks_notebook);
1487 networks_notebook->AddPage(m_networkpages[0].page, m_networkpages[0].name);
1488 networks_notebook->AddPage(m_networkpages[1].page, m_networkpages[1].name);
1490 replacement = networks_notebook;
1492 } else if (thePrefs::GetNetworkED2K()) {
1493 toolbarTool->SetLabel(_("eD2k network"));
1494 replacement = m_networkpages[0].page;
1495 m_networkpages[1].page->Reparent(m_networknotebooksizer->GetContainingWindow());
1496 } else if (thePrefs::GetNetworkKademlia()) {
1497 toolbarTool->SetLabel(_("Kad network"));
1498 m_networkpages[0].page->Reparent(m_networknotebooksizer->GetContainingWindow());
1499 replacement = m_networkpages[1].page;
1500 } else {
1501 // No networks.
1502 toolbarTool->SetLabel(_("No network"));
1505 if (replacement) {
1506 replacement->Reparent(m_networknotebooksizer->GetContainingWindow());
1507 m_networknotebooksizer->Add( replacement, 1, wxGROW|wxALIGN_CENTER_VERTICAL|wxTOP, 5 );
1508 m_networknotebooksizer->Layout();
1511 m_wndToolbar->InsertTool(2, toolbarTool);
1513 m_wndToolbar->EnableTool(ID_BUTTONNETWORKS, (thePrefs::GetNetworkED2K() || thePrefs::GetNetworkKademlia()));
1514 m_wndToolbar->EnableTool(ID_BUTTONCONNECT, (thePrefs::GetNetworkED2K() || thePrefs::GetNetworkKademlia()));
1516 m_wndToolbar->Realize();
1518 m_searchwnd->FixSearchTypes();
1521 // File_checked_for_headers