LeechCraft 0.6.70-14794-g33744ae6ce
Modular cross-platform feature rich live environment.
Loading...
Searching...
No Matches
ijobholderrepresentationhandler.h
Go to the documentation of this file.
1/**********************************************************************
2 * LeechCraft - modular cross-platform feature rich internet client.
3 * Copyright (C) 2006-2014 Georg Rudoy
4 *
5 * Distributed under the Boost Software License, Version 1.0.
6 * (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
7 **********************************************************************/
8
9#pragma once
10
11#include <memory>
12
13class QModelIndex;
14
15template<typename>
16class QList;
17
19{
20public:
22
23 virtual void HandleCurrentChanged (const QModelIndex&) {}
24 virtual void HandleCurrentColumnChanged (const QModelIndex&) {}
25 virtual void HandleCurrentRowChanged (const QModelIndex&) {}
27
28 virtual void HandleActivated (const QModelIndex&) {}
29 virtual void HandleClicked (const QModelIndex&) {}
30 virtual void HandleDoubleClicked (const QModelIndex&) {}
31 virtual void HandleEntered (const QModelIndex&) {}
32 virtual void HandlePressed (const QModelIndex&) {}
33};
34
35using IJobHolderRepresentationHandler_ptr = std::shared_ptr<IJobHolderRepresentationHandler>;
virtual void HandleActivated(const QModelIndex &)
virtual void HandleCurrentChanged(const QModelIndex &)
virtual void HandleCurrentColumnChanged(const QModelIndex &)
virtual ~IJobHolderRepresentationHandler()=default
virtual void HandleSelectedRowsChanged(const QList< QModelIndex > &)
virtual void HandleClicked(const QModelIndex &)
virtual void HandleEntered(const QModelIndex &)
virtual void HandleCurrentRowChanged(const QModelIndex &)
virtual void HandleDoubleClicked(const QModelIndex &)
virtual void HandlePressed(const QModelIndex &)
std::shared_ptr< IJobHolderRepresentationHandler > IJobHolderRepresentationHandler_ptr
Definition: ijobholder.h:203