From 7dd5d060156177b0ee05c81c96c709767aca1989 Mon Sep 17 00:00:00 2001 From: fahim Date: Wed, 17 Jun 2015 14:36:42 +0530 Subject: Subject: Changes location of image directory just to make it easy during packaging Description: Did the neccessary changes in python file to read the images from new location --- src/frontEnd/Application.py | 24 ++++++++++++------------ src/frontEnd/ProjectExplorer.py | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) (limited to 'src/frontEnd') diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index f570277c..01e445a9 100755 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -24,8 +24,8 @@ from projManagement.openProject import OpenProjectInfo from projManagement.newProject import NewProjectInfo from projManagement.Kicad import Kicad from frontEnd import ProjectExplorer -import Workspace -import DockArea +from frontEnd import Workspace +from frontEnd import DockArea import os import sys import time @@ -67,20 +67,20 @@ class Application(QtGui.QMainWindow): This function initialize Tool Bar """ #Top Tool bar - self.newproj = QtGui.QAction(QtGui.QIcon('../images/newProject.png'),'New Project',self) + self.newproj = QtGui.QAction(QtGui.QIcon('../../images/newProject.png'),'New Project',self) self.newproj.setShortcut('Ctrl+N') self.newproj.triggered.connect(self.new_project) #self.newproj.connect(self.newproj,QtCore.SIGNAL('triggered()'),self,QtCore.SLOT(self.new_project())) - self.openproj = QtGui.QAction(QtGui.QIcon('../images/openProject.png'),'Open Project',self) + self.openproj = QtGui.QAction(QtGui.QIcon('../../images/openProject.png'),'Open Project',self) self.openproj.setShortcut('Ctrl+O') self.openproj.triggered.connect(self.open_project) - self.exitproj = QtGui.QAction(QtGui.QIcon('../images/closeProject.png'),'Exit',self) + self.exitproj = QtGui.QAction(QtGui.QIcon('../../images/closeProject.png'),'Exit',self) self.exitproj.setShortcut('Ctrl+X') self.exitproj.triggered.connect(self.exit_project) - self.helpfile = QtGui.QAction(QtGui.QIcon('../images/helpProject.png'),'Help',self) + self.helpfile = QtGui.QAction(QtGui.QIcon('../../images/helpProject.png'),'Help',self) self.helpfile.setShortcut('Ctrl+H') self.helpfile.triggered.connect(self.help_project) @@ -91,22 +91,22 @@ class Application(QtGui.QMainWindow): self.topToolbar.addAction(self.helpfile) #Left Tool bar Action Widget - self.kicad = QtGui.QAction(QtGui.QIcon('../images/kicad.png'),'Open Schematic',self) + self.kicad = QtGui.QAction(QtGui.QIcon('../../images/kicad.png'),'Open Schematic',self) self.kicad.triggered.connect(self.obj_kicad.openSchematic) - self.conversion = QtGui.QAction(QtGui.QIcon('../images/ki-ng.png'),'Convert Kicad to Ngspice',self) + self.conversion = QtGui.QAction(QtGui.QIcon('../../images/ki-ng.png'),'Convert Kicad to Ngspice',self) self.conversion.triggered.connect(self.obj_kicad.openKicadToNgspice) - self.ngspice = QtGui.QAction(QtGui.QIcon('../images/ngspice.png'), 'Simulation', self) + self.ngspice = QtGui.QAction(QtGui.QIcon('../../images/ngspice.png'), 'Simulation', self) self.ngspice.triggered.connect(self.open_ngspice) - self.footprint = QtGui.QAction(QtGui.QIcon('../images/footprint.png'),'Footprint Editor',self) + self.footprint = QtGui.QAction(QtGui.QIcon('../../images/footprint.png'),'Footprint Editor',self) self.footprint.triggered.connect(self.obj_kicad.openFootprint) - self.pcb = QtGui.QAction(QtGui.QIcon('../images/pcb.png'),'PCB Layout',self) + self.pcb = QtGui.QAction(QtGui.QIcon('../../images/pcb.png'),'PCB Layout',self) self.pcb.triggered.connect(self.obj_kicad.openLayout) - self.model = QtGui.QAction(QtGui.QIcon('../images/model.png'),'Model Editor',self) + self.model = QtGui.QAction(QtGui.QIcon('../../images/model.png'),'Model Editor',self) self.model.triggered.connect(self.open_modelEditor) #Adding Action Widget to tool bar diff --git a/src/frontEnd/ProjectExplorer.py b/src/frontEnd/ProjectExplorer.py index 0b0ae31d..4cc6db54 100644 --- a/src/frontEnd/ProjectExplorer.py +++ b/src/frontEnd/ProjectExplorer.py @@ -17,13 +17,13 @@ class ProjectExplorer(QtGui.QWidget): #CSS self.treewidget.setStyleSheet(" \ QTreeView { border-radius: 15px; border: 1px solid gray; padding: 5px; width: 200px; height: 150px; } \ - QTreeView::branch:has-siblings:!adjoins-item { border-image: url(../images/vline.png) 0; } \ - QTreeView::branch:has-siblings:adjoins-item { border-image: url(../images/branch-more.png) 0; } \ - QTreeView::branch:!has-children:!has-siblings:adjoins-item { border-image: url(../images/branch-end.png) 0; } \ + QTreeView::branch:has-siblings:!adjoins-item { border-image: url(../../images/vline.png) 0; } \ + QTreeView::branch:has-siblings:adjoins-item { border-image: url(../../images/branch-more.png) 0; } \ + QTreeView::branch:!has-children:!has-siblings:adjoins-item { border-image: url(../../images/branch-end.png) 0; } \ QTreeView::branch:has-children:!has-siblings:closed, \ - QTreeView::branch:closed:has-children:has-siblings { border-image: none; image: url(../images/branch-closed.png); } \ + QTreeView::branch:closed:has-children:has-siblings { border-image: none; image: url(../../images/branch-closed.png); } \ QTreeView::branch:open:has-children:!has-siblings, \ - QTreeView::branch:open:has-children:has-siblings { border-image: none; image: url(../images/branch-open.png); } \ + QTreeView::branch:open:has-children:has-siblings { border-image: none; image: url(../../images/branch-open.png); } \ ") for parents, children in self.obj_appconfig.project_explorer.items(): -- cgit