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
|
#!/usr/bin/env python3
#
# QTVcp Widget
# Copyright (c) 2018 Chris Morley
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# 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 General Public License for more details.
###############################################################################
from PyQt5.QtWidgets import QToolButton, QMenu, QAction
from PyQt5.QtCore import pyqtProperty
from PyQt5.QtGui import QIcon
from qtvcp.widgets.widget_baseclass import _HalWidgetBase
from qtvcp.core import Status, Action, Info
from qtvcp import logger
# Instiniate the libraries with global reference
# STATUS gives us status messages from linuxcnc
# AUX_PRGM holds helper program loader
# INI holds ini details
# ACTION gives commands to linuxcnc
# LOG is for running code logging
STATUS = Status()
INFO = Info()
ACTION = Action()
LOG = logger.getLogger(__name__)
# Force the log level for this module
#LOG.setLevel(logger.DEBUG) # One of DEBUG, INFO, WARNING, ERROR, CRITICAL
class ActionToolButton(QToolButton, _HalWidgetBase):
def __init__(self, parent=None):
super(ActionToolButton, self).__init__(parent)
self._userView = True
def buildMenu(self):
if self._userView:
SettingMenu = QMenu(self)
self.settingMenu = SettingMenu
self.recordButton = QAction(QIcon('exit24.png'), 'Record View', self)
self.recordButton.triggered.connect(self.recordView)
SettingMenu.addAction(self.recordButton)
self.setMenu(SettingMenu)
self.clicked.connect(self.setView)
def _hal_init(self):
def homed_on_test():
return (STATUS.machine_is_on()
and (STATUS.is_all_homed() or INFO.NO_HOME_REQUIRED))
self.buildMenu()
def recordView(self):
ACTION.SET_GRAPHICS_VIEW('record-view')
def setView(self):
ACTION.SET_GRAPHICS_VIEW('set-recorded-view')
#########################################################################
# This is how designer can interact with our widget properties.
# designer will show the pyqtProperty properties in the editor
# it will use the get set and reset calls to do those actions
#
########################################################################
# user view
def setViewAction(self, state):
self._userView = state
def getViewAction(self):
return self._userView
userViewAction = pyqtProperty(bool, getViewAction, setViewAction)
# for testing without editor:
def main():
import sys
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
widget = AxisToolButton()
widget.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()
|