1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
|
/*
SPDX-FileCopyrightText: 1999-2001 John Birch <jbb@kdevelop.org>
SPDX-FileCopyrightText: 2001 Bernd Gehrmann <bernd@kdevelop.org>
SPDX-FileCopyrightText: 2006 Vladimir Prus <ghost@cs.msu.su>
SPDX-FileCopyrightText: 2007 Hamish Rodda <rodda@kde.org>
SPDX-FileCopyrightText: 2009 Niko Sams <niko.sams@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "debugcontroller.h"
#include <QAction>
#include <KActionCollection>
#include <KLocalizedString>
#include <KTextEditor/Document>
#include <KTextEditor/MarkInterface>
#include <KXMLGUIFactory>
#include "../interfaces/idocument.h"
#include "../interfaces/icore.h"
#include "../interfaces/idocumentcontroller.h"
#include "../interfaces/ipartcontroller.h"
#include "../interfaces/contextmenuextension.h"
#include "../interfaces/context.h"
#include "../language/interfaces/editorcontext.h"
#include "../sublime/view.h"
#include "../sublime/mainwindow.h"
#include "../sublime/area.h"
#include "../debugger/breakpoint/breakpointmodel.h"
#include "../debugger/breakpoint/breakpointwidget.h"
#include "../debugger/variable/variablewidget.h"
#include "../debugger/framestack/framestackmodel.h"
#include "../debugger/framestack/framestackwidget.h"
#include "core.h"
#include "debug.h"
#include "uicontroller.h"
#include "iruncontroller.h"
namespace KDevelop {
template<class T>
class DebuggerToolFactory : public KDevelop::IToolViewFactory
{
public:
DebuggerToolFactory(DebugController* controller, const QString &id, Qt::DockWidgetArea defaultArea)
: m_controller(controller), m_id(id), m_defaultArea(defaultArea) {}
QWidget* create(QWidget *parent = nullptr) override
{
return new T(m_controller, parent);
}
QString id() const override
{
return m_id;
}
Qt::DockWidgetArea defaultPosition() const override
{
return m_defaultArea;
}
void viewCreated(Sublime::View* view) override
{
if (view->widget()->metaObject()->indexOfSignal("requestRaise()") != -1)
QObject::connect(view->widget(), SIGNAL(requestRaise()), view, SLOT(requestRaise()));
}
/* At present, some debugger widgets (e.g. breakpoint) contain actions so that shortcuts
work, but they don't need any toolbar. So, suppress toolbar action. */
QList<QAction*> toolBarActions( QWidget* viewWidget ) const override
{
Q_UNUSED(viewWidget);
return QList<QAction*>();
}
private:
DebugController* const m_controller;
const QString m_id;
const Qt::DockWidgetArea m_defaultArea;
};
DebugController::DebugController(QObject *parent)
: IDebugController(parent), KXMLGUIClient(),
m_breakpointModel(new BreakpointModel(this)),
m_variableCollection(new VariableCollection(this))
{
setComponentName(QStringLiteral("kdevdebugger"), i18n("Debugger"));
setXMLFile(QStringLiteral("kdevdebuggershellui.rc"));
}
void DebugController::initialize()
{
m_breakpointModel->load();
}
void DebugController::initializeUi()
{
if (m_uiInitialized) return;
m_uiInitialized = true;
if((Core::self()->setupFlags() & Core::NoUi)) return;
setupActions();
ICore::self()->uiController()->addToolView(
i18nc("@title:window", "Frame Stack"),
new DebuggerToolFactory<FramestackWidget>(
this, QStringLiteral("org.kdevelop.debugger.StackView"),
Qt::BottomDockWidgetArea));
ICore::self()->uiController()->addToolView(
i18nc("@title:window", "Breakpoints"),
new DebuggerToolFactory<BreakpointWidget>(
this, QStringLiteral("org.kdevelop.debugger.BreakpointsView"),
Qt::BottomDockWidgetArea));
ICore::self()->uiController()->addToolView(
i18nc("@title:window", "Variables"),
new DebuggerToolFactory<VariableWidget>(
this, QStringLiteral("org.kdevelop.debugger.VariablesView"),
Qt::LeftDockWidgetArea));
const auto parts = KDevelop::ICore::self()->partController()->parts();
for (KParts::Part* p : parts) {
partAdded(p);
}
connect(KDevelop::ICore::self()->partController(),
&IPartController::partAdded,
this,
&DebugController::partAdded);
ICore::self()->uiController()->activeMainWindow()->guiFactory()->addClient(this);
stateChanged(QStringLiteral("ended"));
}
void DebugController::cleanup()
{
if (m_currentSession) m_currentSession.data()->stopDebugger();
}
DebugController::~DebugController()
{
// The longest possible time interval has been allotted for previous and
// the current debug sessions to stop their debugger processes: stopDebugger()
// was called on the sessions in addSession() and cleanup() respectively.
// Now is the last safe moment for a DebugSession to finalize its state and
// invoke DebugController::debuggerStateChanged(), which in turn schedules the
// session's deletion. This finalization not only ensures that debug sessions
// are destroyed, but also prevents crashes: a DebugSession's state transition
// signals lead to accesses to DebugController and its children, such as a
// call to BreakpointModel::updateState(). Therefore we must force all debug
// sessions to synchronously finalize their states now.
emit killAllDebuggersNow();
}
BreakpointModel* DebugController::breakpointModel()
{
return m_breakpointModel;
}
VariableCollection* DebugController::variableCollection()
{
return m_variableCollection;
}
void DebugController::partAdded(KParts::Part* part)
{
if (auto* doc = qobject_cast<KTextEditor::Document*>(part)) {
auto* iface = qobject_cast<KTextEditor::MarkInterface*>(doc);
if( !iface )
return;
iface->setMarkPixmap(KTextEditor::MarkInterface::Execution, *executionPointPixmap());
}
}
IDebugSession* DebugController::currentSession()
{
return m_currentSession.data();
}
void DebugController::setupActions()
{
KActionCollection* ac = actionCollection();
QAction* action = m_continueDebugger = new QAction(this);
setContinueStartsDebug(true);
ac->addAction(QStringLiteral("debug_continue"), action);
connect(action, &QAction::triggered, this, &DebugController::run);
#if 0
m_restartDebugger = action = new QAction(QIcon::fromTheme("media-seek-backward"), i18n("&Restart"), this);
action->setToolTip( i18n("Restart program") );
action->setWhatsThis( i18n("Restarts applications from the beginning.") );
action->setEnabled(false);
connect(action, SIGNAL(triggered(bool)), this, SLOT(restartDebugger()));
ac->addAction("debug_restart", action);
#endif
m_interruptDebugger = action = new QAction(QIcon::fromTheme(QStringLiteral("media-playback-pause")), i18nc("@action", "Interrupt"), this);
action->setToolTip( i18nc("@info:tooltip", "Interrupt application") );
action->setWhatsThis(i18nc("@info:whatsthis", "Interrupts the debugged process or current debugger command."));
connect(action, &QAction::triggered, this, &DebugController::interruptDebugger);
ac->addAction(QStringLiteral("debug_pause"), action);
m_runToCursor = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-run-cursor")), i18nc("@action", "Run to &Cursor"), this);
action->setToolTip( i18nc("@info:tooltip", "Run to cursor") );
action->setWhatsThis(i18nc("@info:whatsthis", "Continues execution until the cursor position is reached."));
connect(action, &QAction::triggered, this, &DebugController::runToCursor);
ac->addAction(QStringLiteral("debug_runtocursor"), action);
m_jumpToCursor = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-execute-to-cursor")), i18nc("@action", "Set E&xecution Position to Cursor"), this);
action->setToolTip( i18nc("@info:tooltip", "Jump to cursor") );
action->setWhatsThis(i18nc("@info:whatsthis", "Continue execution from the current cursor position."));
connect(action, &QAction::triggered, this, &DebugController::jumpToCursor);
ac->addAction(QStringLiteral("debug_jumptocursor"), action);
m_stepOver = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-step-over")), i18nc("@action", "Step &Over"), this);
ac->setDefaultShortcut( action, Qt::Key_F10);
action->setToolTip( i18nc("@info:tooltip", "Step over the next line") );
action->setWhatsThis( i18nc("@info:whatsthis", "Executes one line of source in the current source file. "
"If the source line is a call to a function the whole "
"function is executed and the app will stop at the line "
"following the function call.") );
connect(action, &QAction::triggered, this, &DebugController::stepOver);
ac->addAction(QStringLiteral("debug_stepover"), action);
m_stepOverInstruction = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-step-instruction")), i18nc("@action", "Step over Ins&truction"), this);
action->setToolTip( i18nc("@info:tooltip", "Step over instruction") );
action->setWhatsThis(i18nc("@info:whatsthis", "Steps over the next assembly instruction."));
connect(action, &QAction::triggered, this, &DebugController::stepOverInstruction);
ac->addAction(QStringLiteral("debug_stepoverinst"), action);
m_stepInto = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-step-into")), i18nc("@action", "Step &Into"), this);
ac->setDefaultShortcut( action, Qt::Key_F11);
action->setToolTip( i18nc("@info:tooltip", "Step into the next statement") );
action->setWhatsThis( i18nc("@info:whatsthis", "Executes exactly one line of source. If the source line "
"is a call to a function then execution will stop after "
"the function has been entered.") );
connect(action, &QAction::triggered, this, &DebugController::stepInto);
ac->addAction(QStringLiteral("debug_stepinto"), action);
m_stepIntoInstruction = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-step-into-instruction")), i18nc("@action", "Step into I&nstruction"), this);
action->setToolTip( i18nc("@info:tooltip", "Step into instruction") );
action->setWhatsThis(i18nc("@info:whatsthis", "Steps into the next assembly instruction."));
connect(action, &QAction::triggered, this, &DebugController::stepIntoInstruction);
ac->addAction(QStringLiteral("debug_stepintoinst"), action);
m_stepOut = action = new QAction(QIcon::fromTheme(QStringLiteral("debug-step-out")), i18nc("@action", "Step O&ut"), this);
ac->setDefaultShortcut( action, Qt::Key_F12);
action->setToolTip( i18nc("@info:tooltip", "Step out of the current function") );
action->setWhatsThis( i18nc("@whatsthis", "Executes the application until the currently executing "
"function is completed. The debugger will then display "
"the line after the original call to that function. If "
"program execution is in the outermost frame (i.e. in "
"main()) then this operation has no effect.") );
connect(action, &QAction::triggered, this, &DebugController::stepOut);
ac->addAction(QStringLiteral("debug_stepout"), action);
m_toggleBreakpoint = action = new QAction(QIcon::fromTheme(QStringLiteral("breakpoint")), i18nc("@action", "Toggle Breakpoint"), this);
ac->setDefaultShortcut( action, i18n("Ctrl+Alt+B") );
action->setToolTip(i18nc("@info:tooltip", "Toggle breakpoint"));
action->setWhatsThis(i18nc("@info:whatsthis", "Toggles the breakpoint at the current line in editor."));
connect(action, &QAction::triggered, this, &DebugController::toggleBreakpoint);
ac->addAction(QStringLiteral("debug_toggle_breakpoint"), action);
m_showCurrentLine = action = new QAction(QIcon::fromTheme(QStringLiteral("go-jump")), i18nc("@action", "Show Current Line"), this);
action->setToolTip(i18nc("@info:tooltip", "Show the current execution position"));
action->setWhatsThis(i18nc("@info:whatsthis", "Jumps to the execution line in the editor."));
connect(action, &QAction::triggered, this, &DebugController::showCurrentLine);
ac->addAction(QStringLiteral("debug_showcurrentline"), action);
}
void DebugController::addSession(IDebugSession* session)
{
qCDebug(SHELL) << session;
Q_ASSERT(session->variableController());
Q_ASSERT(session->breakpointController());
Q_ASSERT(session->frameStackModel());
//TODO support multiple sessions
if (m_currentSession) {
m_currentSession.data()->stopDebugger();
}
m_currentSession = session;
connect(session, &IDebugSession::stateChanged, this, &DebugController::debuggerStateChanged);
connect(session, &IDebugSession::showStepInSource, this, &DebugController::showStepInSource);
connect(session, &IDebugSession::clearExecutionPoint, this, &DebugController::clearExecutionPoint);
connect(session, &IDebugSession::raiseFramestackViews, this, &DebugController::raiseFramestackViews);
connect(this, &DebugController::killAllDebuggersNow, session, &IDebugSession::killDebuggerNow);
updateDebuggerState(session->state(), session);
emit currentSessionChanged(session);
if((Core::self()->setupFlags() & Core::NoUi)) return;
Sublime::MainWindow* mainWindow = Core::self()->uiControllerInternal()->activeSublimeWindow();
auto oldArea = mainWindow->area();
if (oldArea->objectName() != QLatin1String("debug")) {
ICore::self()->uiController()->switchToArea(QStringLiteral("debug"), IUiController::ThisWindow);
mainWindow->area()->setWorkingSet(oldArea->workingSet(), oldArea->workingSetPersistent(), oldArea);
connect(mainWindow, &Sublime::MainWindow::areaChanged, this, &DebugController::areaChanged);
}
}
void DebugController::clearExecutionPoint()
{
const auto* const documentController = KDevelop::ICore::self()->documentController();
if (!documentController) {
qCDebug(SHELL) << "Cannot clear execution point without the document controller. "
"KDevelop must be exiting and the document controller already destroyed.";
return;
}
const auto documents = documentController->openDocuments();
for (KDevelop::IDocument* document : documents) {
auto* iface = qobject_cast<KTextEditor::MarkInterface*>(document->textDocument());
if (!iface)
continue;
const auto oldMarks = iface->marks();
for (KTextEditor::Mark* mark : oldMarks) {
if (mark->type & KTextEditor::MarkInterface::Execution) {
iface->removeMark( mark->line, KTextEditor::MarkInterface::Execution );
}
}
}
}
void DebugController::showStepInSource(const QUrl &url, int lineNum)
{
if((Core::self()->setupFlags() & Core::NoUi)) return;
clearExecutionPoint();
qCDebug(SHELL) << url << lineNum;
Q_ASSERT(qobject_cast<IDebugSession*>(sender()));
QPair<QUrl,int> openUrl = static_cast<IDebugSession*>(sender())->convertToLocalUrl(qMakePair<QUrl,int>( url, lineNum ));
KDevelop::IDocument* document = KDevelop::ICore::self()
->documentController()
->openDocument(openUrl.first, KTextEditor::Cursor(openUrl.second, 0), IDocumentController::DoNotFocus);
if( !document )
return;
auto* iface = qobject_cast<KTextEditor::MarkInterface*>(document->textDocument());
if( !iface )
return;
{
QSignalBlocker blocker(document->textDocument());
iface->addMark( lineNum, KTextEditor::MarkInterface::Execution );
}
}
void DebugController::debuggerStateChanged(KDevelop::IDebugSession::DebuggerState state)
{
Q_ASSERT(qobject_cast<IDebugSession*>(sender()));
auto* session = static_cast<IDebugSession*>(sender());
qCDebug(SHELL) << session << state << "current" << m_currentSession.data();
if (session == m_currentSession.data()) {
updateDebuggerState(state, session);
}
if (state == IDebugSession::EndedState) {
if (session == m_currentSession.data()) {
m_currentSession.clear();
emit currentSessionChanged(nullptr);
if (!Core::self()->shuttingDown()) {
Sublime::MainWindow* mainWindow = Core::self()->uiControllerInternal()->activeSublimeWindow();
if (mainWindow && mainWindow->area()->objectName() != QLatin1String("code")) {
auto oldArea = mainWindow->area();
QString workingSet = oldArea->workingSet();
ICore::self()->uiController()->switchToArea(QStringLiteral("code"), IUiController::ThisWindow);
mainWindow->area()->setWorkingSet(workingSet, oldArea->workingSetPersistent(), oldArea);
}
ICore::self()->uiController()->findToolView(i18nc("@title:window", "Debug"), nullptr, IUiController::Raise);
}
}
session->deleteLater();
}
}
void DebugController::updateDebuggerState(IDebugSession::DebuggerState state, IDebugSession *session)
{
Q_UNUSED(session);
if((Core::self()->setupFlags() & Core::NoUi)) return;
qCDebug(SHELL) << state;
switch (state) {
case IDebugSession::StoppedState:
case IDebugSession::NotStartedState:
case IDebugSession::StoppingState:
qCDebug(SHELL) << "new state: stopped";
stateChanged(QStringLiteral("stopped"));
setContinueStartsDebug(true);
//m_restartDebugger->setEnabled(session->restartAvailable());
break;
case IDebugSession::StartingState:
case IDebugSession::PausedState:
qCDebug(SHELL) << "new state: paused";
stateChanged(QStringLiteral("paused"));
setContinueStartsDebug(false);
//m_restartDebugger->setEnabled(session->restartAvailable());
break;
case IDebugSession::ActiveState:
qCDebug(SHELL) << "new state: active";
stateChanged(QStringLiteral("active"));
setContinueStartsDebug(false);
//m_restartDebugger->setEnabled(false);
break;
case IDebugSession::EndedState:
qCDebug(SHELL) << "new state: ended";
stateChanged(QStringLiteral("ended"));
setContinueStartsDebug(true);
//m_restartDebugger->setEnabled(false);
break;
}
if (state == IDebugSession::PausedState && ICore::self()->uiController()->activeMainWindow()) {
ICore::self()->uiController()->activeMainWindow()->activateWindow();
}
}
void DebugController::setContinueStartsDebug(bool startsDebug)
{
if (startsDebug) {
m_continueDebugger->setText(i18nc("@action", "Debug Launch"));
m_continueDebugger->setIcon(QIcon::fromTheme(QStringLiteral("debug-run")));
m_continueDebugger->setToolTip(i18nc("@info:tooltip", "Debug current launch"));
m_continueDebugger->setWhatsThis(i18nc("@info:whatsthis", "Executes the target or the program specified in "
"currently active launch configuration inside a Debugger."));
} else {
m_continueDebugger->setText(i18nc("@action", "&Continue"));
m_continueDebugger->setIcon(QIcon::fromTheme(QStringLiteral("media-playback-start")));
m_continueDebugger->setToolTip(i18nc("@info:tooltip", "Continue application execution") );
m_continueDebugger->setWhatsThis(i18nc("@info:whatsthis", "Continues the execution of your application in the "
"debugger. This only takes effect when the application "
"has been halted by the debugger (i.e. a breakpoint has "
"been activated or the interrupt was pressed).") );
}
}
ContextMenuExtension DebugController::contextMenuExtension(Context* context, QWidget* parent)
{
Q_UNUSED(parent);
ContextMenuExtension menuExt;
if( context->type() != Context::EditorContext )
return menuExt;
auto *econtext = dynamic_cast<KDevelop::EditorContext*>(context);
if (!econtext)
return menuExt;
if (m_currentSession && m_currentSession.data()->isRunning()) {
menuExt.addAction( KDevelop::ContextMenuExtension::DebugGroup, m_runToCursor);
}
if (econtext->url().isLocalFile()) {
menuExt.addAction( KDevelop::ContextMenuExtension::DebugGroup, m_toggleBreakpoint);
}
return menuExt;
}
#if 0
void DebugController::restartDebugger() {
if (m_currentSession) {
m_currentSession.data()->restartDebugger();
}
}
#endif
void DebugController::stopDebugger() {
if (m_currentSession) {
m_currentSession.data()->stopDebugger();
}
}
void DebugController::interruptDebugger() {
if (m_currentSession) {
m_currentSession.data()->interruptDebugger();
}
}
void DebugController::run() {
if (m_currentSession) {
m_currentSession.data()->run();
} else {
auto runController = ICore::self()->runController();
if (runController->launchConfigurations().isEmpty()) {
runController->showConfigurationDialog();
}
runController->executeDefaultLaunch(QStringLiteral("debug"));
}
}
void DebugController::runToCursor() {
if (m_currentSession) {
m_currentSession.data()->runToCursor();
}
}
void DebugController::jumpToCursor() {
if (m_currentSession) {
m_currentSession.data()->jumpToCursor();
}
}
void DebugController::stepOver() {
if (m_currentSession) {
m_currentSession.data()->stepOver();
}
}
void DebugController::stepIntoInstruction() {
if (m_currentSession) {
m_currentSession.data()->stepIntoInstruction();
}
}
void DebugController::stepInto() {
if (m_currentSession) {
m_currentSession.data()->stepInto();
}
}
void DebugController::stepOverInstruction() {
if (m_currentSession) {
m_currentSession.data()->stepOverInstruction();
}
}
void DebugController::stepOut() {
if (m_currentSession) {
m_currentSession.data()->stepOut();
}
}
void DebugController::areaChanged(Sublime::Area* newArea)
{
if (newArea->objectName() != QLatin1String("debug") && newArea->objectName() != QLatin1String("review")) {
stopDebugger();
}
}
void DebugController::toggleBreakpoint()
{
if (KDevelop::IDocument* document = KDevelop::ICore::self()->documentController()->activeDocument()) {
KTextEditor::Cursor cursor = document->cursorPosition();
if (!cursor.isValid()) return;
breakpointModel()->toggleBreakpoint(document->url(), cursor);
}
}
void DebugController::showCurrentLine()
{
const auto location = qMakePair(m_currentSession->currentUrl(), m_currentSession->currentLine());
if (location.second != -1) {
const auto localLocation = m_currentSession->convertToLocalUrl(location);
ICore::self()->documentController()->openDocument(localLocation.first,
KTextEditor::Cursor(localLocation.second, 0),
IDocumentController::DefaultMode);
}
}
const QPixmap* DebugController::executionPointPixmap()
{
constexpr int markPixmapSize = 32;
static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("go-next")).pixmap(QSize(markPixmapSize, markPixmapSize), QIcon::Normal, QIcon::Off);
return &pixmap;
}
}
|