599 |
599 |
connect(mActionShowBookmarks, SIGNAL(triggered()), this, SLOT(showBookmarks()));
|
600 |
600 |
//
|
601 |
601 |
mActionShowAllToolbars = new QAction(tr("Show most toolbars"), this);
|
602 |
|
mActionShowAllToolbars->setShortcut(tr("S", "Show most toolbars"));
|
|
602 |
mActionShowAllToolbars->setShortcut(tr("T", "Show most toolbars"));
|
603 |
603 |
mActionShowAllToolbars->setStatusTip(tr("Show most toolbars"));
|
604 |
604 |
connect(mActionShowAllToolbars, SIGNAL(triggered()), this,
|
605 |
605 |
SLOT(showAllToolbars()));
|
606 |
606 |
//
|
607 |
607 |
mActionHideAllToolbars = new QAction(tr("Hide most toolbars"), this);
|
608 |
|
mActionHideAllToolbars->setShortcut(tr("H", "Hide most toolbars"));
|
|
608 |
mActionHideAllToolbars->setShortcut(tr("Ctrl+T", "Hide most toolbars"));
|
609 |
609 |
mActionHideAllToolbars->setStatusTip(tr("Hide most toolbars"));
|
610 |
610 |
connect(mActionHideAllToolbars, SIGNAL(triggered()), this,
|
611 |
611 |
SLOT(hideAllToolbars()));
|
... | ... | |
640 |
640 |
//
|
641 |
641 |
|
642 |
642 |
mActionStartEditing = new QAction(QIcon(myIconPath+"/mActionStartEditing.png"),
|
643 |
|
tr("Start editing the current layer"), this);
|
|
643 |
tr("Start editing the current layer"), this);
|
|
644 |
mActionStartEditing->setStatusTip(tr("Start editing the current layer"));
|
644 |
645 |
connect(mActionStartEditing, SIGNAL(triggered()), this, SLOT(startEditing()));
|
645 |
646 |
//
|
646 |
647 |
mActionStopEditing = new QAction(QIcon(myIconPath+"/mActionStopEditing.png"),
|