|
|
|
@ -171,8 +171,8 @@ void LightTableBar::contentsMouseReleaseEvent(TQMouseEvent *e)
|
|
|
|
|
|
|
|
|
|
if (item)
|
|
|
|
|
{
|
|
|
|
|
popmenu.insertItem(SmallIcon("previous"), i18n("Show on left panel"), 10);
|
|
|
|
|
popmenu.insertItem(SmallIcon("next"), i18n("Show on right panel"), 11);
|
|
|
|
|
popmenu.insertItem(SmallIcon("go-previous"), i18n("Show on left panel"), 10);
|
|
|
|
|
popmenu.insertItem(SmallIcon("go-next"), i18n("Show on right panel"), 11);
|
|
|
|
|
popmenu.insertItem(SmallIcon("editimage"), i18n("Edit"), 12);
|
|
|
|
|
|
|
|
|
|
if (d->navigateByPair)
|
|
|
|
@ -524,12 +524,12 @@ void LightTableBar::viewportPaintEvent(TQPaintEvent* e)
|
|
|
|
|
|
|
|
|
|
if (ltItem->isOnLeftPanel())
|
|
|
|
|
{
|
|
|
|
|
TQPixmap lPix = SmallIcon("previous");
|
|
|
|
|
TQPixmap lPix = SmallIcon("go-previous");
|
|
|
|
|
bitBlt(&tile, getMargin(), getMargin(), &lPix);
|
|
|
|
|
}
|
|
|
|
|
if (ltItem->isOnRightPanel())
|
|
|
|
|
{
|
|
|
|
|
TQPixmap rPix = SmallIcon("next");
|
|
|
|
|
TQPixmap rPix = SmallIcon("go-next");
|
|
|
|
|
bitBlt(&tile, tile.width() - getMargin() - rPix.width(), getMargin(), &rPix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -580,12 +580,12 @@ void LightTableBar::viewportPaintEvent(TQPaintEvent* e)
|
|
|
|
|
|
|
|
|
|
if (ltItem->isOnLeftPanel())
|
|
|
|
|
{
|
|
|
|
|
TQPixmap lPix = SmallIcon("previous");
|
|
|
|
|
TQPixmap lPix = SmallIcon("go-previous");
|
|
|
|
|
bitBlt(&tile, getMargin(), getMargin(), &lPix);
|
|
|
|
|
}
|
|
|
|
|
if (ltItem->isOnRightPanel())
|
|
|
|
|
{
|
|
|
|
|
TQPixmap rPix = SmallIcon("next");
|
|
|
|
|
TQPixmap rPix = SmallIcon("go-next");
|
|
|
|
|
bitBlt(&tile, tile.width() - getMargin() - rPix.width(), getMargin(), &rPix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|