Modification d'icones dans le panel d'elements.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@617 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2009-05-08 18:49:59 +00:00
parent 6373295a4f
commit 871d89692e
14 changed files with 15 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 726 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
ico/22x22/element-edit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
ico/22x22/element-new.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -14,7 +14,6 @@
<file>ico/16x16/dialog-cancel.png</file>
<file>ico/16x16/dialog-ok.png</file>
<file>ico/16x16/document-close.png</file>
<file>ico/16x16/document-edit.png</file>
<file>ico/16x16/document-export.png</file>
<file>ico/16x16/document-import.png</file>
<file>ico/16x16/document-new.png</file>
@@ -88,8 +87,6 @@
<file>ico/22x22/dialog-information.png</file>
<file>ico/22x22/dialog-ok.png</file>
<file>ico/22x22/document-close.png</file>
<file>ico/22x22/document-delete.png</file>
<file>ico/22x22/document-edit.png</file>
<file>ico/22x22/document-export.png</file>
<file>ico/22x22/document-import.png</file>
<file>ico/22x22/document-new.png</file>
@@ -109,6 +106,9 @@
<file>ico/22x22/edit-redo.png</file>
<file>ico/22x22/edit-select-all.png</file>
<file>ico/22x22/edit-undo.png</file>
<file>ico/22x22/element-delete.png</file>
<file>ico/22x22/element-edit.png</file>
<file>ico/22x22/element-new.png</file>
<file>ico/22x22/ellipse.png</file>
<file>ico/22x22/folder-delete.png</file>
<file>ico/22x22/folder-edit.png</file>

View File

@@ -53,9 +53,9 @@ ElementsPanelWidget::ElementsPanelWidget(QWidget *parent) : QWidget(parent) {
edit_category = new QAction(QET::Icons::FolderEdit, tr("\311diter la cat\351gorie"), this);
delete_category = new QAction(QET::Icons::FolderDelete, tr("Supprimer la cat\351gorie"), this);
delete_collection = new QAction(QET::Icons::FolderDelete, tr("Vider la collection"), this);
new_element = new QAction(QET::Icons::DocumentNew, tr("Nouvel \351l\351ment"), this);
edit_element = new QAction(QET::Icons::DocumentEdit, tr("\311diter l'\351l\351ment"), this);
delete_element = new QAction(QET::Icons::DocumentDelete, tr("Supprimer l'\351l\351ment"), this);
new_element = new QAction(QET::Icons::ElementNew, tr("Nouvel \351l\351ment"), this);
edit_element = new QAction(QET::Icons::ElementEdit, tr("\311diter l'\351l\351ment"), this);
delete_element = new QAction(QET::Icons::ElementDelete, tr("Supprimer l'\351l\351ment"), this);
prj_close = new QAction(QET::Icons::DocumentClose, tr("Fermer ce projet"), this);
prj_edit_prop = new QAction(QET::Icons::DialogInformation, tr("Propri\351t\351s du projet"), this);
prj_prop_diagram = new QAction(QET::Icons::DialogInformation, tr("Propri\351t\351s du sch\351ma"), this);

View File

@@ -47,8 +47,6 @@ namespace QET {
QIcon DialogInformation;
QIcon DialogOk;
QIcon DocumentClose;
QIcon DocumentDelete;
QIcon DocumentEdit;
QIcon DocumentExport;
QIcon DocumentImport;
QIcon DocumentNew;
@@ -69,6 +67,9 @@ namespace QET {
QIcon EditRedo;
QIcon EditSelectAll;
QIcon EditUndo;
QIcon ElementDelete;
QIcon ElementEdit;
QIcon ElementNew;
QIcon EndLineCircle;
QIcon EndLineDiamond;
QIcon EndLineNone;
@@ -176,9 +177,6 @@ void QET::Icons::initIcons() {
DialogOk .addFile(":/ico/22x22/dialog-ok.png");
DocumentClose .addFile(":/ico/16x16/document-close.png");
DocumentClose .addFile(":/ico/22x22/document-close.png");
DocumentDelete .addFile(":/ico/22x22/document-delete.png");
DocumentEdit .addFile(":/ico/16x16/document-edit.png");
DocumentEdit .addFile(":/ico/22x22/document-edit.png");
DocumentExport .addFile(":/ico/16x16/document-export.png");
DocumentExport .addFile(":/ico/22x22/document-export.png");
DocumentImport .addFile(":/ico/16x16/document-import.png");
@@ -218,6 +216,9 @@ void QET::Icons::initIcons() {
EditSelectAll .addFile(":/ico/22x22/edit-select-all.png");
EditUndo .addFile(":/ico/16x16/edit-undo.png");
EditUndo .addFile(":/ico/22x22/edit-undo.png");
ElementDelete .addFile(":/ico/22x22/element-delete.png");
ElementEdit .addFile(":/ico/22x22/element-edit.png");
ElementNew .addFile(":/ico/22x22/element-new.png");
EndLineCircle .addFile(":/ico/16x16/endline-circle.png");
EndLineDiamond .addFile(":/ico/16x16/endline-diamond.png");
EndLineNone .addFile(":/ico/16x16/endline-none.png");

View File

@@ -51,8 +51,6 @@ namespace QET {
extern QIcon DialogInformation;
extern QIcon DialogOk;
extern QIcon DocumentClose;
extern QIcon DocumentDelete;
extern QIcon DocumentEdit;
extern QIcon DocumentExport;
extern QIcon DocumentImport;
extern QIcon DocumentNew;
@@ -73,6 +71,9 @@ namespace QET {
extern QIcon EditRedo;
extern QIcon EditSelectAll;
extern QIcon EditUndo;
extern QIcon ElementDelete;
extern QIcon ElementEdit;
extern QIcon ElementNew;
extern QIcon EndLineCircle;
extern QIcon EndLineDiamond;
extern QIcon EndLineNone;