Home
last modified time | relevance | path

Searched refs:BaseTool (Results 1 – 25 of 203) sorted by relevance

123456789

/dports/graphics/pencil2d/pencil-0.6.6/core_lib/src/tool/
H A Dbasetool.cpp32 bool BaseTool::msIsAdjusting = false;
35 QString BaseTool::TypeName(ToolType type) in TypeName()
56 BaseTool::BaseTool(QObject* parent) : QObject(parent) in BaseTool() function in BaseTool
69 QCursor BaseTool::cursor() in cursor()
110 bool BaseTool::isDrawingTool() in isDrawingTool()
243 bool BaseTool::isActive() in isActive()
318 void BaseTool::stopAdjusting() in stopAdjusting()
371 QPointF BaseTool::getCurrentPixel() in getCurrentPixel()
376 QPointF BaseTool::getCurrentPoint() in getCurrentPoint()
381 QPointF BaseTool::getLastPixel() in getLastPixel()
[all …]
/dports/graphics/pinta/pinta-1.7.1/Pinta.Core/Managers/
H A DToolManager.cs39 private List<BaseTool> Tools;
49 Tools = new List<BaseTool> (); in ToolManager()
54 public void AddTool (BaseTool tool) in AddTool()
75 foreach (BaseTool tool in Tools) { in RemoveInstanceOfTool()
101 BaseTool t = FindTool (tb.Label); in HandlePbToolItemClicked()
117 foreach (BaseTool tool in Tools) { in FindTool()
126 public BaseTool CurrentTool {
137 public BaseTool PreviousTool {
174 BaseTool t = FindTool (tool); in SetCurrentTool()
247 public override int Compare (BaseTool x, BaseTool y) in Compare()
[all …]
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/general/
H A DBaseTool.cpp33 BaseTool::BaseTool(const QString& menuName, QObject* parent) in BaseTool() function in Rosegarden::BaseTool
39 BaseTool::~BaseTool() in ~BaseTool()
44 void BaseTool::ready() in ready()
47 void BaseTool::stow() in stow()
50 void BaseTool::showMenu() in showMenu()
64 QString BaseTool::getCurrentContextHelp() const in getCurrentContextHelp()
69 void BaseTool::setContextHelp(const QString &help) in setContextHelp()
H A DBaseToolBox.h32 class BaseTool; variable
46 virtual BaseTool* getTool(QString toolName);
52 virtual BaseTool* createTool(QString toolName) = 0;
54 QHash<QString, BaseTool*> m_tools;
H A DBaseToolBox.cpp34 BaseTool *
37 BaseTool* tool = m_tools[toolName]; in getTool()
41 connect(tool, &BaseTool::showContextHelp, in getTool()
H A DBaseTool.h37 class BaseTool : public QObject
45 ~BaseTool() override;
80 BaseTool(const QString &menuName, QObject *parent);
/dports/graphics/pencil2d/pencil-0.6.6/core_lib/src/managers/
H A Dtoolmanager.h38 BaseTool* currentTool() { return mCurrentTool; } in currentTool()
39 BaseTool* getTool(ToolType eToolType);
74 BaseTool* mCurrentTool = nullptr;
77 QHash<ToolType, BaseTool*> mToolSetHash;
H A Dtoolmanager.cpp54 foreach(BaseTool* pTool, mToolSetHash.values()) in init()
74 BaseTool* ToolManager::getTool(ToolType eToolType) in getTool()
107 foreach(BaseTool* tool, mToolSetHash) in cleanupAllToolsData()
119 foreach(BaseTool* tool, mToolSetHash) in resetAllTools()
/dports/sysutils/conan/conan-1.44.0/conans/client/tools/
H A Dsystem_pm.py243 class BaseTool(object): class
258 class NullTool(BaseTool):
273 class AptTool(BaseTool):
310 class YumTool(BaseTool):
354 class BrewTool(BaseTool):
369 class PkgTool(BaseTool):
385 class PkgUtilTool(BaseTool):
401 class ChocolateyTool(BaseTool):
417 class PacManTool(BaseTool):
440 class ZypperTool(BaseTool):
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/build/android/pylib/
H A Dvalgrind_tools.py40 class BaseTool(object): class
84 class AddressSanitizerTool(BaseTool):
133 class ValgrindTool(BaseTool):
247 return BaseTool()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/build/android/pylib/
H A Dvalgrind_tools.py40 class BaseTool(object): class
84 class AddressSanitizerTool(BaseTool):
133 class ValgrindTool(BaseTool):
247 return BaseTool()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/build/android/pylib/
H A Dvalgrind_tools.py40 class BaseTool(object): class
84 class AddressSanitizerTool(BaseTool):
133 class ValgrindTool(BaseTool):
247 return BaseTool()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/build/android/pylib/
H A Dvalgrind_tools.py40 class BaseTool(object): class
84 class AddressSanitizerTool(BaseTool):
133 class ValgrindTool(BaseTool):
247 return BaseTool()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/build/android/pylib/
H A Dvalgrind_tools.py40 class BaseTool(object): class
84 class AddressSanitizerTool(BaseTool):
133 class ValgrindTool(BaseTool):
247 return BaseTool()
/dports/graphics/pinta/pinta-1.7.1/Pinta.Core/EventArgs/
H A DToolEventArgs.cs34 public BaseTool Tool { get; private set; }
36 public ToolEventArgs (BaseTool tool) in ToolEventArgs()
/dports/graphics/pencil2d/pencil-0.6.6/core_lib/src/
H A Dselectionpainter.h25 class BaseTool; variable
37 …void paint(QPainter& painter, const Object* object, int layerIndex, BaseTool* tool, TransformParam…
/dports/graphics/pencil2d/pencil-0.6.6/app/src/
H A Dtooloptionwidget.h35 class BaseTool; variable
53 void setVisibility(BaseTool*);
/dports/graphics/pinta/pinta-1.7.1/Pinta.Core/Classes/
H A DBaseTool.cs42 public abstract class BaseTool class
63 protected BaseTool () in BaseTool() method in Pinta.Core.BaseTool
70 static BaseTool () in BaseTool() method in Pinta.Core.BaseTool
183 public void DoDeactivated (BaseTool newTool) in DoDeactivated()
318 protected virtual void OnDeactivated(BaseTool newTool) in OnDeactivated()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/editors/notation/
H A DNotationToolBox.cpp45 BaseTool * in cmt_mpack_consume_double_tag()
109 for (QHash<QString, BaseTool *>::iterator i = m_tools.begin(); in cmt_mpack_consume_double_tag()
H A DNotationTool.cpp33 BaseTool(menuName, widget), in compare()
41 BaseTool("", widget),
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/pylib/
H A Dvalgrind_tools.py27 class AddressSanitizerTool(base_tool.BaseTool):
89 return base_tool.BaseTool()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/build/android/pylib/
H A Dvalgrind_tools.py27 class AddressSanitizerTool(base_tool.BaseTool):
89 return base_tool.BaseTool()
/dports/lang/v8/v8-9.6.180.12/build/android/pylib/
H A Dvalgrind_tools.py28 class AddressSanitizerTool(base_tool.BaseTool):
90 return base_tool.BaseTool()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/pylib/
H A Dvalgrind_tools.py27 class AddressSanitizerTool(base_tool.BaseTool):
89 return base_tool.BaseTool()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/editors/matrix/
H A DMatrixToolBox.cpp50 BaseTool *
103 for (QHash<QString, BaseTool *>::iterator i = m_tools.begin(); in setScene()

123456789