mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5213
This commit is contained in:
parent
001790f103
commit
64d1843c85
|
@ -23257,6 +23257,10 @@ David 25 Jan 2005
|
|||
Rom 25 Jan 2005
|
||||
- Allow BOINC Manager to search for it's localization catalog files in
|
||||
a sub directory called 'locale' like it does in Windows.
|
||||
- The options dialog should grow in size with the different languages,
|
||||
add a notebook sizer to the mix.
|
||||
|
||||
clientgui/
|
||||
BOINCGUI.pjd
|
||||
BOINCGUIApp.cpp
|
||||
DlgOptions.cpp
|
File diff suppressed because it is too large
Load Diff
|
@ -89,6 +89,7 @@ void CDlgOptions::CreateControls()
|
|||
itemDialog1->SetAutoLayout(TRUE);
|
||||
wxNotebook* itemNotebook3 = new wxNotebook;
|
||||
itemNotebook3->Create( itemDialog1, ID_NOTEBOOK, wxDefaultPosition, wxSize(300, 265), wxNB_TOP );
|
||||
wxNotebookSizer* itemNotebook3Sizer = new wxNotebookSizer(itemNotebook3);
|
||||
wxPanel* itemPanel4 = new wxPanel;
|
||||
itemPanel4->Create( itemNotebook3, ID_GENERAL, wxDefaultPosition, wxSize(99, 80), wxTAB_TRAVERSAL );
|
||||
wxBoxSizer* itemBoxSizer5 = new wxBoxSizer(wxVERTICAL);
|
||||
|
@ -219,7 +220,7 @@ void CDlgOptions::CreateControls()
|
|||
itemFlexGridSizer34->Add(itemTextCtrl38, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||
|
||||
itemNotebook3->AddPage(itemPanel23, _("SOCKS Proxy"));
|
||||
itemBoxSizer2->Add(itemNotebook3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
||||
itemBoxSizer2->Add(itemNotebook3Sizer, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
||||
|
||||
wxBoxSizer* itemBoxSizer39 = new wxBoxSizer(wxHORIZONTAL);
|
||||
itemBoxSizer2->Add(itemBoxSizer39, 0, wxALIGN_RIGHT|wxALL, 5);
|
||||
|
|
Loading…
Reference in New Issue