Home
last modified time | relevance | path

Searched refs:ViewInterface (Results 1 – 25 of 160) sorted by relevance

1234567

/dports/sysutils/glogg/glogg-1.1.4/src/
H A Dsession.h35 class ViewInterface; variable
65 ViewInterface* open( const std::string& file_name,
66 std::function<ViewInterface*()> view_factory );
69 void close( const ViewInterface* view );
75 std::vector<std::pair<std::string, ViewInterface*>> restore(
76 std::function<ViewInterface*()> view_factory,
92 std::string getFilename( const ViewInterface* view ) const;
106 ViewInterface* view;
110 ViewInterface* openAlways( const std::string& file_name,
111 std::function<ViewInterface*()> view_factory,
[all …]
H A Dsession.cpp54 [&](const std::pair<const ViewInterface*, OpenFile>& o) in getViewIfOpen()
63 ViewInterface* Session::open( const std::string& file_name, in open()
64 std::function<ViewInterface*()> view_factory ) in open()
66 ViewInterface* view = nullptr; in open()
79 void Session::close( const ViewInterface* view ) in close()
85 std::tuple<const ViewInterface*, in save()
95 const ViewInterface* view_object; in save()
116 std::function<ViewInterface*()> view_factory, in restore()
125 std::vector<std::pair<std::string, ViewInterface*>> result; in restore()
175 std::function<ViewInterface*()> view_factory, in openAlways()
[all …]
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/plugins/interfaces/
H A Dkmmviewinterface.cpp36 ViewInterface(parent, name), in KMMViewInterface()
39 connect(m_view, &KMyMoneyView::accountSelected, this, &ViewInterface::accountSelected); in KMMViewInterface()
40 connect(m_view, &KMyMoneyView::transactionsSelected, this, &ViewInterface::transactionsSelected); in KMMViewInterface()
42 this, &ViewInterface::accountReconciled); in KMMViewInterface()
46 connect(m_view, &KMyMoneyView::viewStateChanged, this, &ViewInterface::viewStateChanged); in KMMViewInterface()
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/plugins/
H A Dviewinterface.cpp29 KMyMoneyPlugin::ViewInterface::ViewInterface(QObject* parent, const char* name) : in ViewInterface() function in KMyMoneyPlugin::ViewInterface
35 KMyMoneyPlugin::ViewInterface::~ViewInterface() in ~ViewInterface()
H A Dviewinterface.h61 class KMM_PLUGIN_EXPORT ViewInterface : public QObject
66 explicit ViewInterface(QObject* parent, const char* name = 0);
67 virtual ~ViewInterface();
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/felogin/Classes/Event/
H A DModifyLoginFormViewEvent.php20 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
28 * @var ViewInterface
36 public function __construct(ViewInterface $view)
44 public function getView(): ViewInterface
H A DAbstractConfirmedEvent.php20 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
35 * @var ViewInterface
43 public function __construct(LoginController $controller, ViewInterface $view)
57 public function getView(): ViewInterface
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/felogin/Classes/Event/
H A DModifyLoginFormViewEvent.php20 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
28 * @var ViewInterface
32 public function __construct(ViewInterface $view)
37 public function getView(): ViewInterface
H A DAbstractConfirmedEvent.php20 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
35 * @var ViewInterface
39 public function __construct(LoginController $controller, ViewInterface $view)
50 public function getView(): ViewInterface
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/11.5/
H A DDeprecation-95222-ExtbaseViewInterface.rst4 Deprecation: #95222 - Extbase ViewInterface
13 the interface :php:`TYPO3\CMS\Extbase\Mvc\View\ViewInterface` has been marked
32 The extension scanner will find usages of Extbase :php:`ViewInterface` as a strong match.
38 Some instances may rely on extensions that type hint :php:`ViewInterface`,
47 Apart from that, usages of `TYPO3\CMS\Extbase\Mvc\View\ViewInterface` should be changed
49 related classes, or to the less specific :php:`TYPO3Fluid\Fluid\View\ViewInterface`.
51 If using a custom view implementing :php:`ViewInterface`,
/dports/www/typo3-9/typo3_src-9.5.31/vendor/typo3fluid/fluid/src/Core/ViewHelper/
H A DViewHelperVariableContainer.php9 use TYPO3Fluid\Fluid\View\ViewInterface; alias
28 * @var ViewInterface
144 * @param ViewInterface $view View to set
147 public function setView(ViewInterface $view)
157 * @return ViewInterface The View
/dports/www/typo3-10/typo3_src-10.4.25/vendor/typo3fluid/fluid/src/Core/ViewHelper/
H A DViewHelperVariableContainer.php9 use TYPO3Fluid\Fluid\View\ViewInterface; alias
28 * @var ViewInterface
144 * @param ViewInterface $view View to set
147 public function setView(ViewInterface $view)
157 * @return ViewInterface The View
/dports/www/typo3-11/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/
H A DViewHelperVariableContainer.php9 use TYPO3Fluid\Fluid\View\ViewInterface; alias
28 * @var ViewInterface
144 * @param ViewInterface $view View to set
147 public function setView(ViewInterface $view)
157 * @return ViewInterface|null The View, or null if view was not set
/dports/www/typo3-11/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/
H A DViewInterface.php14 interface ViewInterface interface
23 * @return ViewInterface an instance of $this, to enable chaining
32 * @return ViewInterface an instance of $this, to enable chaining
/dports/www/typo3-9/typo3_src-9.5.31/vendor/typo3fluid/fluid/src/View/
H A DViewInterface.php14 interface ViewInterface interface
23 * @return ViewInterface an instance of $this, to enable chaining
32 * @return ViewInterface an instance of $this, to enable chaining
/dports/www/typo3-10/typo3_src-10.4.25/vendor/typo3fluid/fluid/src/View/
H A DViewInterface.php14 interface ViewInterface interface
23 * @return ViewInterface an instance of $this, to enable chaining
32 * @return ViewInterface an instance of $this, to enable chaining
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extbase/Classes/Mvc/Controller/
H A DActionController.php21 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
45 * @var ViewInterface
323 if ($actionResult === null && $this->view instanceof ViewInterface) {
346 * @return ViewInterface
352 /** @var ViewInterface $view */
360 /** @var ViewInterface $view */
384 * @param ViewInterface $view
386 protected function setViewConfiguration(ViewInterface $view)
494 * @param ViewInterface $view The view to be initialized
496 protected function initializeView(ViewInterface $view)
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Mvc/View/
H A DGenericViewResolver.php53 …c function resolve(string $controllerObjectName, string $actionName, string $format): ViewInterface
56 /** @var ViewInterface $view */
61 /** @var ViewInterface $view */
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/recordlist/Classes/View/
H A DRecordSearchBoxComponent.php22 use TYPO3Fluid\Fluid\View\ViewInterface; alias
31 protected ViewInterface $view;
36 public function __construct(ViewInterface $view = null)
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/recordlist/Classes/LinkHandler/
H A DAbstractLinkHandler.php24 use TYPO3Fluid\Fluid\View\ViewInterface; alias
58 * @var ViewInterface
133 public function setView(ViewInterface $view): void
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extensionmanager/Classes/Controller/
H A DUpdateScriptController.php19 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
30 * @param ViewInterface $view
32 protected function initializeView(ViewInterface $view)
H A DDistributionController.php19 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
43 * @param ViewInterface $view
45 protected function initializeView(ViewInterface $view)
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/extensionmanager/Classes/Controller/
H A DUpdateScriptController.php21 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
33 * @param ViewInterface $view
35 protected function initializeView(ViewInterface $view)
H A DDistributionController.php22 use TYPO3\CMS\Extbase\Mvc\View\ViewInterface; alias
47 * @param ViewInterface $view
49 protected function initializeView(ViewInterface $view)
/dports/games/ksudoku/ksudoku-21.12.3/src/gui/views/
H A Dksview.h50 class ViewInterface {
52 virtual ~ViewInterface() {} in ~ViewInterface()
122 ViewInterface* m_view;

1234567