All: Reformat according to new standard

This commit is contained in:
pre-commit-ci[bot]
2025-11-11 13:49:01 +01:00
committed by Kacper Donat
parent eafd18dac0
commit 25c3ba7338
2390 changed files with 154630 additions and 115818 deletions

View File

@@ -21,8 +21,7 @@
***************************************************************************/
# include <QMouseEvent>
#include <QMouseEvent>
#include "TreeView.h"
@@ -36,50 +35,53 @@
using namespace Gui;
TreeView::TreeView(QWidget* parent)
: QTreeView(parent)
: QTreeView(parent)
{
setModel(new DocumentModel(this));
QModelIndex root = this->model()->index(0,0,QModelIndex());
QModelIndex root = this->model()->index(0, 0, QModelIndex());
this->setExpanded(root, true);
this->setDragEnabled(true);
this->setAcceptDrops(true);
this->setDropIndicatorShown(false);
this->setRootIsDecorated(false);
this->setSelectionMode(QAbstractItemView::ExtendedSelection);
this->setMouseTracking(true); // needed for itemEntered() to work
this->setMouseTracking(true); // needed for itemEntered() to work
}
TreeView::~TreeView() = default;
void TreeView::mouseDoubleClickEvent (QMouseEvent * event)
void TreeView::mouseDoubleClickEvent(QMouseEvent* event)
{
QModelIndex index = indexAt(event->pos());
if (!index.isValid() || index.internalPointer() == Application::Instance)
if (!index.isValid() || index.internalPointer() == Application::Instance) {
return;
}
Base::BaseClass* item = nullptr;
item = static_cast<Base::BaseClass*>(index.internalPointer());
if (item->is<Document>()) {
QTreeView::mouseDoubleClickEvent(event);
const Gui::Document* doc = static_cast<Gui::Document*>(item);
MDIView *view = doc->getActiveView();
if (!view)
MDIView* view = doc->getActiveView();
if (!view) {
return;
}
getMainWindow()->setActiveWindow(view);
}
else if (item->isDerivedFrom<ViewProvider>()) {
if (!static_cast<ViewProvider*>(item)->doubleClicked())
if (!static_cast<ViewProvider*>(item)->doubleClicked()) {
QTreeView::mouseDoubleClickEvent(event);
}
}
}
void TreeView::rowsInserted (const QModelIndex & parent, int start, int end)
void TreeView::rowsInserted(const QModelIndex& parent, int start, int end)
{
QTreeView::rowsInserted(parent, start, end);
if (parent.isValid()) {
auto ptr = static_cast<Base::BaseClass*>(parent.internalPointer());
// type is defined in DocumentModel.cpp
if (ptr->getTypeId() == Base::Type::fromName("Gui::ApplicationIndex")) {
for (int i=start; i<=end;i++) {
for (int i = start; i <= end; i++) {
QModelIndex document = this->model()->index(i, 0, parent);
this->expand(document);
}
@@ -88,4 +90,3 @@ void TreeView::rowsInserted (const QModelIndex & parent, int start, int end)
}
#include "moc_TreeView.cpp"