QLabel snap to ScrollBar
-
@Mikeeeeee said in QLabel snap to ScrollBar:
How do I know the visible coordinates of an Image?
What do you mean?
What are "visible coordinates" and relative to what do you want to have them?
Do you mean you want to know which part of displayed image is visible? -
Partially solve. But regardless of the scrollbar state, pageStep() returns a single value
qDebug()<<scrollArea->horizontalScrollBar()->value() <<scrollArea->horizontalScrollBar()->maximum() <<scrollArea->horizontalScrollBar()->minimum() <<scrollArea->horizontalScrollBar()->pageStep(); -
@Mikeeeeee said in QLabel snap to ScrollBar:
pageStep
But it is a single step value. how much to scroll for a page.
What do you need it for ? -
Hi
If i do
// createActions();
it starts fine.
Please provide more details. -
hi
I think its something else than createActions();
Use the debugger to find the line where it crashes. -
error in qaction.cpp
void QAction::setEnabled(bool b) { Q_D(QAction); if (b == d->enabled && b != d->forceDisabled) return; d->forceDisabled = !b; if (b && (!d->visible || (d->group && !d->group->isEnabled()))) return; QAPP_CHECK("setEnabled"); d->enabled = b; #ifndef QT_NO_SHORTCUT d->setShortcutEnabled(b, qApp->d_func()->shortcutMap); //here #endif d->sendDataChanged(); } -
I commented out all QAction and the program starts, but the picture at start is not loaded. But you need to change the zoom level to display the picture. Please tell me how to fix it.
hi
I think it would be better to call
createActions();
and simply domenuBar()->hide();
so its not shown.
That way you dont get issues with dangling pointers in the program.