forked from kbwbe/A2plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha2p_partinformation.py
90 lines (75 loc) · 3.85 KB
/
a2p_partinformation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#***************************************************************************
#* *
#* Copyright (c) 2018 kbwbe *
#* *
#* This program is free software; you can redistribute it and/or modify *
#* it under the terms of the GNU Lesser General Public License (LGPL) *
#* as published by the Free Software Foundation; either version 2 of *
#* the License, or (at your option) any later version. *
#* for detail see the LICENCE text file. *
#* *
#* This program is distributed in the hope that it will be useful, *
#* but WITHOUT ANY WARRANTY; without even the implied warranty of *
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
#* GNU Library General Public License for more details. *
#* *
#* You should have received a copy of the GNU Library General Public *
#* License along with this program; if not, write to the Free Software *
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
#* USA *
#* *
#***************************************************************************
import FreeCADGui,FreeCAD
import Spreadsheet
from PySide import QtGui, QtCore
import os, copy, time, sys, platform
import a2plib
from a2p_partlistglobals import PARTLIST_COLUMN_NAMES
from a2p_partlistglobals import (
PARTINFORMATION_SHEET_NAME,
PARTINFORMATION_SHEET_LABEL
)
#------------------------------------------------------------------------------
toolTip = \
'''
Create a spreadsheet for ordering or
logistics information.
The created spreadsheet can be found
within the tree view.
Please fill in your information.
This spreadsheet will be read out
by the parts list function of A2plus.
'''
class a2p_CreatePartInformationSheet_Command:
def Activated(self):
doc = FreeCAD.activeDocument()
if doc == None:
QtGui.QMessageBox.information( QtGui.QApplication.activeWindow(),
"No active document found!",
"You have to open a FCStd file first."
)
return
try:
found = doc.getObject(PARTINFORMATION_SHEET_NAME)
if found != None: return # object already exists
except:
pass # proceed and create the shett
# create a spreadsheet with a special reserved name...
ss = doc.addObject('Spreadsheet::Sheet',PARTINFORMATION_SHEET_NAME)
ss.Label = PARTINFORMATION_SHEET_LABEL
for idx,name in enumerate(PARTLIST_COLUMN_NAMES):
ss.set('A'+str(idx+1),name)
ss.set('B'+str(idx+1),'')
ss.setColumnWidth('A',220)
ss.setColumnWidth('B',300)
ss.setBackground('A1:A'+str(len(PARTLIST_COLUMN_NAMES)), (0.000000,1.000000,0.000000,1.000000))
ss.setBackground('B1:B'+str(len(PARTLIST_COLUMN_NAMES)), (0.85,0.85,0.85,1.000000))
doc.recompute()
def GetResources(self):
return {
'Pixmap' : ':/icons/a2p_PartsInfo.svg',
'MenuText': 'Create a spreadsheet for ordering or logistics information',
'ToolTip': toolTip
}
FreeCADGui.addCommand('a2p_CreatePartInformationSheet_Command', a2p_CreatePartInformationSheet_Command())
#------------------------------------------------------------------------------