Version: 8.3.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 ( QWidget parent = 0)

Definition at line 49 of file TablePortsEdition.cxx.

References DEBTRACE.

50  : QComboBox(parent)
51 {
52  DEBTRACE("ComboBox::ComboBox");
53 }
YComboBox::~YComboBox ( )
virtual

Definition at line 55 of file TablePortsEdition.cxx.

56 {
57 }

Member Function Documentation

void YComboBox::hidePopup ( )
virtual

Definition at line 59 of file TablePortsEdition.cxx.

References DEBTRACE, and popupHide().

60 {
61  DEBTRACE("YComboBox::hidePopup");
62  QComboBox::hidePopup();
63  emit popupHide();
64 }
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 }
void YACS::HMI::YComboBox::popupHide ( )
signal

Referenced by hidePopup().

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

Referenced by showPopup().

void YComboBox::showPopup ( )
virtual

Definition at line 66 of file TablePortsEdition.cxx.

References DEBTRACE, and popupShow().

67 {
68  DEBTRACE("YComboBox::showPopup");
69  QComboBox::showPopup();
70  emit popupShow();
71 }
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: