icon theme: add missing icons in size 16x16px

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5115 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
nuri
2017-11-26 21:13:56 +00:00
parent 79b578dcf7
commit fc4ecb5587
14 changed files with 43 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

BIN
ico/16x16/element-edit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 B

BIN
ico/16x16/element-new.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

BIN
ico/16x16/element.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 B

BIN
ico/16x16/folder-delete.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

BIN
ico/16x16/folder-edit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

BIN
ico/16x16/folder-open.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

View File

@@ -141,6 +141,10 @@ Clarification:
ico/16x16/east.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/edit-clear.png from https://www.brandeps.com (License CC BY-ND 3.0)
changes: icon color, icon rotation
ico/16x16/element.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/element-delete.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/element-edit.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/element-new.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/endline-circle.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/endline-diamond.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/endline-none.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
@@ -150,7 +154,10 @@ Clarification:
ico/16x16/folio-delete.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folio-new.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folio-properties.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folder-delete.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folder-edit.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folder-only-this.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folder-properties.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/folder-show-all.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/ground.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)
ico/16x16/label.png by Nuri from the QElectroTech team (License CC BY-ND 3.0)

View File

@@ -565,5 +565,13 @@
<file>ico/16x16/move.png</file>
<file>ico/22x22/titleblock-bottom.png</file>
<file>ico/22x22/titleblock-right.png</file>
<file>ico/16x16/element.png</file>
<file>ico/16x16/element-new.png</file>
<file>ico/16x16/element-delete.png</file>
<file>ico/16x16/element-edit.png</file>
<file>ico/16x16/folder-delete.png</file>
<file>ico/16x16/folder-edit.png</file>
<file>ico/16x16/folder-open.png</file>
<file>ico/16x16/folder-properties.png</file>
</qresource>
</RCC>

View File

@@ -138,7 +138,7 @@ void ElementsCollectionWidget::leaveEvent(QEvent *event)
void ElementsCollectionWidget::setUpAction()
{
m_open_dir = new QAction(QET::Icons::DocumentOpen, tr("Ouvrir le dossier correspondant"), this);
m_open_dir = new QAction(QET::Icons::FolderOpen, tr("Ouvrir le dossier correspondant"), this);
m_edit_element = new QAction(QET::Icons::ElementEdit, tr("Éditer l'élément"), this);
m_delete_element = new QAction(QET::Icons::ElementDelete, tr("Supprimer l'élément"), this);
m_delete_dir = new QAction(QET::Icons::FolderDelete, tr("Supprimer le dossier"), this);
@@ -146,9 +146,9 @@ void ElementsCollectionWidget::setUpAction()
m_edit_dir = new QAction(QET::Icons::FolderEdit, tr("Éditer le dossier"), this);
m_new_directory = new QAction(QET::Icons::FolderNew, tr("Nouveau dossier"), this);
m_new_element = new QAction(QET::Icons::ElementNew, tr("Nouvel élément"), this);
m_show_this_dir = new QAction(QET::Icons::FolderOnlyThis,tr("Afficher uniquement ce dossier"), this);
m_show_this_dir = new QAction(QET::Icons::FolderOnlyThis, tr("Afficher uniquement ce dossier"), this);
m_show_all_dir = new QAction(QET::Icons::FolderShowAll, tr("Afficher tous les dossiers"), this);
m_dir_propertie = new QAction(QET::Icons::Folder, tr("Propriété du dossier"), this);
m_dir_propertie = new QAction(QET::Icons::FolderProperties, tr("Propriété du dossier"), this);
}
/**

View File

@@ -43,7 +43,7 @@ ElementsPanelWidget::ElementsPanelWidget(QWidget *parent) : QWidget(parent) {
elements_panel = new ElementsPanel(this);
// initialise les actions
open_directory = new QAction(QET::Icons::DocumentOpen, tr("Ouvrir le dossier correspondant"), this);
open_directory = new QAction(QET::Icons::FolderOpen, tr("Ouvrir le dossier correspondant"), this);
copy_path = new QAction(QET::Icons::IC_CopyFile, tr("Copier le chemin"), this);
prj_activate = new QAction(QET::Icons::ProjectFile, tr("Basculer vers ce projet"), this);
prj_close = new QAction(QET::Icons::DocumentClose, tr("Fermer ce projet"), this);

View File

@@ -81,6 +81,7 @@ namespace QET {
QIcon ElementDelete;
QIcon ElementEdit;
QIcon ElementNew;
QIcon ElementSmall;
QIcon EndLineCircle;
QIcon EndLineDiamond;
QIcon EndLineNone;
@@ -92,6 +93,8 @@ namespace QET {
QIcon FolderEdit;
QIcon FolderNew;
QIcon FolderOnlyThis;
QIcon FolderOpen;
QIcon FolderProperties;
QIcon FolderShowAll;
QIcon Forbidden;
QIcon FullScreenEnter;
@@ -326,9 +329,13 @@ void QET::Icons::initIcons() {
Element .addFile(":/ico/breeze-icons/16x16/mimetypes/application-x-qet-element.png");
Element .addFile(":/ico/breeze-icons/22x22/mimetypes/application-x-qet-element.png");
Element .addFile(":/ico/breeze-icons/32x32/mimetypes/application-x-qet-element.png");
ElementDelete .addFile(":/ico/16x16/element-delete.png");
ElementDelete .addFile(":/ico/22x22/element-delete.png");
ElementEdit .addFile(":/ico/16x16/element-edit.png");
ElementEdit .addFile(":/ico/22x22/element-edit.png");
ElementNew .addFile(":/ico/16x16/element-new.png");
ElementNew .addFile(":/ico/22x22/element-new.png");
ElementSmall .addFile(":/ico/16x16/element.png");
EndLineCircle .addFile(":/ico/16x16/endline-circle.png");
EndLineDiamond .addFile(":/ico/16x16/endline-diamond.png");
EndLineNone .addFile(":/ico/16x16/endline-none.png");
@@ -336,11 +343,15 @@ void QET::Icons::initIcons() {
EndLineTriangle .addFile(":/ico/16x16/endline-triangle.png");
EPS .addFile(":/ico/32x32/image-x-eps.png");
Folder .addFile(":/ico/16x16/folder.png");
FolderDelete .addFile(":/ico/16x16/folder-delete.png");
FolderDelete .addFile(":/ico/22x22/folder-delete.png");
FolderEdit .addFile(":/ico/16x16/folder-edit.png");
FolderEdit .addFile(":/ico/22x22/folder-edit.png");
FolderNew .addFile(":/ico/16x16/folder-new.png");
FolderNew .addFile(":/ico/22x22/folder-new.png");
FolderOnlyThis .addFile(":/ico/16x16/folder-only-this.png");
FolderOpen .addFile(":/ico/16x16/folder-open.png");
FolderProperties .addFile(":/ico/16x16/folder-properties.png");
FolderShowAll .addFile(":/ico/16x16/folder-show-all.png");
Forbidden .addFile(":/ico/16x16/user-busy.png");
FullScreenEnter .addFile(":/ico/16x16/view-fullscreen.png");

View File

@@ -99,6 +99,8 @@ namespace QET {
extern QIcon FolderEdit;
extern QIcon FolderNew;
extern QIcon FolderOnlyThis;
extern QIcon FolderOpen;
extern QIcon FolderProperties;
extern QIcon FolderShowAll;
extern QIcon Forbidden;
extern QIcon FullScreenEnter;