Add some action icons.

This commit is contained in:
Felix Geyer 2012-05-27 12:46:22 +02:00
parent de95b6c347
commit 264c69d046
12 changed files with 20 additions and 3 deletions

16
COPYING
View File

@ -32,9 +32,19 @@ Copyright: 2006, Otto Salminen
2011, Felix Geyer <debfx@fobos.de>
License: GPL-2
Files: share/icons/application/22x22/action/dialog-close.png, share/icons/application/22x22/action/dialog-ok.png,
share/icons/application/22x22/status/dialog-error.png, share/icons/application/22x22/status/dialog-information.png,
share/icons/application/22x22/status/dialog-warning.png
Files: share/icons/application/*/actions/entry-clone.png, share/icons/application/*/actions/entry-edit.png,
share/icons/application/*/actions/entry-new.png, share/icons/application/*/actions/password-generate.png
Copyright: 2003-2004, David Vignoni <david@icon-king.com>
License: LGPL-2.1
Files: share/icons/application/*/actions/entry-delete.png
Copyright: 2003-2004, David Vignoni <david@icon-king.com>
2012, Felix Geyer <debfx@fobos.de>
License: LGPL-2.1
Files: share/icons/application/*/action/dialog-close.png, share/icons/application/*/action/dialog-ok.png,
share/icons/application/*/status/dialog-error.png, share/icons/application/*/status/dialog-information.png,
share/icons/application/*/status/dialog-warning.png, share/icons/application/*/actions/system-search.png
Copyright: 2007, Nuno Pinheiro <nuno@oxygen-icons.org>
2007, David Vignoni <david@icon-king.com>
2007, David Miller <miller@oxygen-icons.org>

Binary file not shown.

After

Width:  |  Height:  |  Size: 850 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1015 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 755 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -44,6 +44,13 @@ MainWindow::MainWindow()
m_ui->actionEntryCopyUsername->setShortcut(Qt::CTRL + Qt::Key_B);
m_ui->actionEntryCopyPassword->setShortcut(Qt::CTRL + Qt::Key_C);
m_ui->actionEntryNew->setIcon(dataPath()->icon("actions", "entry-new", false));
m_ui->actionEntryClone->setIcon(dataPath()->icon("actions", "entry-clone", false));
m_ui->actionEntryEdit->setIcon(dataPath()->icon("actions", "entry-edit", false));
m_ui->actionEntryDelete->setIcon(dataPath()->icon("actions", "entry-delete", false));
m_ui->actionSearch->setIcon(dataPath()->icon("actions", "system-search", true));
connect(m_ui->tabWidget, SIGNAL(entrySelectionChanged(bool)),
SLOT(setMenuActionState()));
connect(m_ui->tabWidget, SIGNAL(currentWidgetModeChanged(DatabaseWidget::Mode)),