CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
FWGUIValidatingTextEntry Class Reference

#include <Fireworks/Core/interface/FWGUIValidatingTextEntry.h>

Inheritance diagram for FWGUIValidatingTextEntry:

Public Member Functions

 ClassDefOverride (FWGUIValidatingTextEntry, 0)
 
 FWGUIValidatingTextEntry (const TGWindow *parent=nullptr, const char *text=nullptr, Int_t id=-1)
 
TGListBox * getListBox () const
 
void hideOptions ()
 
void keyPressedInPopup (TGFrame *, UInt_t keysym, UInt_t mask)
 
Bool_t ProcessMessage (Long_t msg, Long_t parm1, Long_t parm2) override
 
void setMaxListBoxHeight (UInt_t x)
 
void setValidator (FWValidatorBase *)
 
void showOptions ()
 
 ~FWGUIValidatingTextEntry () override
 

Private Member Functions

 FWGUIValidatingTextEntry (const FWGUIValidatingTextEntry &)
 
void insertTextOption (const std::string &)
 
const FWGUIValidatingTextEntryoperator= (const FWGUIValidatingTextEntry &)
 

Private Attributes

TGListBox * m_list
 
UInt_t m_listHeight
 
std::vector< std::pair< std::shared_ptr< std::string >, std::string > > m_options
 
TGComboBoxPopup * m_popup
 
FWValidatorBasem_validator
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 35 of file FWGUIValidatingTextEntry.h.

Constructor & Destructor Documentation

FWGUIValidatingTextEntry::FWGUIValidatingTextEntry ( const TGWindow *  parent = nullptr,
const char *  text = nullptr,
Int_t  id = -1 
)

Definition at line 35 of file FWGUIValidatingTextEntry.cc.

References hcaldqm::fClient, m_list, m_listHeight, and m_popup.

Referenced by setMaxListBoxHeight().

36  : TGTextEntry(parent, text, id), m_popup(nullptr), m_list(nullptr), m_validator(nullptr), m_listHeight(100) {
37  m_popup = new TGComboBoxPopup(fClient->GetDefaultRoot(), 100, 100, kVerticalFrame);
38  m_list = new TGListBox(m_popup, 1 /*widget id*/, kChildFrame);
39  m_list->Resize(100, m_listHeight);
40  m_list->Associate(this);
41  m_list->GetScrollBar()->GrabPointer(kFALSE);
42  m_popup->AddFrame(m_list, new TGLayoutHints(kLHintsExpandX | kLHintsExpandY));
43  m_popup->MapSubwindows();
44  m_popup->Resize(m_popup->GetDefaultSize());
45  m_list->GetContainer()->AddInput(kButtonPressMask | kButtonReleaseMask | kPointerMotionMask);
46  m_list->SetEditDisabled(kEditDisable);
47  m_list->GetContainer()->Connect("KeyPressed(TGFrame*,UInt_t,UInt_t)",
48  "FWGUIValidatingTextEntry",
49  this,
50  "keyPressedInPopup(TGFrame*,UInt_t,UInt_t)");
51  m_list->GetContainer()->SetEditDisabled(kEditDisable);
52  Connect("TabPressed()", "FWGUIValidatingTextEntry", this, "showOptions()");
53 }
FWGUIValidatingTextEntry::~FWGUIValidatingTextEntry ( )
override

Definition at line 60 of file FWGUIValidatingTextEntry.cc.

60 {}
FWGUIValidatingTextEntry::FWGUIValidatingTextEntry ( const FWGUIValidatingTextEntry )
private

Member Function Documentation

FWGUIValidatingTextEntry::ClassDefOverride ( FWGUIValidatingTextEntry  ,
 
)

Referenced by setMaxListBoxHeight().

TGListBox* FWGUIValidatingTextEntry::getListBox ( ) const
inline

Definition at line 50 of file FWGUIValidatingTextEntry.h.

References m_list.

Referenced by FWGeometryTableView::FWGeometryTableView().

50 { return m_list; }
void FWGUIValidatingTextEntry::hideOptions ( )

Definition at line 181 of file FWGUIValidatingTextEntry.cc.

References hcaldqm::fClient, and m_popup.

Referenced by keyPressedInPopup(), and ProcessMessage().

181  {
182  m_popup->EndPopup();
183  fClient->NeedRedraw(this);
184 }
void FWGUIValidatingTextEntry::insertTextOption ( const std::string &  iOption)
private

Definition at line 186 of file FWGUIValidatingTextEntry.cc.

Referenced by keyPressedInPopup(), ProcessMessage(), setMaxListBoxHeight(), and showOptions().

186  {
187  long pos = GetCursorPosition();
188  InsertText(iOption.c_str(), pos);
189  SetCursorPosition(pos + iOption.size());
190 }
void FWGUIValidatingTextEntry::keyPressedInPopup ( TGFrame *  f,
UInt_t  keysym,
UInt_t  mask 
)

Definition at line 98 of file FWGUIValidatingTextEntry.cc.

References mps_splice::entry, f, hideOptions(), insertTextOption(), m_list, and m_options.

Referenced by setMaxListBoxHeight().

98  {
99  switch (keysym) {
100  case kKey_Tab:
101  case kKey_Escape:
102  RequestFocus();
103  hideOptions();
104  break;
105  case kKey_Return:
106  RequestFocus();
107  //NOTE: If chosen from the keyboard, m_list->GetSelected() does not work, however
108  // m_list->GetSelectedEntries does work
109 
110  //AMT NOTE: TGListEntry does not select entry on key return event, it has to be selected here.
111  // Code stolen from TGComboBox::KeyPressed
112 
113  const TGLBEntry* entry = dynamic_cast<TGLBEntry*>(f);
114  if (entry) {
115  insertTextOption(m_options[entry->EntryId()].second);
116  m_list->Selected(entry->EntryId());
117  }
118  hideOptions();
119  break;
120  }
121 }
std::vector< std::pair< std::shared_ptr< std::string >, std::string > > m_options
void insertTextOption(const std::string &)
double f[11][100]
const FWGUIValidatingTextEntry& FWGUIValidatingTextEntry::operator= ( const FWGUIValidatingTextEntry )
private

Referenced by setMaxListBoxHeight().

Bool_t FWGUIValidatingTextEntry::ProcessMessage ( Long_t  msg,
Long_t  parm1,
Long_t  parm2 
)
override

Definition at line 79 of file FWGUIValidatingTextEntry.cc.

References hideOptions(), insertTextOption(), m_list, and m_options.

Referenced by setMaxListBoxHeight().

79  {
80  //STOLEN FROM TGComboBox.cxx
81  switch (GET_MSG(msg)) {
82  case kC_COMMAND:
83  switch (GET_SUBMSG(msg)) {
84  case kCM_LISTBOX:
85  RequestFocus();
86  insertTextOption(m_options[m_list->GetSelected()].second);
87  hideOptions();
88  break;
89  }
90  break;
91 
92  default:
93  break;
94  }
95  return kTRUE;
96 }
std::vector< std::pair< std::shared_ptr< std::string >, std::string > > m_options
void insertTextOption(const std::string &)
tuple msg
Definition: mps_check.py:285
void FWGUIValidatingTextEntry::setMaxListBoxHeight ( UInt_t  x)
inline
void FWGUIValidatingTextEntry::setValidator ( FWValidatorBase iValidator)
void FWGUIValidatingTextEntry::showOptions ( )

Definition at line 138 of file FWGUIValidatingTextEntry.cc.

References FWValidatorBase::fillOptions(), h, insertTextOption(), m_list, m_listHeight, m_options, m_popup, m_validator, AlCaHLTBitMon_QueryRunRegistry::string, and runonSM::text.

138  {
139  if (nullptr != m_validator) {
140  const char* text = GetText();
141  std::string subText(text, text + GetCursorPosition());
142  //std::cout <<subText<<std::endl;
143 
144  typedef std::vector<std::pair<std::shared_ptr<std::string>, std::string> > Options;
145  m_validator->fillOptions(text, text + GetCursorPosition(), m_options);
146  if (m_options.empty()) {
147  return;
148  }
149  if (m_options.size() == 1) {
150  insertTextOption(m_options.front().second);
151  return;
152  }
153  m_list->RemoveAll();
154  int index = 0;
155  for (Options::iterator it = m_options.begin(), itEnd = m_options.end(); it != itEnd; ++it, ++index) {
156  m_list->AddEntry(it->first->c_str(), index);
157  }
158  {
159  unsigned int h = m_list->GetNumberOfEntries() * m_list->GetItemVsize();
160  if (h && (h < m_listHeight)) {
161  m_list->Resize(m_list->GetWidth(), h);
162  } else {
163  m_list->Resize(m_list->GetWidth(), m_listHeight);
164  }
165  }
166  m_list->Select(0, kTRUE);
167 
168  int ax, ay;
169  Window_t wdummy;
170  gVirtualX->TranslateCoordinates(GetId(), m_popup->GetParent()->GetId(), 0, GetHeight(), ax, ay, wdummy);
171 
172  //Wait to change focus for when the popup has already openned
173  std::unique_ptr<TTimer> timer(new ChangeFocusTimer(m_list->GetContainer()));
174  timer->TurnOn();
175  //NOTE: this call has its own internal GUI event loop and will not return
176  // until the popup has been shut down
177  m_popup->PlacePopup(ax, ay, GetWidth() - 2, m_popup->GetDefaultHeight());
178  }
179 }
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
std::vector< std::pair< std::shared_ptr< std::string >, std::string > > m_options
void insertTextOption(const std::string &)
virtual void fillOptions(const char *iBegin, const char *iEnd, std::vector< std::pair< std::shared_ptr< std::string >, std::string > > &oOptions) const =0
std::vector< std::shared_ptr< fireworks::OptionNode > > Options

Member Data Documentation

TGListBox* FWGUIValidatingTextEntry::m_list
private
UInt_t FWGUIValidatingTextEntry::m_listHeight
private
std::vector<std::pair<std::shared_ptr<std::string>, std::string> > FWGUIValidatingTextEntry::m_options
private

Definition at line 72 of file FWGUIValidatingTextEntry.h.

Referenced by keyPressedInPopup(), ProcessMessage(), and showOptions().

TGComboBoxPopup* FWGUIValidatingTextEntry::m_popup
private

Definition at line 66 of file FWGUIValidatingTextEntry.h.

Referenced by FWGUIValidatingTextEntry(), hideOptions(), and showOptions().

FWValidatorBase* FWGUIValidatingTextEntry::m_validator
private

Definition at line 68 of file FWGUIValidatingTextEntry.h.

Referenced by setValidator(), and showOptions().