Version: 9.16.0
YACS::HMI::YComboBox Class Reference

#include <TablePortsEdition.hxx>

Inheritance diagram for YACS::HMI::YComboBox:
Collaboration diagram for YACS::HMI::YComboBox:

Signals

void popupHide ()
 
void popupShow ()
 

Public Member Functions

 YComboBox (QWidget *parent=0)
 
virtual ~YComboBox ()
 
virtual void hidePopup ()
 
virtual void showPopup ()
 

Protected Member Functions

void keyPressEvent (QKeyEvent *e)
 
void wheelEvent (QWheelEvent *e)
 

Detailed Description

Definition at line 35 of file TablePortsEdition.hxx.

Constructor & Destructor Documentation

◆ YComboBox()

YComboBox::YComboBox ( QWidget parent = 0)

Definition at line 49 of file TablePortsEdition.cxx.

50 : QComboBox(parent)
51{
52 DEBTRACE("ComboBox::ComboBox");
53}
#define DEBTRACE(msg)
Definition: YacsTrace.hxx:31

References DEBTRACE.

◆ ~YComboBox()

YComboBox::~YComboBox ( )
virtual

Definition at line 55 of file TablePortsEdition.cxx.

56{
57}

Member Function Documentation

◆ hidePopup()

void YComboBox::hidePopup ( )
virtual

Definition at line 59 of file TablePortsEdition.cxx.

60{
61 DEBTRACE("YComboBox::hidePopup");
62 QComboBox::hidePopup();
63 emit popupHide();
64}

References DEBTRACE, and popupHide().

◆ keyPressEvent()

void YComboBox::keyPressEvent ( QKeyEvent *  e)
protected

Definition at line 73 of file TablePortsEdition.cxx.

74{
75 //accept all key events but do nothing to avoid creating ports with keys
76}

◆ popupHide

void YACS::HMI::YComboBox::popupHide ( )
signal

Referenced by hidePopup().

◆ popupShow

void YACS::HMI::YComboBox::popupShow ( )
signal

Referenced by showPopup().

◆ showPopup()

void YComboBox::showPopup ( )
virtual

Definition at line 66 of file TablePortsEdition.cxx.

67{
68 DEBTRACE("YComboBox::showPopup");
69 QComboBox::showPopup();
70 emit popupShow();
71}

References DEBTRACE, and popupShow().

◆ wheelEvent()

void YComboBox::wheelEvent ( QWheelEvent *  e)
protected

Definition at line 79 of file TablePortsEdition.cxx.

80{
81 //idem
82}

The documentation for this class was generated from the following files: