File size: 19,573 Bytes
a5ffdcd | 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 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2015 A. Stebich (librecad@mail.lordofbikes.de)
** Copyright (C) 2011 Rallaz (rallazz@gmail.com)
** Copyright (C) 2010-2011 R. van Twisk (librecad@rvt.dds.nl)
**
**
** This file is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/
#include "qg_layerwidget.h"
#include <QAbstractTableModel>
#include <QContextMenuEvent>
#include <QHeaderView>
#include <QIcon>
#include <QLineEdit>
#include <QMenu>
#include <QObject>
#include <QScrollBar>
#include <QTableView>
#include <QToolButton>
#include "lc_actiongroupmanager.h"
#include "lc_flexlayout.h"
#include "qc_applicationwindow.h"
#include "qg_actionhandler.h"
#include "rs_debug.h"
#include "rs_entitycontainer.h"
#include "rs_graphic.h"
#include "rs_graphicview.h"
#include "rs_layer.h"
#include "rs_layerlist.h"
#include "rs_settings.h"
QG_LayerModel::QG_LayerModel(QObject * parent) : ::QAbstractTableModel(parent) {
m_iconLayerVisible = QIcon(":/icons/visible.lci");
//layerHidden = QIcon(":/icons/invisible.lci");
m_iconLayerHidden = QIcon(":/icons/not_visible.lci");
m_iconLayerDefreeze = QIcon(":/icons/unlocked.lci");
m_iconLayerFreeze = QIcon(":/icons/locked.lci");
m_iconLayerPrint = QIcon(":/icons/print.lci");
m_iconLayerNoPrint = QIcon(":/icons/noprint.lci");
m_iconLayerConstruction = QIcon(":/icons/construction_layer.lci");
m_iconLayerNoConstruction = QIcon(":/icons/noconstruction.lci");
}
int QG_LayerModel::rowCount ( const QModelIndex & /*parent*/ ) const {
return m_listLayer.size();
}
QModelIndex QG_LayerModel::parent ( const QModelIndex & /*index*/ ) const {
return QModelIndex();
}
QModelIndex QG_LayerModel::index ( int row, int column, const QModelIndex & /*parent*/ ) const {
if ( row >= m_listLayer.size() || row < 0)
return QModelIndex();
return createIndex ( row, column);
}
void QG_LayerModel::setLayerList(RS_LayerList* ll) {
/* since 4.6 the recommended way is to use begin/endResetModel()
* TNick <nicu.tofan@gmail.com>
*/
beginResetModel();
m_listLayer.clear();
if (ll == nullptr) {
endResetModel();
return;
}
for (unsigned i=0; i < ll->count(); ++i) {
m_listLayer.append(ll->at(i));
}
setActiveLayer(ll->getActive());
std::sort( m_listLayer.begin(), m_listLayer.end(), [](const RS_Layer *s1, const RS_Layer *s2)-> bool{
return s1->getName() < s2->getName();
} );
//called to force redraw
endResetModel();
}
RS_Layer *QG_LayerModel::getLayer(int row) const {
if ( row >= m_listLayer.size() || row < 0) {
return nullptr;
}
return m_listLayer.at(row);
}
QModelIndex QG_LayerModel::getIndex (RS_Layer * lay) const {
int row = m_listLayer.indexOf(lay);
if (row<0) {
return {};
}
return createIndex (row, NAME);
}
QVariant QG_LayerModel::data ( const QModelIndex & index, int role ) const{
if (!index.isValid() || index.row() >= m_listLayer.size())
return QVariant();
RS_Layer *layer{m_listLayer.at(index.row())};
int col{index.column()};
switch (role) {
case Qt::DecorationRole:
switch (col) {
case VISIBLE:
if (!layer->isFrozen()) {
return m_iconLayerVisible;
}
return m_iconLayerHidden;
case LOCKED:
if (!layer->isLocked()) {
return m_iconLayerDefreeze;
}
return m_iconLayerFreeze;
case PRINT:
if (!layer->isPrint()) {
return m_iconLayerNoPrint;
}
return m_iconLayerPrint;
case CONSTRUCTION:
if (!layer->isConstruction()) {
return m_iconLayerNoConstruction;
}
return m_iconLayerConstruction;
default:
break;
}
break;
case Qt::DisplayRole:
if (NAME == col) {
return layer->getName();
}
break;
#if QT_VERSION > QT_VERSION_CHECK(6, 0, 0)
case Qt::BackgroundRole:
#else
case Qt::BackgroundColorRole:
#endif
if (COLOR_SAMPLE == col) {
return layer->getPen().getColor().toQColor();
}
break;
case Qt::FontRole:
if (NAME == col) {
if (m_activeLayer && m_activeLayer == layer) {
QFont font;
font.setBold(true);
return font;
}
}
break;
default:
break;
}
return QVariant();
}
void QG_LayerWidget::addToolbarButton(LC_FlexLayout* layButtons, RS2::ActionType actionType) {
QAction* action = m_actionGroupManager->getActionByType(actionType);
if (action != nullptr) {
auto button = new QToolButton(this);
button->setDefaultAction(action);
layButtons->addWidget(button);
}
}
/**
* Constructor.
*/
QG_LayerWidget::QG_LayerWidget(LC_ActionGroupManager* agm, QG_ActionHandler *ah, QWidget *parent, const char *name, Qt::WindowFlags f)
: LC_GraphicViewAwareWidget(parent, name, f){
m_actionHandler = ah;
m_actionGroupManager = agm;
m_layerList = nullptr;
m_showByBlock = false;
m_lastLayer = nullptr;
m_layerModel = new QG_LayerModel(this);
m_layerView = new QTableView(this);
m_layerView->setModel(m_layerModel);
m_layerView->setShowGrid(true);
m_layerView->setSelectionMode(QAbstractItemView::ExtendedSelection);
m_layerView->setEditTriggers(QAbstractItemView::NoEditTriggers);
m_layerView->setFocusPolicy(Qt::NoFocus);
// layerView->setMinimumHeight(140);
m_layerView->setMinimumHeight(60);
QHeaderView *pHeader {m_layerView->horizontalHeader()};
pHeader->setMinimumSectionSize( QG_LayerModel::ICONWIDTH + 4);
pHeader->setStretchLastSection(true);
pHeader->hide();
m_layerView->setColumnWidth(QG_LayerModel::VISIBLE, QG_LayerModel::ICONWIDTH);
m_layerView->setColumnWidth(QG_LayerModel::VISIBLE, QG_LayerModel::ICONWIDTH);
m_layerView->setColumnWidth(QG_LayerModel::LOCKED, QG_LayerModel::ICONWIDTH);
m_layerView->setColumnWidth(QG_LayerModel::PRINT, QG_LayerModel::ICONWIDTH);
m_layerView->setColumnWidth(QG_LayerModel::CONSTRUCTION, QG_LayerModel::ICONWIDTH);
m_layerView->setColumnWidth(QG_LayerModel::COLOR_SAMPLE, QG_LayerModel::ICONWIDTH);
m_layerView->verticalHeader()->hide();
#ifndef DONT_FORCE_WIDGETS_CSS
m_layerView->setStyleSheet("QWidget {background-color: white;} QScrollBar{ background-color: none }");
#endif
auto* lay = new QVBoxLayout(this);
lay->setContentsMargins(2, 2, 2, 2);
auto *layButtons = new LC_FlexLayout(0,5,5);
addToolbarButton(layButtons, RS2::ActionLayersDefreezeAll);
addToolbarButton(layButtons, RS2::ActionLayersFreezeAll);
addToolbarButton(layButtons, RS2::ActionLayersUnlockAll);
addToolbarButton(layButtons, RS2::ActionLayersLockAll);
addToolbarButton(layButtons, RS2::ActionLayersAdd);
addToolbarButton(layButtons, RS2::ActionLayersRemove);
addToolbarButton(layButtons, RS2::ActionLayersEdit);
// lineEdit to filter layer list with RegEx
m_matchLayerName = new QLineEdit(this);
m_matchLayerName->setReadOnly(false);
m_matchLayerName->setPlaceholderText(tr("Filter"));
m_matchLayerName->setClearButtonEnabled(true);
m_matchLayerName->setToolTip(tr("Looking for matching layer names"));
connect(m_matchLayerName, &QLineEdit::textChanged, this, &QG_LayerWidget::slotUpdateLayerList);
lay->addWidget(m_matchLayerName);
lay->addLayout(layButtons);
lay->addWidget(m_layerView);
this->setLayout(lay);
connect(m_layerView, &QTableView::clicked, this, &QG_LayerWidget::slotActivated);
connect(m_layerView->selectionModel(), &QItemSelectionModel::selectionChanged,
this, &QG_LayerWidget::slotSelectionChanged);
updateWidgetSettings();
}
/**
* Sets the layerlist this layer widget should show.
*
* @param showByBlock true: show the layer with the name "ByBlock" if
* it exists.
* false: don't show special layer "ByBlock"
*/
void QG_LayerWidget::setLayerList(RS_LayerList* layerList, bool showByBlock) {
if (m_layerList != nullptr) {
m_layerList->removeListener(this);
}
m_layerList = layerList;
m_showByBlock = showByBlock;
if (layerList != nullptr) {
m_layerList->addListener(this);
}
update();
}
void QG_LayerWidget::updateFiltering(){
if (! m_matchLayerName->text().isEmpty()) {
slotUpdateLayerList();
}
}
void QG_LayerWidget::layerAdded(RS_Layer* layer){
update(); // 1st apply the new layer to the view
updateFiltering();
activateLayer(layer);
update(); // update again, if new layer is last row, the height was wrong
}
void QG_LayerWidget::layerEdited([[maybe_unused]]RS_Layer *rs_layer){
update();
updateFiltering();
}
void QG_LayerWidget::layerRemoved([[maybe_unused]]RS_Layer *rs_layer){
update();
updateFiltering();
update();
activateLayer(m_layerList->at(0));
}
/**
* @brief getActiveName
* @return the name of the active layer
*/
QString QG_LayerWidget::getActiveName() const{
if (m_layerList != nullptr) {
RS_Layer *activeLayer = m_layerList->getActive();
if (activeLayer != nullptr) {
return activeLayer->getName();
}
}
return QString();
}
/**
* Updates the layer box from the layers in the graphic.
*/
void QG_LayerWidget::update() {
RS_DEBUG->print("QG_LayerWidget::update() begin");
if (!m_layerView) {
RS_DEBUG->print(RS_Debug::D_ERROR, "QG_LayerWidget::update: nullptr layerView");
return;
}
int yPos = m_layerView->verticalScrollBar()->value();
m_layerView->resizeRowsToContents();
m_layerView->verticalScrollBar()->setValue(yPos);
m_layerModel->setLayerList(m_layerList); // allow a null layerList; this clears the widget
if (m_layerList == nullptr) {
RS_DEBUG->print(RS_Debug::D_NOTICE, "QG_LayerWidget::update: nullptr layerList");
return;
}
RS_DEBUG->print("QG_LayerWidget::update: reactivating current layer");
RS_Layer* activeLayer = m_layerList->getActive();
if (activeLayer == nullptr) {
RS_DEBUG->print(RS_Debug::D_NOTICE, "QG_LayerWidget::update: nullptr activeLayer");
m_layerModel->setActiveLayer(nullptr);
return;
}
if (m_lastLayer == nullptr) {
RS_DEBUG->print(RS_Debug::D_NOTICE, "QG_LayerWidget::update: nullptr lastLayer");
m_lastLayer = activeLayer;
}
restoreSelections();
RS_DEBUG->print("QG_LayerWidget::update(): OK");
}
void QG_LayerWidget::restoreSelections() {
QItemSelectionModel* selectionModel = m_layerView->selectionModel();
for (auto* layer: *m_layerList) {
if (!layer) continue;
if (!layer->isVisibleInLayerList()) continue;
if (!layer->isSelectedInLayerList()) continue;
QModelIndex idx = m_layerModel->getIndex(layer);
QItemSelection selection(idx, idx);
selectionModel->select(selection, QItemSelectionModel::Select);
}
}
/**
* Activates the given layer and makes it the active
* layer in the layerlist.
*/
void QG_LayerWidget::activateLayer(RS_Layer* layer, bool updateScroll) {
RS_DEBUG->print("QG_LayerWidget::activateLayer() begin");
if (!layer || !m_layerList) {
RS_DEBUG->print(RS_Debug::D_ERROR, "QG_LayerWidget::activateLayer: nullptr layer or layerList");
return;
}
m_layerList->activate(layer);
if (!m_layerModel) {
RS_DEBUG->print(RS_Debug::D_ERROR, "QG_LayerWidget::activateLayer: nullptr layerModel");
return;
}
QModelIndex idx = m_layerModel->getIndex(layer);
if (!idx.model() || !m_layerView) {
RS_DEBUG->print(RS_Debug::D_ERROR, "QG_LayerWidget::activateLayer: invalid layer or nullptr layerView");
return;
}
// remember selected status of the layer
bool selected = layer->isSelectedInLayerList();
m_layerView->setCurrentIndex(idx);
m_layerModel->setActiveLayer(layer);
m_layerView->viewport()->update();
// restore selected status of the layer
QItemSelectionModel::SelectionFlag selFlag;
if (selected) {
selFlag = QItemSelectionModel::Select;
} else {
selFlag = QItemSelectionModel::Deselect;
}
layer->selectedInLayerList(selected);
m_layerView->selectionModel()->select(QItemSelection(idx, idx), selFlag);
if (!updateScroll) {
int yPos = m_layerView->verticalScrollBar()->value();
m_layerView->verticalScrollBar()->setValue(yPos);
}
//update active layer name in mainwindow status bar
QC_ApplicationWindow::getAppWindow()->slotUpdateActiveLayer();
RS_DEBUG->print("QG_LayerWidget::activateLayer() end");
}
/**
* Called when the user activates (highlights) a layer.
*/
void QG_LayerWidget::slotActivated(QModelIndex layerIdx /*const QString& layerName*/) {
if (!layerIdx.isValid() || m_layerList==nullptr) {
return;
}
RS_Layer* lay = m_layerModel->getLayer(layerIdx.row());
if (lay == nullptr)
return;
if (layerIdx.column() == QG_LayerModel::NAME) {
m_layerList->activate(lay, true);
return;
}
switch (layerIdx.column()) {
case QG_LayerModel::VISIBLE:
m_actionHandler->setCurrentAction(RS2::ActionLayersToggleView, lay);
break;
case QG_LayerModel::LOCKED:
m_actionHandler->setCurrentAction(RS2::ActionLayersToggleLock, lay);
// m_actionHandler->toggleLock(lay);
break;
case QG_LayerModel::PRINT:
m_actionHandler->setCurrentAction(RS2::ActionLayersTogglePrint, lay);
// m_actionHandler->togglePrint(lay);
break;
case QG_LayerModel::CONSTRUCTION:
m_actionHandler->setCurrentAction(RS2::ActionLayersToggleConstruction, lay);
// m_actionHandler->toggleConstruction(lay);
break;
default:
break;
}
}
/**
* Called on layers selection/deselection
*/
void QG_LayerWidget::slotSelectionChanged(
const QItemSelection &selected,
const QItemSelection &deselected){
QModelIndex index;
QItemSelectionModel *selectionModel {m_layerView->selectionModel()};
foreach (index, selected.indexes()) {
auto layer = m_layerModel->getLayer(index.row());
if (layer) {
layer->selectedInLayerList(true);
selectionModel->select(QItemSelection(index, index), QItemSelectionModel::Select);
}
}
foreach (index, deselected.indexes()) {
auto layer = m_layerModel->getLayer(index.row());
if (layer && layer->isVisibleInLayerList()) {
layer->selectedInLayerList(false);
selectionModel->select(QItemSelection(index, index), QItemSelectionModel::Deselect);
}
}
}
/**
* Called when reg-expresion matchLayerName->text changed
*/
void QG_LayerWidget::slotUpdateLayerList() {
QRegularExpression rx = QRegularExpression::fromWildcard(m_matchLayerName->text());
for (unsigned i=0; i<m_layerList->count() ; i++) {
QString s=m_layerModel->getLayer(i)->getName();
if (m_matchLayerName->text().isEmpty() || s.indexOf(rx) == 0) {
m_layerView->showRow(i);
m_layerModel->getLayer(i)->visibleInLayerList(true);
} else {
m_layerView->hideRow(i);
m_layerModel->getLayer(i)->visibleInLayerList(false);
}
}
restoreSelections();
}
void QG_LayerWidget::addMenuItem(QMenu* contextMenu, RS2::ActionType actionType) {
auto action = m_actionGroupManager->getActionByType(actionType);
if (action != nullptr) {
contextMenu->QWidget::addAction(action);
}
}
/**
* Shows a context menu for the layer widget. Launched with a right click.
*/
void QG_LayerWidget::contextMenuEvent(QContextMenuEvent *e) {
auto menu = new QMenu(this);
addMenuItem(menu, RS2::ActionLayersDefreezeAll);
addMenuItem(menu, RS2::ActionLayersFreezeAll);
addMenuItem(menu, RS2::ActionLayersUnlockAll);
addMenuItem(menu, RS2::ActionLayersLockAll);
menu->addSeparator();
// Actions for selected layers or, if nothing is selected, for active layer:
addMenuItem(menu, RS2::ActionLayersToggleView);
addMenuItem(menu, RS2::ActionLayersToggleLock);
addMenuItem(menu, RS2::ActionLayersTogglePrint);
addMenuItem(menu, RS2::ActionLayersToggleConstruction);
addMenuItem(menu, RS2::ActionLayersRemove);
menu->addSeparator();
// Single layer actions:
addMenuItem(menu, RS2::ActionLayersAdd);
addMenuItem(menu, RS2::ActionLayersEdit);
menu->addSeparator();
addMenuItem(menu, RS2::ActionLayersExportSelected);
addMenuItem(menu, RS2::ActionLayersExportVisible);
menu->exec(QCursor::pos());
e->accept();
}
/**
* Escape releases focus.
*/
void QG_LayerWidget::keyPressEvent(QKeyEvent* e) {
switch (e->key()) {
case Qt::Key_Escape: {
emit escape();
break;
}
default:
QWidget::keyPressEvent(e);
break;
}
}
void QG_LayerWidget::activateLayer(int row){
auto layer = m_layerModel->getLayer(row);
if (layer) {
m_layerList->activate(layer, true);
}
else
qWarning("activateLayer: row %d doesn't exist", row);
}
void QG_LayerWidget::updateWidgetSettings(){
LC_GROUP("Widgets"); {
bool flatIcons = LC_GET_BOOL("DockWidgetsFlatIcons", true);
int iconSize = LC_GET_INT("DockWidgetsIconSize", 16);
QSize size(iconSize, iconSize);
QList<QToolButton *> widgets = this->findChildren<QToolButton *>();
foreach(QToolButton *w, widgets) {
w->setAutoRaise(flatIcons);
w->setIconSize(size);
}
}
LC_GROUP_END();
}
void QG_LayerWidget::setGraphicView(RS_GraphicView *gview){
if (gview == nullptr) {
setLayerList(nullptr, false);
}
else {
auto doc = gview->getContainer();
bool showByBlock = doc->rtti() == RS2::EntityBlock;
if (showByBlock) {
setLayerList(gview->getGraphic(true)->getLayerList(), false);
}
else {
auto layerList = doc->getGraphic()->getLayerList();
setLayerList(layerList, showByBlock);
}
}
}
|