ui: Updated style of QtBookmarkBrowser

This commit is contained in:
Eberhard Graether
2017-03-21 17:05:23 +01:00
parent 8ffc2f281c
commit faf0ab3ac7
3 changed files with 14 additions and 15 deletions
+2 -2
View File
@@ -48,12 +48,12 @@ QtBookmark::QtBookmark()
m_activateButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
buttonsLayout->addWidget(m_activateButton);
buttonsLayout->addStretch();
m_dateLabel = new QLabel();
m_dateLabel->setObjectName("date_label");
buttonsLayout->addWidget(m_dateLabel);
buttonsLayout->addStretch();
m_editButton = new QPushButton();
m_editButton->setObjectName("edit_button");
m_editButton->setToolTip("Edit bookmark");
@@ -24,7 +24,7 @@ QtBookmarkCategory::QtBookmarkCategory()
m_expandButton->setToolTip("Show/Hide bookmarks in this category");
m_expandButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
m_expandButton->setIcon(QPixmap((ResourcePaths::getGuiPath() + "bookmark_view/images/arrow_down.png").c_str()));
m_expandButton->setIconSize(QSize(8, 8));
m_expandButton->setIconSize(QSize(10, 10));
layout->addWidget(m_expandButton);
connect(m_expandButton, SIGNAL(clicked()), this, SLOT(expandClicked()));
@@ -93,12 +93,12 @@ void QtBookmarkCategory::updateArrow()
if (m_treeItem->isExpanded())
{
QPixmap pixmap((ResourcePaths::getGuiPath() + "bookmark_view/images/arrow_down.png").c_str());
m_expandButton->setIcon(QIcon(utility::colorizePixmap(pixmap, "white")));
m_expandButton->setIcon(QIcon(utility::colorizePixmap(pixmap, "black")));
}
else
{
QPixmap pixmap((ResourcePaths::getGuiPath() + "bookmark_view/images/arrow_right.png").c_str());
m_expandButton->setIcon(QIcon(utility::colorizePixmap(pixmap, "white")));
m_expandButton->setIcon(QIcon(utility::colorizePixmap(pixmap, "black")));
}
}
}