Files
create/src/Mod/Ship/InitGui.py
2015-10-16 11:13:09 +02:00

73 lines
3.2 KiB
Python

#***************************************************************************
#* *
#* Copyright (c) 2011, 2012 *
#* Jose Luis Cercos Pita <jlcercos@gmail.com> *
#* *
#* 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 *
#* *
#***************************************************************************
class ShipWorkbench(Workbench):
"""Ships design workbench."""
from shipUtils import Paths
import ShipGui
Icon = "Ship_Module.svg"
MenuText = "Ship"
ToolTip = ("Ship module provides some of the commonly used tool to design"
" ship forms")
def Initialize(self):
from PySide import QtCore, QtGui
try:
import Plot
except ImportError:
msg = QtGui.QApplication.translate(
"ship_console",
"Plot module is disabled, tools cannot graph output curves",
None,
QtGui.QApplication.UnicodeUTF8)
FreeCAD.Console.PrintMessage(msg + '\n')
# ToolBar
shiplist = ["Ship_LoadExample",
"Ship_CreateShip",
"Ship_OutlineDraw",
"Ship_AreasCurve",
"Ship_Hydrostatics"]
weightslist = ["Ship_Weight",
"Ship_Tank",
"Ship_Capacity",
"Ship_LoadCondition",
"Ship_GZ"]
self.appendToolbar(
str(QtCore.QT_TRANSLATE_NOOP("Ship", "Ship design")),
shiplist)
self.appendToolbar(
str(QtCore.QT_TRANSLATE_NOOP("Ship", "Weights")),
weightslist)
self.appendMenu(
str(QtCore.QT_TRANSLATE_NOOP("Ship", "Ship design")),
shiplist)
self.appendMenu(
str(QtCore.QT_TRANSLATE_NOOP("Ship", "Weights")),
weightslist)
Gui.addWorkbench(ShipWorkbench())