mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-17 01:11:53 +02:00
246 lines
5.9 KiB
C++
246 lines
5.9 KiB
C++
#include <string>
|
|
|
|
#include "browsedialog.h"
|
|
|
|
#include "FastDelegate.h"
|
|
#include "filelister.h"
|
|
|
|
using namespace fastdelegate;
|
|
|
|
BrowseDialog::BrowseDialog(GMenu2X *gmenu2x, const string &title,
|
|
const string &subtitle) :
|
|
gmenu2x(gmenu2x), title(title), subtitle(subtitle)
|
|
{
|
|
ButtonAction actionUp = MakeDelegate(this, &BrowseDialog::directoryUp);
|
|
ButtonAction actionEnter = MakeDelegate(this, &BrowseDialog::directoryEnter);
|
|
ButtonAction actionConfirm = MakeDelegate(this, &BrowseDialog::confirm);
|
|
|
|
btnUp = new IconButton(gmenu2x, "skin:imgs/buttons/x.png", gmenu2x->tr["Up one folder"]);
|
|
btnUp->setAction(actionUp);
|
|
|
|
btnEnter = new IconButton(gmenu2x, "skin:imgs/buttons/b.png", gmenu2x->tr["Enter folder"]);
|
|
btnEnter->setAction(actionEnter);
|
|
|
|
btnConfirm = new IconButton(gmenu2x, "skin:imgs/buttons/start.png", gmenu2x->tr["Confirm"]);
|
|
btnConfirm->setAction(actionConfirm);
|
|
|
|
iconGoUp = gmenu2x->sc.skinRes("imgs/go-up.png");
|
|
iconFolder = gmenu2x->sc.skinRes("imgs/folder.png");
|
|
iconFile = gmenu2x->sc.skinRes("imgs/file.png");
|
|
}
|
|
|
|
bool BrowseDialog::exec()
|
|
{
|
|
if (!fl)
|
|
return false;
|
|
|
|
string path = fl->getPath();
|
|
if (path.empty() || !fileExists(path) || path.compare(0, 5, "/card") != 0)
|
|
setPath("/card");
|
|
|
|
fl->browse();
|
|
|
|
rowHeight = gmenu2x->font->getHeight()+1; // gp2x=15+1 / pandora=19+1
|
|
numRows = (gmenu2x->resY-gmenu2x->skinConfInt["topBarHeight"]-20)/rowHeight;
|
|
clipRect = (SDL_Rect){0, gmenu2x->skinConfInt["topBarHeight"]+1, gmenu2x->resX-9, gmenu2x->resY-gmenu2x->skinConfInt["topBarHeight"]-25};
|
|
touchRect = (SDL_Rect){2, gmenu2x->skinConfInt["topBarHeight"]+4, gmenu2x->resX-12, clipRect.h};
|
|
|
|
selected = 0;
|
|
while (!close) {
|
|
if (gmenu2x->f200) gmenu2x->ts.poll();
|
|
|
|
paint();
|
|
|
|
handleInput();
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
BrowseDialog::Action BrowseDialog::getAction()
|
|
{
|
|
BrowseDialog::Action action = BrowseDialog::ACT_NONE;
|
|
|
|
if (gmenu2x->input[ACTION_SELECT])
|
|
action = BrowseDialog::ACT_CLOSE;
|
|
else if (gmenu2x->input[ACTION_UP])
|
|
action = BrowseDialog::ACT_UP;
|
|
else if (gmenu2x->input[ACTION_L])
|
|
action = BrowseDialog::ACT_SCROLLUP;
|
|
else if (gmenu2x->input[ACTION_DOWN])
|
|
action = BrowseDialog::ACT_DOWN;
|
|
else if (gmenu2x->input[ACTION_R])
|
|
action = BrowseDialog::ACT_SCROLLDOWN;
|
|
else if (gmenu2x->input[ACTION_X] || gmenu2x->input[ACTION_LEFT])
|
|
action = BrowseDialog::ACT_GOUP;
|
|
else if (gmenu2x->input[ACTION_B])
|
|
action = BrowseDialog::ACT_SELECT;
|
|
else if (gmenu2x->input[ACTION_START])
|
|
action = BrowseDialog::ACT_CONFIRM;
|
|
|
|
return action;
|
|
}
|
|
|
|
bool BrowseDialog::handleInput()
|
|
{
|
|
BrowseDialog::Action action;
|
|
|
|
gmenu2x->input.update();
|
|
|
|
if (ts_pressed && !gmenu2x->ts.pressed()) {
|
|
action = BrowseDialog::ACT_SELECT;
|
|
ts_pressed = false;
|
|
} else {
|
|
action = getAction();
|
|
}
|
|
|
|
if (gmenu2x->f200 && gmenu2x->ts.pressed() && !gmenu2x->ts.inRect(touchRect)) ts_pressed = false;
|
|
|
|
if (action == BrowseDialog::ACT_SELECT && (*fl)[selected] == "..")
|
|
action = BrowseDialog::ACT_GOUP;
|
|
switch (action) {
|
|
case BrowseDialog::ACT_CLOSE:
|
|
close = true;
|
|
result = false;
|
|
break;
|
|
case BrowseDialog::ACT_UP:
|
|
if (selected == 0)
|
|
selected = fl->size() - 1;
|
|
else
|
|
selected -= 1;
|
|
break;
|
|
case BrowseDialog::ACT_SCROLLUP:
|
|
if (selected <= numRows - 2)
|
|
selected = 0;
|
|
else
|
|
selected -= numRows - 2;
|
|
break;
|
|
case BrowseDialog::ACT_DOWN:
|
|
if (fl->size() - 1 <= selected)
|
|
selected = 0;
|
|
else
|
|
selected += 1;
|
|
break;
|
|
case BrowseDialog::ACT_SCROLLDOWN:
|
|
if (selected+(numRows-2)>=fl->size())
|
|
selected = fl->size()-1;
|
|
else
|
|
selected += numRows-2;
|
|
break;
|
|
case BrowseDialog::ACT_GOUP:
|
|
directoryUp();
|
|
break;
|
|
case BrowseDialog::ACT_SELECT:
|
|
if (fl->isDirectory(selected)) {
|
|
directoryEnter();
|
|
break;
|
|
}
|
|
/* Falltrough */
|
|
case BrowseDialog::ACT_CONFIRM:
|
|
confirm();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
btnUp->handleTS();
|
|
btnEnter->handleTS();
|
|
btnConfirm->handleTS();
|
|
}
|
|
|
|
#include <iostream>
|
|
|
|
void BrowseDialog::directoryUp()
|
|
{
|
|
string path = fl->getPath();
|
|
string::size_type p = path.rfind("/");
|
|
|
|
if (p == path.size() - 1)
|
|
p = path.rfind("/", p - 1);
|
|
|
|
if (p == string::npos || p < 4 || path.compare(0, 5, "/card") != 0) {
|
|
close = true;
|
|
result = false;
|
|
} else {
|
|
selected = 0;
|
|
setPath(path.substr(0, p));
|
|
}
|
|
}
|
|
|
|
void BrowseDialog::directoryEnter()
|
|
{
|
|
string path = fl->getPath();
|
|
if (path[path.size()-1] != '/')
|
|
path += "/";
|
|
|
|
setPath(path + fl->at(selected));
|
|
|
|
selected = 0;
|
|
}
|
|
|
|
void BrowseDialog::confirm()
|
|
{
|
|
close = true;
|
|
}
|
|
|
|
void BrowseDialog::paint()
|
|
{
|
|
unsigned int i, iY;
|
|
unsigned int firstElement, lastElement;
|
|
unsigned int offsetY;
|
|
Surface *icon;
|
|
|
|
gmenu2x->bg->blit(gmenu2x->s, 0, 0);
|
|
gmenu2x->drawTitleIcon("icons/explorer.png", true);
|
|
gmenu2x->writeTitle(title);
|
|
gmenu2x->writeSubTitle(subtitle);
|
|
|
|
gmenu2x->drawButton(btnConfirm,
|
|
gmenu2x->drawButton(btnUp,
|
|
gmenu2x->drawButton(btnEnter, 5)));
|
|
|
|
if (selected>firstElement+numRows-1)
|
|
firstElement = selected-numRows+1;
|
|
else if (selected < firstElement)
|
|
firstElement = selected;
|
|
|
|
//Selection
|
|
iY = selected-firstElement;
|
|
iY = gmenu2x->skinConfInt["topBarHeight"]+1+(iY*rowHeight);
|
|
gmenu2x->s->box(2, iY, gmenu2x->resX-12, rowHeight-1, gmenu2x->skinConfColors[COLOR_SELECTION_BG]);
|
|
|
|
lastElement = firstElement + numRows;
|
|
if (lastElement > fl->size())
|
|
lastElement = fl->size();
|
|
|
|
offsetY = gmenu2x->skinConfInt["topBarHeight"]+1;
|
|
|
|
beforeFileList();
|
|
|
|
//Files & Directories
|
|
gmenu2x->s->setClipRect(clipRect);
|
|
for (i = firstElement; i < lastElement; i++) {
|
|
if (fl->isDirectory(i)) {
|
|
if ((*fl)[i]=="..")
|
|
icon = iconGoUp;
|
|
else
|
|
icon = iconFolder;
|
|
} else {
|
|
icon = iconFile;
|
|
}
|
|
icon->blit(gmenu2x->s, 5, offsetY);
|
|
gmenu2x->s->write(gmenu2x->font, (*fl)[i], 24, offsetY + 8, SFontHAlignLeft, SFontVAlignMiddle);
|
|
|
|
if (gmenu2x->f200 && gmenu2x->ts.pressed() && gmenu2x->ts.inRect(touchRect.x, offsetY + 3, touchRect.w, rowHeight)) {
|
|
ts_pressed = true;
|
|
selected = i;
|
|
}
|
|
|
|
offsetY += rowHeight;
|
|
}
|
|
gmenu2x->s->clearClipRect();
|
|
|
|
gmenu2x->drawScrollBar(numRows,fl->size(),firstElement,clipRect.y,clipRect.h);
|
|
gmenu2x->s->flip();
|
|
}
|