forked from kbwbe/A2plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
a2p_partinformation.py
94 lines (79 loc) · 4.14 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
91
92
93
94
#***************************************************************************
#* *
#* 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 FreeCAD, FreeCADGui
import Spreadsheet
from PySide import QtGui, QtCore
import os, copy, time, sys, platform
from a2p_translateUtils import *
import a2plib
from a2p_partlistglobals import PARTLIST_COLUMN_NAMES
from a2p_partlistglobals import (
PARTINFORMATION_SHEET_NAME,
PARTINFORMATION_SHEET_LABEL
)
#------------------------------------------------------------------------------
toolTip = \
translate("A2plus_partinformation",
"""
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 is None:
QtGui.QMessageBox.information( QtGui.QApplication.activeWindow(),
translate("A2plus_partinformation","No active document found!"),
translate("A2plus_partinformation","You have to open a FCStd file first.")
)
return
try:
found = doc.getObject(PARTINFORMATION_SHEET_NAME)
if found is not 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()
FreeCAD.Console.PrintMessage("#" + translate("A2plus_partinformation", "PARTINFO") + "#" + translate("A2p_BoM", " spreadsheet has been created") + "\n")
def GetResources(self):
return {
'Pixmap' : ':/icons/a2p_PartsInfo.svg',
'MenuText': translate("A2plus_partinformation", "Create a spreadsheet for ordering or logistics information"),
'ToolTip' : toolTip
}
FreeCADGui.addCommand('a2p_CreatePartInformationSheet_Command', a2p_CreatePartInformationSheet_Command())
#------------------------------------------------------------------------------