Author Topic: UI Feature requests  (Read 4667 times)

Offline dink

  • Administrator
  • *****
  • Posts: 5023
  • Karma: +449/-1
  • pie? I nearly bought one!
UI Feature requests
« on: June 21, 2014, 02:22:50 AM »
I have a couple ideas for UI Features that would really be really helpfull...

1: When Show Unavailable is checked, and a game isn't in the database, right clicking it and selecing 'rescan this romset' (or something similar) will check the romset, and add it to the database if it checks out ok.  This way a new rom can be added quickly without rescanning everything.  If adding a right-click is too much code/work, how about a button on the [Rom Info] window to do this? :)

2: well, thats it for now :)

best regards,
- dink

Offline Romhack

  • Expert
  • *****
  • Posts: 92
  • Karma: +49/-0
Re: UI Feature requests
« Reply #1 on: June 24, 2014, 11:19:03 PM »
I don't know about win32 api but that was very easy to implement on Qt version, the code is simple (on context menu click)
nBurnDrvActive = m_selectedDriver;
int stat = BzipOpen(1);
m_romScanner->setStatus(m_selectedDriver, stat);
BzipClose();
filterDrivers();

Offline dink

  • Administrator
  • *****
  • Posts: 5023
  • Karma: +449/-1
  • pie? I nearly bought one!
Re: UI Feature requests
« Reply #2 on: June 24, 2014, 11:23:04 PM »
Thanks, I'll try to get it working in the win32 ui :)