//////////////////////////////////////////////////////////////////////////////////////// // // Nestopia - NES/Famicom emulator written in C++ // // Copyright (C) 2003-2008 Martin Freij // // This file is part of Nestopia. // // Nestopia is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // Nestopia is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Nestopia; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // //////////////////////////////////////////////////////////////////////////////////////// #include "NstResourceString.hpp" #include "NstWindowParam.hpp" #include "NstDialogLauncher.hpp" namespace Nestopia { namespace Window { NST_COMPILE_ASSERT ( IDS_LAUNCHER_COLUMN_SYSTEM == IDS_LAUNCHER_COLUMN_FILE + 1 && IDS_LAUNCHER_COLUMN_MAPPER == IDS_LAUNCHER_COLUMN_FILE + 2 && IDS_LAUNCHER_COLUMN_PRG == IDS_LAUNCHER_COLUMN_FILE + 3 && IDS_LAUNCHER_COLUMN_CHR == IDS_LAUNCHER_COLUMN_FILE + 4 && IDS_LAUNCHER_COLUMN_WRAM == IDS_LAUNCHER_COLUMN_FILE + 5 && IDS_LAUNCHER_COLUMN_VRAM == IDS_LAUNCHER_COLUMN_FILE + 6 && IDS_LAUNCHER_COLUMN_BATTERY == IDS_LAUNCHER_COLUMN_FILE + 7 && IDS_LAUNCHER_COLUMN_DUMP == IDS_LAUNCHER_COLUMN_FILE + 8 && IDS_LAUNCHER_COLUMN_NAME == IDS_LAUNCHER_COLUMN_FILE + 9 && IDS_LAUNCHER_COLUMN_FOLDER == IDS_LAUNCHER_COLUMN_FILE + 10 ); wcstring const Launcher::List::Columns::cfgStrings[NUM_TYPES] = { L"file", L"system", L"mapper", L"prg", L"chr", L"wram", L"vram", L"battery", L"dump", L"name", L"folder" }; struct Launcher::List::Columns::Handlers { static const MsgHandler::Entry messages[]; static const MsgHandler::Entry commands[]; }; const MsgHandler::Entry Launcher::List::Columns::Handlers::messages[] = { { WM_INITDIALOG, &Columns::OnInitDialog } }; const MsgHandler::Entry Launcher::List::Columns::Handlers::commands[] = { { IDC_LAUNCHER_COLUMNSELECT_SELECTED, &Columns::OnCmdSelected }, { IDC_LAUNCHER_COLUMNSELECT_AVAILABLE, &Columns::OnCmdAvailable }, { IDC_LAUNCHER_COLUMNSELECT_ADD, &Columns::OnCmdAdd }, { IDC_LAUNCHER_COLUMNSELECT_REMOVE, &Columns::OnCmdRemove }, { IDC_LAUNCHER_COLUMNSELECT_DEFAULT, &Columns::OnCmdDefault }, { IDOK, &Columns::OnCmdOk } }; Launcher::List::Columns::Columns(const Configuration& cfg) : available (NUM_TYPES), dialog (IDD_LAUNCHER_COLUMNS,this,Handlers::messages,Handlers::commands) { Configuration::ConstSection column( cfg["launcher"]["view"]["columns"]["column"] ); for (uint i=0; i < NUM_TYPES; ++i) available[i] = i; selected.Reserve( NUM_TYPES ); for (uint i=0; i < NUM_TYPES; ++i) { const GenericString string( column[i].Str() ); if (string.Empty()) break; for (Types::Iterator it(available.Begin()), end(available.End()); it != end; ++it) { if (string == cfgStrings[*it]) { selected.PushBack( *it ); available.Erase( it ); break; } } } if (selected.Empty()) Reset(); } void Launcher::List::Columns::Reset() { selected.Resize( NUM_DEFAULT_SELECTED_TYPES ); available.Resize( NUM_DEFAULT_AVAILABLE_TYPES ); for (uint i=0; i < NUM_DEFAULT_SELECTED_TYPES; ++i) selected[i] = i; for (uint i=0; i < NUM_DEFAULT_AVAILABLE_TYPES; ++i) available[i] = NUM_DEFAULT_SELECTED_TYPES + i; } void Launcher::List::Columns::Update(const uchar* const order) { selected.Assign( order, selected.Size() ); } void Launcher::List::Columns::Save(Configuration& cfg) const { if (const uint n=selected.Size()) { Configuration::Section column( cfg["launcher"]["view"]["columns"]["column"] ); for (uint i=0; i < n; ++i) column[i].Str() = cfgStrings[selected[i]]; } } void Launcher::List::Columns::UpdateButtonRemove() { const Control::ListBox list( dialog.ListBox(IDC_LAUNCHER_COLUMNSELECT_SELECTED) ); dialog.Control(IDC_LAUNCHER_COLUMNSELECT_REMOVE).Enable ( list.Size() > 1 && list.Selection() ); } void Launcher::List::Columns::UpdateButtonAdd() { dialog.Control(IDC_LAUNCHER_COLUMNSELECT_ADD).Enable ( dialog.ListBox(IDC_LAUNCHER_COLUMNSELECT_AVAILABLE).Selection() ); } ibool Launcher::List::Columns::OnInitDialog(Param&) { Control::ListBox list( dialog.ListBox(IDC_LAUNCHER_COLUMNSELECT_SELECTED) ); list.Reserve( selected.Size() ); for (Types::ConstIterator it(selected.Begin()), end(selected.End()); it != end; ++it) list.Add( Resource::String( IDS_LAUNCHER_COLUMN_FILE + *it ) ); list[0].Select(); list = dialog.ListBox(IDC_LAUNCHER_COLUMNSELECT_AVAILABLE); list.Reserve( available.Size() ); for (Types::ConstIterator it(available.Begin()), end(available.End()); it != end; ++it) list.Add( Resource::String( IDS_LAUNCHER_COLUMN_FILE + *it ) ); list[0].Select(); return true; } ibool Launcher::List::Columns::OnCmdSelected(Param& param) { if (param.ListBox().SelectionChanged()) UpdateButtonRemove(); return true; } ibool Launcher::List::Columns::OnCmdAvailable(Param& param) { if (param.ListBox().SelectionChanged()) UpdateButtonAdd(); return true; } ibool Launcher::List::Columns::OnCmdAdd(Param& param) { if (param.Button().Clicked()) Add( IDC_LAUNCHER_COLUMNSELECT_SELECTED, IDC_LAUNCHER_COLUMNSELECT_AVAILABLE ); return true; } ibool Launcher::List::Columns::OnCmdRemove(Param& param) { if (param.Button().Clicked()) Add( IDC_LAUNCHER_COLUMNSELECT_AVAILABLE, IDC_LAUNCHER_COLUMNSELECT_SELECTED ); return true; } ibool Launcher::List::Columns::OnCmdDefault(Param& param) { if (param.Button().Clicked()) { Control::ListBox list( dialog.ListBox(IDC_LAUNCHER_COLUMNSELECT_SELECTED) ); list.Clear(); for (uint i=0; i < NUM_DEFAULT_SELECTED_TYPES; ++i) list.Add( Resource::String( IDS_LAUNCHER_COLUMN_FILE + i) ); list[0].Select(); list = dialog.ListBox(IDC_LAUNCHER_COLUMNSELECT_AVAILABLE); list.Clear(); for (uint i=0; i < NUM_DEFAULT_AVAILABLE_TYPES; ++i) list.Add( Resource::String( IDS_LAUNCHER_COLUMN_FILE + NUM_DEFAULT_SELECTED_TYPES + i) ); list[0].Select(); dialog.Control( IDC_LAUNCHER_COLUMNSELECT_REMOVE ).Enable(); dialog.Control( IDC_LAUNCHER_COLUMNSELECT_ADD ).Enable(); } return true; } ibool Launcher::List::Columns::OnCmdOk(Param& param) { if (param.Button().Clicked()) { HeapString text; for (uint i=0; i < 2; ++i) { Control::ListBox list = dialog.ListBox ( i ? IDC_LAUNCHER_COLUMNSELECT_SELECTED : IDC_LAUNCHER_COLUMNSELECT_AVAILABLE ); Types& types = (i ? selected : available); types.Resize( list.Size() ); for (uint j=0; j < types.Size(); ++j) { list[j].Text() >> text; for (uint k=0; k < NUM_TYPES; ++k) { if (text == Resource::String( IDS_LAUNCHER_COLUMN_FILE + k)) { types[j] = k; break; } } } } dialog.Close(); } return true; } void Launcher::List::Columns::Add(const uint iDst,const uint iSrc) { const Control::ListBox cSrc( dialog.ListBox(iSrc) ); const int sSrc = cSrc.Selection().GetIndex(); if (sSrc >= 0 && (iDst == IDC_LAUNCHER_COLUMNSELECT_SELECTED || cSrc.Size() > 1)) { HeapString text; cSrc[sSrc].Text() >> text; const Control::ListBox cDst( dialog.ListBox(iDst) ); const int sDst = cDst.Selection().GetIndex(); if (sDst >= 0) cDst.Insert( sDst + 1, text.Ptr() ).Select(); else cDst.Add( text.Ptr() ); cSrc[sSrc].Remove(); if (cSrc.Size() > sSrc) cSrc[sSrc].Select(); UpdateButtonRemove(); UpdateButtonAdd(); } } } }