Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
CEventSelected.hpp
Go to the documentation of this file.
1#ifndef LIBS_GUI_CEVENTSELECTED_HPP_
2#define LIBS_GUI_CEVENTSELECTED_HPP_
3
4#include "CEventClick.hpp"
5
7{
8public:
9 CEventSelected(CDialog *dlgFather, AbstractComponentGUI *component, uint64_t indColSelected,
10 uint64_t indRowSelected);
11 ~CEventSelected() override;
12
13 [[nodiscard]] uint64_t getColSelected() const;
14 [[nodiscard]] uint64_t getRowSelected() const;
15
16private:
19};
20
21#endif /* LIBS_GUI_CEVENTSELECTED_HPP_ */
Definition AbstractComponentGUI.hpp:30
Definition CDialog.hpp:21
Definition CEventClick.hpp:9
Definition CEventSelected.hpp:7
uint64_t getRowSelected() const
Definition CEventSelected.cpp:17
uint64_t m_indColSelected
Definition CEventSelected.hpp:17
~CEventSelected() override
CEventSelected(CDialog *dlgFather, AbstractComponentGUI *component, uint64_t indColSelected, uint64_t indRowSelected)
Definition CEventSelected.cpp:3
uint64_t m_indRowSelected
Definition CEventSelected.hpp:18
uint64_t getColSelected() const
Definition CEventSelected.cpp:12