Added a recent ROMs sub menu to the Qt main menu.
This commit is contained in:
parent
67fb5263cc
commit
e6754c87ba
|
@ -159,6 +159,8 @@ consoleWin_t::consoleWin_t(QWidget *parent)
|
|||
setSchedParam( policy, prio );
|
||||
#endif
|
||||
}
|
||||
|
||||
recentRomMenuReset = false;
|
||||
}
|
||||
|
||||
consoleWin_t::~consoleWin_t(void)
|
||||
|
@ -225,6 +227,8 @@ consoleWin_t::~consoleWin_t(void)
|
|||
clipboard->clear( QClipboard::Selection );
|
||||
}
|
||||
|
||||
clearRomList();
|
||||
|
||||
if ( this == consoleWindow )
|
||||
{
|
||||
consoleWindow = NULL;
|
||||
|
@ -330,6 +334,11 @@ void consoleWin_t::createMainMenu(void)
|
|||
|
||||
fileMenu->addAction(closeROM);
|
||||
|
||||
// File -> Recent ROMs
|
||||
recentRomMenu = fileMenu->addMenu( tr("&Recent ROMs") );
|
||||
|
||||
buildRecentRomMenu();
|
||||
|
||||
fileMenu->addSeparator();
|
||||
|
||||
// File -> Play NSF
|
||||
|
@ -936,6 +945,120 @@ void consoleWin_t::createMainMenu(void)
|
|||
helpMenu->addAction(act);
|
||||
};
|
||||
//---------------------------------------------------------------------------
|
||||
void consoleWin_t::clearRomList(void)
|
||||
{
|
||||
std::list <std::string*>::iterator it;
|
||||
|
||||
for (it=romList.begin(); it != romList.end(); it++)
|
||||
{
|
||||
delete *it;
|
||||
}
|
||||
romList.clear();
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
||||
void consoleWin_t::buildRecentRomMenu(void)
|
||||
{
|
||||
QAction *act;
|
||||
std::string s;
|
||||
std::string *sptr;
|
||||
char buf[128];
|
||||
|
||||
clearRomList();
|
||||
recentRomMenu->clear();
|
||||
|
||||
for (int i=0; i<10; i++)
|
||||
{
|
||||
sprintf(buf, "SDL.RecentRom%02i", i);
|
||||
|
||||
g_config->getOption( buf, &s);
|
||||
|
||||
//printf("Recent Rom:%i '%s'\n", i, s.c_str() );
|
||||
|
||||
if ( s.size() > 0 )
|
||||
{
|
||||
act = new consoleRecentRomAction( tr(s.c_str()), recentRomMenu);
|
||||
|
||||
recentRomMenu->addAction( act );
|
||||
|
||||
connect(act, SIGNAL(triggered()), act, SLOT(activateCB(void)) );
|
||||
|
||||
sptr = new std::string();
|
||||
|
||||
sptr->assign( s.c_str() );
|
||||
|
||||
romList.push_front( sptr );
|
||||
}
|
||||
}
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
||||
void consoleWin_t::saveRecentRomMenu(void)
|
||||
{
|
||||
int i;
|
||||
std::string *s;
|
||||
std::list <std::string*>::iterator it;
|
||||
char buf[128];
|
||||
|
||||
i = romList.size() - 1;
|
||||
|
||||
for (it=romList.begin(); it != romList.end(); it++)
|
||||
{
|
||||
s = *it;
|
||||
sprintf(buf, "SDL.RecentRom%02i", i);
|
||||
|
||||
g_config->setOption( buf, s->c_str() );
|
||||
|
||||
//printf("Recent Rom:%u '%s'\n", i, s->c_str() );
|
||||
i--;
|
||||
}
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
||||
void consoleWin_t::addRecentRom( const char *rom )
|
||||
{
|
||||
std::string *s;
|
||||
std::list <std::string*>::iterator match_it;
|
||||
|
||||
for (match_it=romList.begin(); match_it != romList.end(); match_it++)
|
||||
{
|
||||
s = *match_it;
|
||||
|
||||
if ( s->compare( rom ) == 0 )
|
||||
{
|
||||
//printf("Found Match: %s\n", rom );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ( match_it != romList.end() )
|
||||
{
|
||||
s = *match_it;
|
||||
|
||||
romList.erase(match_it);
|
||||
|
||||
romList.push_back(s);
|
||||
}
|
||||
else
|
||||
{
|
||||
s = new std::string();
|
||||
|
||||
s->assign( rom );
|
||||
|
||||
romList.push_back(s);
|
||||
|
||||
if ( romList.size() > 10 )
|
||||
{
|
||||
s = romList.front();
|
||||
|
||||
romList.pop_front();
|
||||
|
||||
delete s;
|
||||
}
|
||||
}
|
||||
|
||||
saveRecentRomMenu();
|
||||
|
||||
recentRomMenuReset = true;
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
||||
void consoleWin_t::toggleMenuVis(void)
|
||||
{
|
||||
if ( menubar->isVisible() )
|
||||
|
@ -2379,6 +2502,14 @@ void consoleWin_t::updatePeriodic(void)
|
|||
errorMsgValid = false;
|
||||
}
|
||||
|
||||
if ( recentRomMenuReset )
|
||||
{
|
||||
fceuWrapperLock();
|
||||
buildRecentRomMenu();
|
||||
recentRomMenuReset = false;
|
||||
fceuWrapperUnLock();
|
||||
}
|
||||
|
||||
if ( closeRequested )
|
||||
{
|
||||
closeApp();
|
||||
|
@ -2630,3 +2761,26 @@ void consoleMenuBar::keyReleaseEvent(QKeyEvent *event)
|
|||
QMenuBar::keyReleaseEvent(event);
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
//----------------------------------------------------------------------------
|
||||
consoleRecentRomAction::consoleRecentRomAction(QString desc, QWidget *parent)
|
||||
: QAction( desc, parent )
|
||||
{
|
||||
path = desc.toStdString();
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
consoleRecentRomAction::~consoleRecentRomAction(void)
|
||||
{
|
||||
//printf("Recent ROM Menu Action Deleted\n");
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
void consoleRecentRomAction::activateCB(void)
|
||||
{
|
||||
printf("Activate Recent ROM: %s \n", path.c_str() );
|
||||
|
||||
fceuWrapperLock();
|
||||
CloseGame ();
|
||||
LoadGame ( path.c_str() );
|
||||
fceuWrapperUnLock();
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
@ -67,6 +67,21 @@ class consoleMenuBar : public QMenuBar
|
|||
void keyReleaseEvent(QKeyEvent *event);
|
||||
};
|
||||
|
||||
class consoleRecentRomAction : public QAction
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
consoleRecentRomAction( QString title, QWidget *parent = 0);
|
||||
~consoleRecentRomAction(void);
|
||||
|
||||
std::string path;
|
||||
|
||||
public slots:
|
||||
void activateCB(void);
|
||||
|
||||
};
|
||||
|
||||
class consoleWin_t : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -99,6 +114,8 @@ class consoleWin_t : public QMainWindow
|
|||
|
||||
emulatorThread_t *emulatorThread;
|
||||
|
||||
void addRecentRom( const char *rom );
|
||||
|
||||
protected:
|
||||
consoleMenuBar *menubar;
|
||||
|
||||
|
@ -109,6 +126,7 @@ class consoleWin_t : public QMainWindow
|
|||
QMenu *debugMenu;
|
||||
QMenu *movieMenu;
|
||||
QMenu *helpMenu;
|
||||
QMenu *recentRomMenu;
|
||||
|
||||
QAction *openROM;
|
||||
QAction *closeROM;
|
||||
|
@ -166,6 +184,9 @@ class consoleWin_t : public QMainWindow
|
|||
std::string errorMsg;
|
||||
bool errorMsgValid;
|
||||
bool closeRequested;
|
||||
bool recentRomMenuReset;
|
||||
|
||||
std::list <std::string*> romList;
|
||||
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *event);
|
||||
|
@ -176,6 +197,9 @@ class consoleWin_t : public QMainWindow
|
|||
|
||||
private:
|
||||
void createMainMenu(void);
|
||||
void buildRecentRomMenu(void);
|
||||
void saveRecentRomMenu(void);
|
||||
void clearRomList(void);
|
||||
|
||||
public slots:
|
||||
void openDebugWindow(void);
|
||||
|
|
|
@ -351,6 +351,14 @@ InitConfig()
|
|||
config->addOption("_lastopenmovie", "SDL.LastOpenMovie", movPath);
|
||||
config->addOption("_lastloadlua", "SDL.LastLoadLua", "");
|
||||
|
||||
for (unsigned int i=0; i<10; i++)
|
||||
{
|
||||
char buf[128];
|
||||
sprintf(buf, "SDL.RecentRom%02u", i);
|
||||
|
||||
config->addOption( buf, "");
|
||||
}
|
||||
|
||||
config->addOption("_useNativeFileDialog", "SDL.UseNativeFileDialog", false);
|
||||
config->addOption("_useNativeMenuBar" , "SDL.UseNativeMenuBar", false);
|
||||
|
||||
|
|
|
@ -266,6 +266,11 @@ int LoadGame(const char *path, bool silent)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if ( consoleWindow )
|
||||
{
|
||||
consoleWindow->addRecentRom( fullpath );
|
||||
}
|
||||
|
||||
hexEditorLoadBookmarks();
|
||||
|
||||
g_config->getOption( "SDL.AutoLoadDebugFiles", &autoLoadDebug );
|
||||
|
|
Loading…
Reference in New Issue