|
|
@ -22,6 +22,7 @@ |
|
|
|
#include <QDragMoveEvent> |
|
|
|
#include <QDragMoveEvent> |
|
|
|
#include <QDragLeaveEvent> |
|
|
|
#include <QDragLeaveEvent> |
|
|
|
#include <QDropEvent> |
|
|
|
#include <QDropEvent> |
|
|
|
|
|
|
|
#include <QPaintEvent> |
|
|
|
#include <QMouseEvent> |
|
|
|
#include <QMouseEvent> |
|
|
|
#include <QApplication> |
|
|
|
#include <QApplication> |
|
|
|
#include <QFont> |
|
|
|
#include <QFont> |
|
|
@ -34,8 +35,10 @@ |
|
|
|
#include "main.h" |
|
|
|
#include "main.h" |
|
|
|
#include "GroupView.h" |
|
|
|
#include "GroupView.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
KeepassGroupView::KeepassGroupView(QWidget* parent):QTreeWidget(parent){ |
|
|
|
KeepassGroupView::KeepassGroupView(QWidget* parent):QTreeWidget(parent){ |
|
|
|
db=0; |
|
|
|
InsertionMarker=QLine(); |
|
|
|
|
|
|
|
db=NULL; |
|
|
|
LastHoverItem=NULL; |
|
|
|
LastHoverItem=NULL; |
|
|
|
setHeaderLabels(QStringList()<<tr("Gruppen")); |
|
|
|
setHeaderLabels(QStringList()<<tr("Gruppen")); |
|
|
|
} |
|
|
|
} |
|
|
@ -49,43 +52,61 @@ event->accept(); |
|
|
|
|
|
|
|
|
|
|
|
void KeepassGroupView:: dragMoveEvent ( QDragMoveEvent * event ){ |
|
|
|
void KeepassGroupView:: dragMoveEvent ( QDragMoveEvent * event ){ |
|
|
|
GroupViewItem* item=(GroupViewItem*)itemAt(event->pos()); |
|
|
|
GroupViewItem* item=(GroupViewItem*)itemAt(event->pos()); |
|
|
|
|
|
|
|
|
|
|
|
if(LastHoverItem){ |
|
|
|
if(LastHoverItem){ |
|
|
|
QFont f=LastHoverItem->font(0); |
|
|
|
QFont f=LastHoverItem->font(0); |
|
|
|
f.setBold(false); |
|
|
|
f.setBold(false); |
|
|
|
LastHoverItem->setFont(0,f); |
|
|
|
LastHoverItem->setFont(0,f); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsertionMarker=QLine(); |
|
|
|
|
|
|
|
|
|
|
|
if(item){ |
|
|
|
if(item){ |
|
|
|
|
|
|
|
QRect ItemRect=visualItemRect(item); |
|
|
|
if(!db->isParentGroup(item->pGroup,DragItem->pGroup) && DragItem!=item){ |
|
|
|
if(!db->isParentGroup(item->pGroup,DragItem->pGroup) && DragItem!=item){ |
|
|
|
QFont f=item->font(0); |
|
|
|
if((ItemRect.height()+ItemRect.y())-event->pos().y() > 4){ |
|
|
|
f.setBold(true); |
|
|
|
QFont f=item->font(0); |
|
|
|
item->setFont(0,f); |
|
|
|
f.setBold(true); |
|
|
|
LastHoverItem=item; |
|
|
|
item->setFont(0,f); |
|
|
|
event->setAccepted(true);} |
|
|
|
LastHoverItem=item; |
|
|
|
|
|
|
|
event->setAccepted(true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else{ |
|
|
|
|
|
|
|
LastHoverItem=NULL; |
|
|
|
|
|
|
|
InsertionMarker=QLine(ItemRect.x(),ItemRect.y()+ItemRect.height(), |
|
|
|
|
|
|
|
ItemRect.x()+ItemRect.width(),ItemRect.y()+ItemRect.height()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
else
|
|
|
|
else
|
|
|
|
event->setAccepted(false); |
|
|
|
event->setAccepted(false); |
|
|
|
} |
|
|
|
|
|
|
|
else{ |
|
|
|
|
|
|
|
LastHoverItem=NULL;} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else{ |
|
|
|
|
|
|
|
LastHoverItem=NULL; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
update(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void KeepassGroupView:: dragLeaveEvent ( QDragLeaveEvent * event ){ |
|
|
|
void KeepassGroupView:: dragLeaveEvent ( QDragLeaveEvent * event ){ |
|
|
|
|
|
|
|
InsertionMarker=QLine(); |
|
|
|
if(LastHoverItem){ |
|
|
|
if(LastHoverItem){ |
|
|
|
QFont f=LastHoverItem->font(0); |
|
|
|
QFont f=LastHoverItem->font(0); |
|
|
|
f.setBold(false); |
|
|
|
f.setBold(false); |
|
|
|
LastHoverItem->setFont(0,f); |
|
|
|
LastHoverItem->setFont(0,f); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
update(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void KeepassGroupView::dropEvent( QDropEvent * event ){ |
|
|
|
void KeepassGroupView::dropEvent( QDropEvent * event ){ |
|
|
|
|
|
|
|
InsertionMarker=QLine(); |
|
|
|
if(LastHoverItem){ |
|
|
|
if(LastHoverItem){ |
|
|
|
QFont f=LastHoverItem->font(0); |
|
|
|
QFont f=LastHoverItem->font(0); |
|
|
|
f.setBold(false); |
|
|
|
f.setBold(false); |
|
|
|
LastHoverItem->setFont(0,f); |
|
|
|
LastHoverItem->setFont(0,f); |
|
|
|
LastHoverItem=NULL; |
|
|
|
LastHoverItem=NULL; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
GroupViewItem* item=(GroupViewItem*)itemAt(event->pos()); |
|
|
|
GroupViewItem* item=(GroupViewItem*)itemAt(event->pos()); |
|
|
|
if(item) |
|
|
|
if(item) |
|
|
@ -132,6 +153,7 @@ void KeepassGroupView::mouseMoveEvent(QMouseEvent *event){ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void KeepassGroupView::updateItems(){ |
|
|
|
void KeepassGroupView::updateItems(){ |
|
|
|
|
|
|
|
|
|
|
|
clear(); |
|
|
|
clear(); |
|
|
|
Items.clear(); |
|
|
|
Items.clear(); |
|
|
|
for(int i=0; i<db->Groups.size();i++){ |
|
|
|
for(int i=0; i<db->Groups.size();i++){ |
|
|
@ -168,10 +190,23 @@ for(int i=Items.size()-1;i>=0;i--){ |
|
|
|
if(Items[i]->pGroup->Level==level){ |
|
|
|
if(Items[i]->pGroup->Level==level){ |
|
|
|
return Items[i];} |
|
|
|
return Items[i];} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return Items.back(); |
|
|
|
return Items.back(); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void KeepassGroupView::paintEvent(QPaintEvent* event){ |
|
|
|
|
|
|
|
QTreeWidget::paintEvent(event); |
|
|
|
|
|
|
|
QPainter painter(viewport()); |
|
|
|
|
|
|
|
QPen pen(QColor(100,100,100)); |
|
|
|
|
|
|
|
pen.setWidth(2); |
|
|
|
|
|
|
|
pen.setStyle(Qt::DotLine); |
|
|
|
|
|
|
|
painter.setPen(pen); |
|
|
|
|
|
|
|
if(!InsertionMarker.isNull()){ |
|
|
|
|
|
|
|
painter.drawLine(InsertionMarker); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GroupViewItem::GroupViewItem(QTreeWidget *parent):QTreeWidgetItem(parent){ |
|
|
|
GroupViewItem::GroupViewItem(QTreeWidget *parent):QTreeWidgetItem(parent){ |
|
|
|