2 // This file is part of the aMule Project.
4 // Copyright (c) 2004-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Original author: Emilio Sandoz
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "PrefsUnifiedDlg.h"
29 #include <common/Constants.h>
31 #include <wx/colordlg.h>
32 #include <wx/tooltip.h>
34 #include "amule.h" // Needed for theApp
36 #include "MuleColour.h"
37 #include "EditServerListDlg.h"
38 #include "SharedFileList.h" // Needed for CSharedFileList
39 #include "StatisticsDlg.h" // Needed for graph parameters, colors
40 #include "IPFilter.h" // Needed for CIPFilter
41 #include "SearchList.h"
42 #include "ClientList.h"
43 #include "DirectoryTreeCtrl.h" // Needed for CDirectoryTreeCtrl
44 #include "Preferences.h"
45 #include "muuli_wdr.h"
47 #include <common/Format.h> // Needed for CFormat
48 #include "TransferWnd.h" // Needed for CTransferWnd::UpdateCatTabTitles()
49 #include "KadDlg.h" // Needed for CKadDlg
50 #include "OScopeCtrl.h" // Needed for OScopeCtrl
51 #include "ServerList.h"
52 #include "UserEvents.h"
54 BEGIN_EVENT_TABLE(PrefsUnifiedDlg
,wxDialog
)
56 #define USEREVENTS_EVENT(ID, NAME, VARS) \
57 EVT_CHECKBOX(USEREVENTS_FIRST_ID + CUserEvents::ID * USEREVENTS_IDS_PER_EVENT + 1, PrefsUnifiedDlg::OnCheckBoxChange) \
58 EVT_CHECKBOX(USEREVENTS_FIRST_ID + CUserEvents::ID * USEREVENTS_IDS_PER_EVENT + 3, PrefsUnifiedDlg::OnCheckBoxChange)
59 USEREVENTS_EVENTLIST()
60 #undef USEREVENTS_EVENT
63 EVT_CHECKBOX(ID_PROXY_ENABLE_PROXY
, PrefsUnifiedDlg::OnCheckBoxChange
)
64 EVT_CHECKBOX(ID_PROXY_ENABLE_PASSWORD
, PrefsUnifiedDlg::OnCheckBoxChange
)
65 // EVT_CHECKBOX(ID_PROXY_AUTO_SERVER_CONNECT_WITHOUT_PROXY, PrefsUnifiedDlg::OnCheckBoxChange)
68 EVT_SPINCTRL(IDC_PORT
, PrefsUnifiedDlg::OnTCPClientPortChange
)
70 // The rest. Organize it!
71 EVT_CHECKBOX(IDC_UDPENABLE
, PrefsUnifiedDlg::OnCheckBoxChange
)
72 EVT_CHECKBOX(IDC_CHECKDISKSPACE
, PrefsUnifiedDlg::OnCheckBoxChange
)
73 EVT_CHECKBOX(IDC_ONLINESIG
, PrefsUnifiedDlg::OnCheckBoxChange
)
74 EVT_CHECKBOX(IDC_REMOVEDEAD
, PrefsUnifiedDlg::OnCheckBoxChange
)
75 EVT_CHECKBOX(IDC_AUTOSERVER
, PrefsUnifiedDlg::OnCheckBoxChange
)
76 EVT_CHECKBOX(IDC_AUTOIPFILTER
, PrefsUnifiedDlg::OnCheckBoxChange
)
77 EVT_CHECKBOX(IDC_MSGFILTER
, PrefsUnifiedDlg::OnCheckBoxChange
)
78 EVT_CHECKBOX(IDC_MSGFILTER_ALL
, PrefsUnifiedDlg::OnCheckBoxChange
)
79 EVT_CHECKBOX(IDC_MSGFILTER_WORD
, PrefsUnifiedDlg::OnCheckBoxChange
)
80 EVT_CHECKBOX(IDC_FILTERCOMMENTS
, PrefsUnifiedDlg::OnCheckBoxChange
)
81 EVT_CHECKBOX(IDC_STARTNEXTFILE
, PrefsUnifiedDlg::OnCheckBoxChange
)
82 EVT_CHECKBOX(IDC_ENABLETRAYICON
, PrefsUnifiedDlg::OnCheckBoxChange
)
83 EVT_CHECKBOX(IDC_VERTTOOLBAR
, PrefsUnifiedDlg::OnCheckBoxChange
)
84 EVT_CHECKBOX(IDC_SUPPORT_PO
, PrefsUnifiedDlg::OnCheckBoxChange
)
85 EVT_CHECKBOX(IDC_ENABLE_PO_OUTGOING
, PrefsUnifiedDlg::OnCheckBoxChange
)
86 EVT_CHECKBOX(IDC_ENFORCE_PO_INCOMING
, PrefsUnifiedDlg::OnCheckBoxChange
)
87 EVT_CHECKBOX(IDC_SHOWRATEONTITLE
, PrefsUnifiedDlg::OnCheckBoxChange
)
88 EVT_CHECKBOX(IDC_NETWORKED2K
, PrefsUnifiedDlg::OnCheckBoxChange
)
90 EVT_BUTTON(ID_PREFS_OK_TOP
, PrefsUnifiedDlg::OnOk
)
91 EVT_BUTTON(ID_PREFS_CANCEL_TOP
, PrefsUnifiedDlg::OnCancel
)
94 // EVT_BUTTON(IDC_SELSKIN, PrefsUnifiedDlg::OnButtonDir)
95 EVT_BUTTON(IDC_BROWSEV
, PrefsUnifiedDlg::OnButtonBrowseApplication
)
96 EVT_BUTTON(IDC_SELTEMPDIR
, PrefsUnifiedDlg::OnButtonDir
)
97 EVT_BUTTON(IDC_SELINCDIR
, PrefsUnifiedDlg::OnButtonDir
)
98 EVT_BUTTON(IDC_SELOSDIR
, PrefsUnifiedDlg::OnButtonDir
)
99 EVT_BUTTON(IDC_SELBROWSER
, PrefsUnifiedDlg::OnButtonBrowseApplication
)
101 EVT_SPINCTRL(IDC_TOOLTIPDELAY
, PrefsUnifiedDlg::OnToolTipDelayChange
)
103 EVT_BUTTON(IDC_EDITADR
, PrefsUnifiedDlg::OnButtonEditAddr
)
104 EVT_BUTTON(IDC_IPFRELOAD
, PrefsUnifiedDlg::OnButtonIPFilterReload
)
105 EVT_BUTTON(IDC_COLOR_BUTTON
, PrefsUnifiedDlg::OnButtonColorChange
)
106 EVT_BUTTON(IDC_IPFILTERUPDATE
, PrefsUnifiedDlg::OnButtonIPFilterUpdate
)
107 EVT_CHOICE(IDC_COLORSELECTOR
, PrefsUnifiedDlg::OnColorCategorySelected
)
108 EVT_LIST_ITEM_SELECTED(ID_PREFSLISTCTRL
,PrefsUnifiedDlg::OnPrefsPageChange
)
110 EVT_INIT_DIALOG(PrefsUnifiedDlg::OnInitDialog
)
112 EVT_COMMAND_SCROLL(IDC_SLIDER
, PrefsUnifiedDlg::OnScrollBarChange
)
113 EVT_COMMAND_SCROLL(IDC_SLIDER3
, PrefsUnifiedDlg::OnScrollBarChange
)
114 EVT_COMMAND_SCROLL(IDC_SLIDER4
, PrefsUnifiedDlg::OnScrollBarChange
)
115 EVT_COMMAND_SCROLL(IDC_SLIDER2
, PrefsUnifiedDlg::OnScrollBarChange
)
116 EVT_COMMAND_SCROLL(IDC_FILEBUFFERSIZE
, PrefsUnifiedDlg::OnScrollBarChange
)
117 EVT_COMMAND_SCROLL(IDC_QUEUESIZE
, PrefsUnifiedDlg::OnScrollBarChange
)
118 EVT_COMMAND_SCROLL(IDC_SERVERKEEPALIVE
, PrefsUnifiedDlg::OnScrollBarChange
)
120 EVT_SPINCTRL(IDC_MAXUP
, PrefsUnifiedDlg::OnRateLimitChanged
)
122 EVT_LIST_ITEM_SELECTED(IDC_EVENTLIST
, PrefsUnifiedDlg::OnUserEventSelected
)
124 EVT_CLOSE(PrefsUnifiedDlg::OnClose
)
130 * Creates an command-event for the given checkbox.
132 * This can be used enforce logical constraints by passing by
133 * sending a check-box event for each checkbox, when transfering
134 * to the UI. However, it should also be used for checkboxes that
135 * have no side-effects other than enabling/disabling other
136 * widgets in the preferences dialogs.
138 void SendCheckBoxEvent(wxWindow
* parent
, int id
)
140 wxCheckBox
* widget
= CastByID(id
, parent
, wxCheckBox
);
141 wxCHECK_RET(widget
, wxT("Invalid widget in CreateEvent"));
143 wxCommandEvent
evt(wxEVT_COMMAND_CHECKBOX_CLICKED
, id
);
144 evt
.SetInt(widget
->IsChecked() ? 1 : 0);
146 parent
->ProcessEvent(evt
);
152 * This struct provides a general way to represent config-tabs.
156 //! The title of the page, used on the listctrl.
158 //! Function pointer to the wxDesigner function creating the dialog.
159 wxSizer
* (*m_function
)(wxWindow
*, bool, bool );
160 //! The index of the image used on the list.
167 { wxTRANSLATE("General"), PreferencesGeneralTab
, 13 },
168 { wxTRANSLATE("Connection"), PreferencesConnectionTab
, 14 },
169 { wxTRANSLATE("Directories"), PreferencesDirectoriesTab
, 17 },
170 { wxTRANSLATE("Servers"), PreferencesServerTab
, 15 },
171 { wxTRANSLATE("Files"), PreferencesFilesTab
, 16 },
172 { wxTRANSLATE("Security"), PreferencesSecurityTab
, 22 },
173 { wxTRANSLATE("Interface"), PreferencesGuiTweaksTab
, 19 },
174 { wxTRANSLATE("Statistics"), PreferencesStatisticsTab
, 10 },
175 { wxTRANSLATE("Proxy"), PreferencesProxyTab
, 24 },
176 { wxTRANSLATE("Filters"), PreferencesFilteringTab
, 23 },
177 { wxTRANSLATE("Remote Controls"), PreferencesRemoteControlsTab
, 11 },
178 { wxTRANSLATE("Online Signature"), PreferencesOnlineSigTab
, 21 },
179 { wxTRANSLATE("Advanced"), PreferencesaMuleTweaksTab
, 12 },
180 { wxTRANSLATE("Events"), PreferencesEventsTab
, 5 }
182 ,{ wxTRANSLATE("Debugging"), PreferencesDebug
, 25 }
187 PrefsUnifiedDlg::PrefsUnifiedDlg(wxWindow
*parent
)
189 wxDialog(parent
, -1, _("Preferences"),
190 wxDefaultPosition
, wxDefaultSize
,
191 wxDEFAULT_DIALOG_STYLE
|wxRESIZE_BORDER
)
193 preferencesDlgTop(this, false);
195 m_PrefsIcons
= CastChild(ID_PREFSLISTCTRL
, wxListCtrl
);
196 wxImageList
*icon_list
= new wxImageList(16, 16);
197 m_PrefsIcons
->AssignImageList(icon_list
, wxIMAGE_LIST_SMALL
);
199 // Add the single column used
200 m_PrefsIcons
->InsertColumn(
201 0, wxEmptyString
, wxLIST_FORMAT_LEFT
,
202 m_PrefsIcons
->GetSize().GetWidth()-5);
204 // Temp variables for finding the smallest height and width needed
208 // Add each page to the page-list
209 for (unsigned int i
= 0; i
< itemsof(pages
); ++i
) {
210 // Add the icon and label associated with the page
211 icon_list
->Add(amuleSpecial(pages
[i
].m_imageidx
));
212 m_PrefsIcons
->InsertItem(i
, wxGetTranslation(pages
[i
].m_title
), i
);
215 // Set list-width so that there aren't any scrollers
216 m_PrefsIcons
->SetColumnWidth(0, wxLIST_AUTOSIZE
);
217 m_PrefsIcons
->SetMinSize(wxSize(m_PrefsIcons
->GetColumnWidth(0) + 10, -1));
218 m_PrefsIcons
->SetMaxSize(wxSize(m_PrefsIcons
->GetColumnWidth(0) + 10, -1));
220 // Now add the pages and calculate the minimum size
221 wxPanel
* DefaultWidget
;
222 for (unsigned int i
= 0; i
< itemsof(pages
); ++i
) {
223 // Create a container widget and the contents of the page
224 wxPanel
* Widget
= new wxPanel(this, -1);
225 // Widget is stored as user data in the list control
226 m_PrefsIcons
->SetItemPtrData(i
, (wxUIntPtr
) Widget
);
227 pages
[i
].m_function(Widget
, true, true);
229 DefaultWidget
= Widget
;
232 // Add it to the sizer
233 prefs_sizer
->Add(Widget
, 0, wxGROW
|wxEXPAND
);
235 if (pages
[i
].m_function
== PreferencesGeneralTab
) {
236 // This must be done now or pages won't Fit();
238 CastChild(IDC_BROWSERTABS
, wxCheckBox
)->Enable(false);
239 #endif /* __WXMSW__ */
240 } else if (pages
[i
].m_function
== PreferencesEventsTab
) {
242 #define USEREVENTS_REPLACE_VAR(VAR, DESC, CODE) + wxString(wxT("\n %") VAR wxT(" - ")) + wxGetTranslation(DESC)
243 #define USEREVENTS_EVENT(ID, NAME, VARS) case CUserEvents::ID: CreateEventPanels(idx, wxEmptyString VARS, Widget); break;
245 wxListCtrl
*list
= CastChild(IDC_EVENTLIST
, wxListCtrl
);
246 list
->InsertColumn(0, wxEmptyString
);
247 for (unsigned int idx
= 0; idx
< CUserEvents::GetCount(); ++idx
) {
248 long lidx
= list
->InsertItem(idx
,
249 wxGetTranslation(CUserEvents::GetDisplayName(
250 static_cast<enum CUserEvents::EventType
>(idx
))));
252 list
->SetItemData(lidx
,
253 USEREVENTS_FIRST_ID
+ idx
* USEREVENTS_IDS_PER_EVENT
);
255 USEREVENTS_EVENTLIST()
259 list
->SetColumnWidth(0, wxLIST_AUTOSIZE
);
261 else if (pages
[i
].m_function
== PreferencesServerTab
) {
262 m_IndexServerTab
= i
;
263 m_ServerWidget
= Widget
;
266 else if (pages
[i
].m_function
== PreferencesDebug
) {
267 int count
= theLogger
.GetDebugCategoryCount();
268 wxCheckListBox
* list
= CastChild( ID_DEBUGCATS
, wxCheckListBox
);
270 for ( int j
= 0; j
< count
; j
++ ) {
271 list
->Append( theLogger
.GetDebugCategory( j
).GetName() );
276 // Align and resize the page
280 // Find the greatest sizes
281 wxSize size
= prefs_sizer
->GetSize();
282 if (size
.GetWidth() > width
) {
283 width
= size
.GetWidth();
286 if (size
.GetHeight() > height
) {
287 height
= size
.GetHeight();
291 prefs_sizer
->Detach(Widget
);
295 // Default to the General tab
296 m_CurrentPanel
= DefaultWidget
;
297 prefs_sizer
->Add(DefaultWidget
, 0, wxGROW
|wxEXPAND
);
298 m_CurrentPanel
->Show( true );
300 // Select the first item
301 m_PrefsIcons
->SetItemState(0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
303 // We now have the needed minimum height and width
304 prefs_sizer
->SetMinSize(width
, height
);
306 // Don't show server prefs if ED2K is disabled
307 m_ServerTabVisible
= true;
308 EnableServerTab(thePrefs::GetNetworkED2K());
310 // Store some often used pointers
311 m_ShareSelector
= CastChild(IDC_SHARESELECTOR
, CDirectoryTreeCtrl
);
312 m_buttonColor
= CastChild(IDC_COLOR_BUTTON
, wxButton
);
313 m_choiceColor
= CastChild(IDC_COLORSELECTOR
, wxChoice
);
315 // Connect the Cfgs with their widgets
316 thePrefs::CFGMap::iterator it
= thePrefs::s_CfgList
.begin();
317 for ( ; it
!= thePrefs::s_CfgList
.end(); ++it
) {
318 // Checking for failures
319 if ( !it
->second
->ConnectToWidget(it
->first
, this) ) {
320 AddLogLineNS(CFormat(_("Failed to connect Cfg to widget with the ID %d and key %s"))
321 % it
->first
% it
->second
->GetKey());
326 // It must not be resized to something smaller than what it currently is
327 wxSize size
= GetClientSize();
328 SetSizeHints(size
.GetWidth(), size
.GetHeight());
331 FindWindow(IDC_VERTTOOLBAR
)->Enable(false);
334 // Position the dialog.
339 void PrefsUnifiedDlg::EnableServerTab(bool enable
)
341 if (enable
&& !m_ServerTabVisible
) {
342 // turn server widget on
343 m_PrefsIcons
->InsertItem(m_IndexServerTab
, wxGetTranslation(pages
[m_IndexServerTab
].m_title
), m_IndexServerTab
);
344 m_PrefsIcons
->SetItemPtrData(m_IndexServerTab
, (wxUIntPtr
) m_ServerWidget
);
345 m_ServerTabVisible
= true;
346 } else if (!enable
&& m_ServerTabVisible
) {
347 // turn server widget off
348 m_PrefsIcons
->DeleteItem(m_IndexServerTab
);
349 m_ServerTabVisible
= false;
354 Cfg_Base
* PrefsUnifiedDlg::GetCfg(int id
)
356 thePrefs::CFGMap::iterator it
= thePrefs::s_CfgList
.find( id
);
358 if ( it
!= thePrefs::s_CfgList
.end() ) {
366 bool PrefsUnifiedDlg::TransferToWindow()
368 // Connect the Cfgs with their widgets
369 thePrefs::CFGMap::iterator it
= thePrefs::s_CfgList
.begin();
370 for ( ; it
!= thePrefs::s_CfgList
.end(); ++it
) {
371 // Checking for failures
372 if ( !it
->second
->TransferToWindow() ) {
373 AddLogLineNS(CFormat(_("Failed to transfer data from Cfg to Widget with the ID %d and key %s"))
374 % it
->first
% it
->second
->GetKey());
378 m_ShareSelector
->SetSharedDirectories(&theApp
->glob_prefs
->shareddir_list
);
380 for ( int i
= 0; i
< cntStatColors
; i
++ ) {
381 thePrefs::s_colors
[i
] = CMuleColour(CStatisticsDlg::acrStat
[i
]).GetULong();
382 thePrefs::s_colors_ref
[i
] = CMuleColour(CStatisticsDlg::acrStat
[i
]).GetULong();
387 OnTCPClientPortChange(e
);
389 // Proxy tab initialization
390 if (!CastChild(ID_PROXY_ENABLE_PROXY
, wxCheckBox
)->IsChecked()) {
391 FindWindow(ID_PROXY_TYPE
)->Enable(false);
392 FindWindow(ID_PROXY_NAME
)->Enable(false);
393 FindWindow(ID_PROXY_PORT
)->Enable(false);
395 if (!CastChild(ID_PROXY_ENABLE_PASSWORD
, wxCheckBox
)->IsChecked()) {
396 FindWindow(ID_PROXY_USER
)->Enable(false);
397 FindWindow(ID_PROXY_PASSWORD
)->Enable(false);
399 // This option from the proxy tab is currently unused
400 FindWindow(ID_PROXY_AUTO_SERVER_CONNECT_WITHOUT_PROXY
)->Enable(false);
402 // Enable/Disable some controls
403 FindWindow( IDC_MINDISKSPACE
)->Enable( thePrefs::IsCheckDiskspaceEnabled() );
404 FindWindow( IDC_OSDIR
)->Enable( thePrefs::IsOnlineSignatureEnabled() );
405 FindWindow( IDC_OSUPDATE
)->Enable( thePrefs::IsOnlineSignatureEnabled() );
406 FindWindow( IDC_UDPPORT
)->Enable( thePrefs::s_UDPEnable
);
407 FindWindow( IDC_SERVERRETRIES
)->Enable( thePrefs::DeadServer() );
408 FindWindow( IDC_STARTNEXTFILE_SAME
)->Enable(thePrefs::StartNextFile());
411 FindWindow(IDC_ENABLETRAYICON
)->Enable(false);
412 FindWindow(IDC_MINTRAY
)->Enable(false);
414 FindWindow(IDC_MINTRAY
)->Enable(thePrefs::UseTrayIcon());
417 if (!CastChild(IDC_MSGFILTER
, wxCheckBox
)->IsChecked()) {
418 FindWindow(IDC_MSGFILTER_ALL
)->Enable(false);
419 FindWindow(IDC_MSGFILTER_NONSECURE
)->Enable(false);
420 FindWindow(IDC_MSGFILTER_NONFRIENDS
)->Enable(false);
421 FindWindow(IDC_MSGFILTER_WORD
)->Enable(false);
422 FindWindow(IDC_MSGWORD
)->Enable(false);
423 } else if (CastChild(IDC_MSGFILTER_ALL
, wxCheckBox
)->IsChecked()) {
424 FindWindow(IDC_MSGFILTER_NONSECURE
)->Enable(false);
425 FindWindow(IDC_MSGFILTER_NONFRIENDS
)->Enable(false);
426 FindWindow(IDC_MSGFILTER_WORD
)->Enable(false);
427 FindWindow(IDC_MSGWORD
)->Enable(false);
430 FindWindow(IDC_MSGWORD
)->Enable(CastChild(IDC_MSGFILTER_WORD
, wxCheckBox
)->IsChecked());
431 FindWindow(IDC_COMMENTWORD
)->Enable(CastChild(IDC_FILTERCOMMENTS
, wxCheckBox
)->IsChecked());
433 // Protocol obfuscation
434 ::SendCheckBoxEvent(this, IDC_SUPPORT_PO
);
435 ::SendCheckBoxEvent(this, IDC_ENABLE_PO_OUTGOING
);
436 ::SendCheckBoxEvent(this, IDC_ENFORCE_PO_INCOMING
);
438 // Show rates on title
439 FindWindow(IDC_RATESBEFORETITLE
)->Enable(thePrefs::GetShowRatesOnTitle() != 0);
440 FindWindow(IDC_RATESAFTERTITLE
)->Enable(thePrefs::GetShowRatesOnTitle() != 0);
441 CastChild(IDC_SHOWRATEONTITLE
, wxCheckBox
)->SetValue(thePrefs::GetShowRatesOnTitle() != 0);
442 CastChild(IDC_RATESBEFORETITLE
, wxRadioButton
)->SetValue(thePrefs::GetShowRatesOnTitle() == 2);
443 CastChild(IDC_RATESAFTERTITLE
, wxRadioButton
)->SetValue(thePrefs::GetShowRatesOnTitle() != 2);
447 FindWindow(IDC_UPNP_ENABLED
)->Enable(false);
448 FindWindow(IDC_UPNPTCPPORT
)->Enable(false);
449 thePrefs::SetUPnPEnabled(false);
450 // TODO: grey out "UPnP TCP Port", "Webserver UPnP TCP Port"
451 FindWindow(IDC_UPNP_WEBSERVER_ENABLED
)->Enable(false);
452 FindWindow(IDC_WEBUPNPTCPPORT
)->Enable(false);
453 thePrefs::SetUPnPWebServerEnabled(false);
457 // Set debugging toggles
458 int count
= theLogger
.GetDebugCategoryCount();
459 wxCheckListBox
* list
= CastChild( ID_DEBUGCATS
, wxCheckListBox
);
461 for ( int i
= 0; i
< count
; i
++ ) {
462 list
->Check( i
, theLogger
.GetDebugCategory( i
).IsEnabled() );
470 bool PrefsUnifiedDlg::TransferFromWindow()
472 // Connect the Cfgs with their widgets
473 thePrefs::CFGMap::iterator it
= thePrefs::s_CfgList
.begin();
474 for ( ; it
!= thePrefs::s_CfgList
.end(); ++it
) {
475 // Checking for failures
476 if ( !it
->second
->TransferFromWindow() ) {
477 AddLogLineNS(CFormat(_("Failed to transfer data from Widget to Cfg with the ID %d and key %s"))
478 % it
->first
% it
->second
->GetKey());
482 theApp
->glob_prefs
->shareddir_list
.clear();
483 m_ShareSelector
->GetSharedDirectories(&theApp
->glob_prefs
->shareddir_list
);
485 for ( int i
= 0; i
< cntStatColors
; i
++ ) {
486 if ( thePrefs::s_colors
[i
] != thePrefs::s_colors_ref
[i
] ) {
487 CStatisticsDlg::acrStat
[i
] = thePrefs::s_colors
[i
];
488 theApp
->amuledlg
->m_statisticswnd
->ApplyStatsColor(i
);
491 theApp
->amuledlg
->m_kademliawnd
->SetGraphColors();
495 // Get debugging toggles
496 int count
= theLogger
.GetDebugCategoryCount();
497 wxCheckListBox
* list
= CastChild( ID_DEBUGCATS
, wxCheckListBox
);
499 for ( int i
= 0; i
< count
; i
++ ) {
500 theLogger
.SetEnabled( theLogger
.GetDebugCategory( i
).GetType(), list
->IsChecked( i
) );
504 thePrefs::SetShowRatesOnTitle(CastChild(IDC_SHOWRATEONTITLE
, wxCheckBox
)->GetValue() ? (CastChild(IDC_RATESBEFORETITLE
, wxRadioButton
)->GetValue() ? 2 : 1) : 0);
507 // Send preferences to core.
508 theApp
->glob_prefs
->SendToRemote();
515 bool PrefsUnifiedDlg::CfgChanged(int ID
)
517 Cfg_Base
* cfg
= GetCfg(ID
);
520 return cfg
->HasChanged();
527 void PrefsUnifiedDlg::OnOk(wxCommandEvent
& WXUNUSED(event
))
529 TransferFromWindow();
531 bool restart_needed
= false;
532 wxString restart_needed_msg
= _("aMule must be restarted to enable these changes:\n\n");
534 // do sanity checking, special processing, and user notifications here
535 thePrefs::CheckUlDlRatio();
537 if (CfgChanged(IDC_PORT
)) {
538 restart_needed
= true;
539 restart_needed_msg
+= _("- TCP port changed.\n");
542 if (CfgChanged(IDC_UDPPORT
)) {
543 restart_needed
= true;
544 restart_needed_msg
+= _("- UDP port changed.\n");
547 // Force port checking
548 thePrefs::SetPort(thePrefs::GetPort());
550 if ((CPath::GetFileSize(theApp
->ConfigDir
+ wxT("addresses.dat")) == 0) &&
551 CastChild(IDC_AUTOSERVER
, wxCheckBox
)->IsChecked() ) {
552 thePrefs::UnsetAutoServerStart();
553 wxMessageBox(_("Your Auto-update server list is empty.\n'Auto-update server list at startup' will be disabled."),
554 _("Message"), wxOK
| wxICON_INFORMATION
, this);
557 if (thePrefs::AcceptExternalConnections() && thePrefs::ECPassword().IsEmpty()) {
558 thePrefs::EnableExternalConnections( false );
560 wxMessageBox( _("You have enabled external connections but have not specified a password.\nExternal connections cannot be enabled unless a valid password is specified."));
563 // save the preferences on ok
564 theApp
->glob_prefs
->Save();
566 if (CfgChanged(IDC_FED2KLH
) && theApp
->amuledlg
->GetActiveDialog() != CamuleDlg::DT_SEARCH_WND
) {
567 theApp
->amuledlg
->ShowED2KLinksHandler( thePrefs::GetFED2KLH() );
570 if (CfgChanged(IDC_LANGUAGE
)) {
571 restart_needed
= true;
572 restart_needed_msg
+= _("- Language changed.\n");
575 if (CfgChanged(IDC_TEMPFILES
)) {
576 restart_needed
= true;
577 restart_needed_msg
+= _("- Temp folder changed.\n");
580 if (CfgChanged(IDC_NETWORKED2K
) && thePrefs::GetNetworkED2K()) {
581 restart_needed
= true;
582 restart_needed_msg
+= _("- ED2K network enabled.\n");
585 if (CfgChanged(IDC_INCFILES
) || CfgChanged(IDC_TEMPFILES
) || m_ShareSelector
->HasChanged
) {
586 theApp
->sharedfiles
->Reload();
589 if (CfgChanged(IDC_OSDIR
) || CfgChanged(IDC_ONLINESIG
)) {
590 wxTextCtrl
* widget
= CastChild( IDC_OSDIR
, wxTextCtrl
);
592 // Build the filenames for the two OS files
593 theApp
->SetOSFiles( widget
->GetValue() );
596 if (CfgChanged(IDC_IPFCLIENTS
) || CfgChanged(IDC_IPFSERVERS
) || CfgChanged(ID_IPFILTERLEVEL
)) {
597 if (thePrefs::IsFilteringClients()) {
598 theApp
->clientlist
->FilterQueues();
600 if (thePrefs::IsFilteringServers()) {
601 theApp
->serverlist
->FilterServers();
605 if (thePrefs::GetShowRatesOnTitle()) {
606 // This avoids a 5 seconds delay to show the title
607 theApp
->amuledlg
->ShowTransferRate();
609 // This resets the title
610 theApp
->amuledlg
->SetTitle(theApp
->m_FrameTitle
);
613 if (CfgChanged(IDC_EXTCATINFO
)) {
614 theApp
->amuledlg
->m_transferwnd
->UpdateCatTabTitles();
617 // Changes related to the statistics-dlg
618 if (CfgChanged(IDC_SLIDER
)) {
619 theApp
->amuledlg
->m_statisticswnd
->SetUpdatePeriod(thePrefs::GetTrafficOMeterInterval());
620 theApp
->amuledlg
->m_kademliawnd
->SetUpdatePeriod(thePrefs::GetTrafficOMeterInterval());
623 if ( CfgChanged(IDC_SLIDER3
) ) {
624 theApp
->amuledlg
->m_statisticswnd
->ResetAveragingTime();
627 if (CfgChanged(IDC_DOWNLOAD_CAP
)) {
628 theApp
->amuledlg
->m_statisticswnd
->SetARange( true, thePrefs::GetMaxGraphDownloadRate() );
631 if (CfgChanged(IDC_UPLOAD_CAP
)) {
632 theApp
->amuledlg
->m_statisticswnd
->SetARange( false, thePrefs::GetMaxGraphUploadRate() );
635 if (CfgChanged(IDC_SKIN
)) {
636 theApp
->amuledlg
->Create_Toolbar(thePrefs::VerticalToolbar());
639 if (!thePrefs::GetNetworkED2K() && theApp
->IsConnectedED2K()) {
640 theApp
->DisconnectED2K();
643 if (!thePrefs::GetNetworkKademlia() && theApp
->IsConnectedKad()) {
647 if (!thePrefs::GetNetworkED2K() && !thePrefs::GetNetworkKademlia()) {
649 _("Both eD2k and Kad network are disabled.\nYou won't be able to connect until you enable at least one of them."));
652 if (thePrefs::GetNetworkKademlia() && thePrefs::IsUDPDisabled()) {
653 wxMessageBox(_("Kad will not start if your UDP port is disabled.\nEnable UDP port or disable Kad."),
654 _("Message"), wxOK
| wxICON_INFORMATION
, this);
657 if (CfgChanged(IDC_NETWORKKAD
) || CfgChanged(IDC_NETWORKED2K
)) {
658 theApp
->amuledlg
->DoNetworkRearrange();
661 if (restart_needed
) {
662 wxMessageBox(restart_needed_msg
+ _("\nYou MUST restart aMule now.\nIf you do not restart now, don't complain if anything bad happens.\n"), _("WARNING"),wxICON_EXCLAMATION
,this);
669 void PrefsUnifiedDlg::OnClose(wxCloseEvent
& event
)
673 // Try to keep the window alive when possible
674 if (event
.CanVeto()) {
677 if (theApp
->amuledlg
) {
678 theApp
->amuledlg
->m_prefsDialog
= NULL
;
681 // Un-Connect the Cfgs
682 thePrefs::CFGMap::iterator it
= thePrefs::s_CfgList
.begin();
683 for (; it
!= thePrefs::s_CfgList
.end(); ++it
) {
684 // Checking for failures
685 it
->second
->ConnectToWidget( 0 );
693 void PrefsUnifiedDlg::OnCancel(wxCommandEvent
& WXUNUSED(event
))
696 // restore state of server tab if necessary
697 EnableServerTab(thePrefs::GetNetworkED2K());
701 void PrefsUnifiedDlg::OnCheckBoxChange(wxCommandEvent
& event
)
703 bool value
= event
.IsChecked();
704 int id
= event
.GetId();
706 // Check if this checkbox is one of the User Events checkboxes
707 if (id
>= USEREVENTS_FIRST_ID
&&
708 id
< USEREVENTS_FIRST_ID
+
709 (int)CUserEvents::GetCount() * USEREVENTS_IDS_PER_EVENT
) {
710 // The corresponding text control always has
711 // an ID one greater than the checkbox
712 FindWindow(id
+ 1)->Enable(value
);
718 FindWindow( IDC_UDPPORT
)->Enable(value
);
721 case IDC_CHECKDISKSPACE
:
722 FindWindow( IDC_MINDISKSPACE
)->Enable(value
);
726 FindWindow( IDC_OSDIR
)->Enable(value
);;
727 FindWindow(IDC_OSUPDATE
)->Enable(value
);
731 FindWindow( IDC_SERVERRETRIES
)->Enable(value
);;
735 if ((CPath::GetFileSize(theApp
->ConfigDir
+ wxT("addresses.dat")) == 0) &&
736 CastChild(event
.GetId(), wxCheckBox
)->IsChecked() ) {
737 wxMessageBox(_("Your Auto-update servers list is in blank.\nPlease fill in at least one URL to point to a valid server.met file.\nClick on the button \"List\" by this checkbox to enter an URL."),
738 _("Message"), wxOK
| wxICON_INFORMATION
);
739 CastChild(event
.GetId(), wxCheckBox
)->SetValue(false);
744 // Toogle All filter options
745 FindWindow(IDC_MSGFILTER_ALL
)->Enable(value
);
746 FindWindow(IDC_MSGFILTER_NONSECURE
)->Enable(value
);
747 FindWindow(IDC_MSGFILTER_NONFRIENDS
)->Enable(value
);
748 FindWindow(IDC_MSGFILTER_WORD
)->Enable(value
);
750 FindWindow(IDC_MSGWORD
)->Enable(
751 CastChild(IDC_MSGFILTER_WORD
, wxCheckBox
)->IsChecked());
753 FindWindow(IDC_MSGWORD
)->Enable(false);
757 case IDC_MSGFILTER_ALL
:
758 // Toogle filtering by data.
759 FindWindow(IDC_MSGFILTER_NONSECURE
)->Enable(!value
);
760 FindWindow(IDC_MSGFILTER_NONFRIENDS
)->Enable(!value
);
761 FindWindow(IDC_MSGFILTER_WORD
)->Enable(!value
);
763 FindWindow(IDC_MSGWORD
)->Enable(
764 CastChild(IDC_MSGFILTER_WORD
, wxCheckBox
)->IsChecked());
766 FindWindow(IDC_MSGWORD
)->Enable(false);
770 case IDC_MSGFILTER_WORD
:
771 // Toogle filter word list.
772 FindWindow(IDC_MSGWORD
)->Enable(value
);
775 case IDC_FILTERCOMMENTS
:
776 FindWindow(IDC_COMMENTWORD
)->Enable(value
);
779 case ID_PROXY_ENABLE_PROXY
:
780 FindWindow(ID_PROXY_TYPE
)->Enable(value
);
781 FindWindow(ID_PROXY_NAME
)->Enable(value
);
782 FindWindow(ID_PROXY_PORT
)->Enable(value
);
785 case ID_PROXY_ENABLE_PASSWORD
:
786 FindWindow(ID_PROXY_USER
)->Enable(value
);
787 FindWindow(ID_PROXY_PASSWORD
)->Enable(value
);
790 case IDC_STARTNEXTFILE
:
791 FindWindow(IDC_STARTNEXTFILE_SAME
)->Enable(value
);
794 case IDC_ENABLETRAYICON
:
795 FindWindow(IDC_MINTRAY
)->Enable(value
);
797 theApp
->amuledlg
->CreateSystray();
799 theApp
->amuledlg
->RemoveSystray();
801 thePrefs::SetUseTrayIcon(value
);
804 case ID_PROXY_AUTO_SERVER_CONNECT_WITHOUT_PROXY
:
807 case IDC_VERTTOOLBAR
:
808 theApp
->amuledlg
->Create_Toolbar(value
);
809 // Update the first tool (conn button)
810 theApp
->amuledlg
->ShowConnectionState();
813 case IDC_ENFORCE_PO_INCOMING
:
814 FindWindow(IDC_ENABLE_PO_OUTGOING
)->Enable(!value
);
817 case IDC_ENABLE_PO_OUTGOING
:
818 FindWindow(IDC_SUPPORT_PO
)->Enable(!value
);
819 FindWindow(IDC_ENFORCE_PO_INCOMING
)->Enable(value
);
823 FindWindow(IDC_ENABLE_PO_OUTGOING
)->Enable(value
);
826 case IDC_SHOWRATEONTITLE
:
827 FindWindow(IDC_RATESBEFORETITLE
)->Enable(value
);
828 FindWindow(IDC_RATESAFTERTITLE
)->Enable(value
);
831 case IDC_NETWORKED2K
: {
832 EnableServerTab(value
);
834 OnTCPClientPortChange(e
);
844 void PrefsUnifiedDlg::OnButtonColorChange(wxCommandEvent
& WXUNUSED(event
))
846 int index
= m_choiceColor
->GetSelection();
847 wxColour col
= wxGetColourFromUser( this, CMuleColour(thePrefs::s_colors
[index
]) );
849 m_buttonColor
->SetBackgroundColour( col
);
850 thePrefs::s_colors
[index
] = CMuleColour(col
).GetULong();
855 void PrefsUnifiedDlg::OnColorCategorySelected(wxCommandEvent
& WXUNUSED(evt
))
857 m_buttonColor
->SetBackgroundColour(CMuleColour(thePrefs::s_colors
[ m_choiceColor
->GetSelection() ] ) );
861 void PrefsUnifiedDlg::OnButtonDir(wxCommandEvent
& event
)
866 switch ( event
.GetId() ) {
869 type
= _("Temporary files");
874 type
= _("Incoming files");
879 type
= _("Online Signatures");
884 // type = _("Skins directory");
892 type
= CFormat(_("Choose a folder for %s")) % type
;
893 wxTextCtrl
* widget
= CastChild( id
, wxTextCtrl
);
894 wxString dir
= widget
->GetValue();
895 wxString str
= wxDirSelector(
898 wxDefaultPosition
, this);
899 if (!str
.IsEmpty()) {
900 widget
->SetValue(str
);
905 void PrefsUnifiedDlg::OnButtonBrowseApplication(wxCommandEvent
& event
)
909 switch ( event
.GetId() ) {
911 id
= IDC_VIDEOPLAYER
;
912 title
= _("Browse for videoplayer");
915 id
= IDC_BROWSERSELF
;
916 title
= _("Select browser");
922 wxString wildcard
= CFormat(_("Executable%s"))
924 % wxT(" (*.exe)|*.exe");
929 wxString str
= wxFileSelector( title
, wxEmptyString
, wxEmptyString
,
930 wxEmptyString
, wildcard
, 0, this );
932 if ( !str
.IsEmpty() ) {
933 wxTextCtrl
* widget
= CastChild( id
, wxTextCtrl
);
934 widget
->SetValue( str
);
939 void PrefsUnifiedDlg::OnButtonEditAddr(wxCommandEvent
& WXUNUSED(evt
))
941 wxString
fullpath( theApp
->ConfigDir
+ wxT("addresses.dat") );
943 EditServerListDlg
* test
= new EditServerListDlg(this, _("Edit server list"),
944 _("Add here URL's to download server.met files.\nOnly one url on each line."),
952 void PrefsUnifiedDlg::OnButtonIPFilterReload(wxCommandEvent
& WXUNUSED(event
))
954 theApp
->ipfilter
->Reload();
958 void PrefsUnifiedDlg::OnButtonIPFilterUpdate(wxCommandEvent
& WXUNUSED(event
))
960 theApp
->ipfilter
->Update( CastChild( IDC_IPFILTERURL
, wxTextCtrl
)->GetValue() );
964 void PrefsUnifiedDlg::OnPrefsPageChange(wxListEvent
& event
)
966 prefs_sizer
->Detach( m_CurrentPanel
);
967 m_CurrentPanel
->Show( false );
969 m_CurrentPanel
= (wxPanel
*) m_PrefsIcons
->GetItemData(event
.GetIndex());
970 if (pages
[event
.GetIndex()].m_function
== PreferencesDirectoriesTab
) {
971 CastChild(IDC_SHARESELECTOR
, CDirectoryTreeCtrl
)->Init();
974 prefs_sizer
->Add( m_CurrentPanel
, 0, wxGROW
|wxEXPAND
);
975 m_CurrentPanel
->Show( true );
983 void PrefsUnifiedDlg::OnToolTipDelayChange(wxSpinEvent
& event
)
985 wxToolTip::SetDelay( event
.GetPosition() * 1000 );
989 void PrefsUnifiedDlg::OnInitDialog( wxInitDialogEvent
& WXUNUSED(evt
) )
991 // This function exists solely to avoid automatic transfer-to-widget calls
995 void PrefsUnifiedDlg::OnScrollBarChange( wxScrollEvent
& event
)
1000 switch ( event
.GetId() ) {
1002 id
= IDC_SLIDERINFO
;
1003 label
= wxString::Format( wxPLURAL("Update delay: %d second", "Update delay: %d seconds", event
.GetPosition()), event
.GetPosition() );
1004 theApp
->amuledlg
->m_statisticswnd
->SetUpdatePeriod(event
.GetPosition());
1005 theApp
->amuledlg
->m_kademliawnd
->SetUpdatePeriod(event
.GetPosition());
1009 id
= IDC_SLIDERINFO3
;
1010 label
= wxString::Format( wxPLURAL("Time for average graph: %d minute", "Time for average graph: %d minutes", event
.GetPosition()), event
.GetPosition() );
1011 theApp
->m_statistics
->SetAverageMinutes(event
.GetPosition());
1015 id
= IDC_SLIDERINFO4
;
1016 label
= wxString::Format( _("Connections Graph Scale: %d"), event
.GetPosition() );
1017 theApp
->amuledlg
->m_statisticswnd
->GetConnScope()->SetRanges(0,event
.GetPosition());
1021 id
= IDC_SLIDERINFO2
;
1022 label
= wxString::Format( wxPLURAL("Update delay : %d second", "Update delay : %d seconds", event
.GetPosition()), event
.GetPosition() );
1025 case IDC_FILEBUFFERSIZE
:
1026 id
= IDC_FILEBUFFERSIZE_STATIC
;
1027 // Yes, it seems odd to add the singular form here, but other languages might need to know the number to select the appropriate translation
1028 label
= wxString::Format( wxPLURAL("File Buffer Size: %d byte", "File Buffer Size: %d bytes", event
.GetPosition() * 15000), event
.GetPosition() * 15000 );
1032 id
= IDC_QUEUESIZE_STATIC
;
1033 // Yes, it seems odd to add the singular form here, but other languages might need to know the number to select the appropriate translation
1034 label
= wxString::Format( wxPLURAL("Upload Queue Size: %d client", "Upload Queue Size: %d clients", event
.GetPosition() * 100), event
.GetPosition() * 100 );
1037 case IDC_SERVERKEEPALIVE
:
1038 id
= IDC_SERVERKEEPALIVE_LABEL
;
1040 if ( event
.GetPosition() ) {
1041 label
= wxString::Format( wxPLURAL("Server connection refresh interval: %d minute", "Server connection refresh interval: %d minutes", event
.GetPosition()), event
.GetPosition() );
1043 label
= wxString::Format( _("Server connection refresh interval: Disabled") );
1051 wxStaticText
* widget
= CastChild( id
, wxStaticText
);
1054 widget
->SetLabel( label
);
1055 widget
->GetParent()->Layout();
1060 void PrefsUnifiedDlg::OnRateLimitChanged( wxSpinEvent
& event
)
1062 // Here we do immediate sainity checking of the up/down ratio,
1063 // so that the user can see if his choice is illegal
1065 // We only do checks if the rate is limited
1066 if ( event
.GetPosition() != (int)UNLIMITED
) {
1067 wxSpinCtrl
* dlrate
= CastChild( IDC_MAXDOWN
, wxSpinCtrl
);
1069 if ( event
.GetPosition() < 4 ) {
1070 if ( ( event
.GetPosition() * 3 < dlrate
->GetValue() ) ||
1071 ( dlrate
->GetValue() == (int)UNLIMITED
) ) {
1072 dlrate
->SetValue( event
.GetPosition() * 3 );
1074 } else if ( event
.GetPosition() < 10 ) {
1075 if ( ( event
.GetPosition() * 4 < dlrate
->GetValue() ) ||
1076 ( dlrate
->GetValue() == (int)UNLIMITED
) ) {
1077 dlrate
->SetValue( event
.GetPosition() * 4 );
1084 void PrefsUnifiedDlg::OnTCPClientPortChange(wxSpinEvent
& WXUNUSED(event
))
1086 CastChild(ID_TEXT_CLIENT_UDP_PORT
, wxStaticText
)->SetLabel(
1087 m_ServerTabVisible
? (wxString() << (CastChild(IDC_PORT
, wxSpinCtrl
)->GetValue() + 3))
1088 : wxString(_("disabled")));
1091 void PrefsUnifiedDlg::OnUserEventSelected(wxListEvent
& event
)
1093 for (unsigned int i
= 0; i
< CUserEvents::GetCount(); ++i
) {
1094 IDC_PREFS_EVENTS_PAGE
->Hide(i
+1);
1097 IDC_PREFS_EVENTS_PAGE
->Show((event
.GetData() - USEREVENTS_FIRST_ID
) / USEREVENTS_IDS_PER_EVENT
+ 1, true);
1099 IDC_PREFS_EVENTS_PAGE
->Layout();
1104 void PrefsUnifiedDlg::CreateEventPanels(const int idx
, const wxString
& vars
, wxWindow
* parent
)
1106 wxStaticBox
*item8
= new wxStaticBox( parent
, -1, CFormat(_("Execute command on `%s' event")) % wxGetTranslation(CUserEvents::GetDisplayName(static_cast<enum CUserEvents::EventType
>(idx
))) );
1107 wxStaticBoxSizer
*item7
= new wxStaticBoxSizer( item8
, wxVERTICAL
);
1109 wxCheckBox
*item9
= new wxCheckBox( parent
, USEREVENTS_FIRST_ID
+ idx
* USEREVENTS_IDS_PER_EVENT
+ 1, _("Enable command execution on core"), wxDefaultPosition
, wxDefaultSize
, 0 );
1110 item7
->Add( item9
, 0, wxALIGN_CENTER_VERTICAL
|wxLEFT
|wxRIGHT
, 5 );
1112 wxFlexGridSizer
*item10
= new wxFlexGridSizer( 3, 0, 0 );
1113 item10
->AddGrowableCol( 2 );
1115 item10
->Add( 20, 20, 0, wxALIGN_CENTER
|wxALL
, 0 );
1117 wxStaticText
*item11
= new wxStaticText( parent
, -1, _("Core command:"), wxDefaultPosition
, wxDefaultSize
, 0 );
1118 item10
->Add( item11
, 0, wxALIGN_CENTER
|wxALL
, 5 );
1120 wxTextCtrl
*item12
= new wxTextCtrl( parent
, USEREVENTS_FIRST_ID
+ idx
* USEREVENTS_IDS_PER_EVENT
+ 2, wxT(""), wxDefaultPosition
, wxDefaultSize
, 0 );
1121 item12
->Enable(CUserEvents::IsCoreCommandEnabled(static_cast<enum CUserEvents::EventType
>(idx
)));
1122 item10
->Add( item12
, 0, wxGROW
|wxALIGN_CENTER_VERTICAL
|wxALL
, 5 );
1124 item7
->Add( item10
, 0, wxGROW
|wxALIGN_CENTER_VERTICAL
|wxALL
, 0 );
1126 wxCheckBox
*item14
= new wxCheckBox( parent
, USEREVENTS_FIRST_ID
+ idx
* USEREVENTS_IDS_PER_EVENT
+ 3, _("Enable command execution on GUI"), wxDefaultPosition
, wxDefaultSize
, 0 );
1127 item7
->Add( item14
, 0, wxALIGN_CENTER_VERTICAL
|wxLEFT
|wxRIGHT
, 5 );
1129 wxFlexGridSizer
*item15
= new wxFlexGridSizer( 3, 0, 0 );
1130 item15
->AddGrowableCol( 2 );
1132 item15
->Add( 20, 20, 0, wxALIGN_CENTER
|wxALL
, 0 );
1134 wxStaticText
*item16
= new wxStaticText( parent
, -1, _("GUI command:"), wxDefaultPosition
, wxDefaultSize
, 0 );
1135 item15
->Add( item16
, 0, wxALIGN_CENTER
|wxALL
, 5 );
1137 wxTextCtrl
*item17
= new wxTextCtrl( parent
, USEREVENTS_FIRST_ID
+ idx
* USEREVENTS_IDS_PER_EVENT
+ 4, wxT(""), wxDefaultPosition
, wxDefaultSize
, 0 );
1138 item17
->Enable(CUserEvents::IsGUICommandEnabled(static_cast<enum CUserEvents::EventType
>(idx
)));
1139 item15
->Add( item17
, 0, wxGROW
|wxALIGN_CENTER_VERTICAL
|wxALL
, 5 );
1141 item7
->Add( item15
, 0, wxGROW
|wxALIGN_CENTER_VERTICAL
|wxALL
, 0 );
1143 wxStaticText
*item13
= new wxStaticText( parent
, -1, _("The following variables will be replaced:") + vars
, wxDefaultPosition
, wxDefaultSize
, 0 );
1144 item7
->Add( item13
, 0, wxGROW
|wxALIGN_CENTER_VERTICAL
|wxALL
, 5 );
1146 IDC_PREFS_EVENTS_PAGE
->Add(item7
, 0, wxGROW
|wxALIGN_CENTER_VERTICAL
|wxALL
, 5);
1148 IDC_PREFS_EVENTS_PAGE
->Layout();
1149 IDC_PREFS_EVENTS_PAGE
->Hide(idx
+ 1);
1151 // File_checked_for_headers