CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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

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

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
< boost::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 = 0,
const char *  text = 0,
Int_t  id = -1 
)

Definition at line 36 of file FWGUIValidatingTextEntry.cc.

References m_list, m_listHeight, and m_popup.

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

Definition at line 66 of file FWGUIValidatingTextEntry.cc.

67 {
68 }
FWGUIValidatingTextEntry::FWGUIValidatingTextEntry ( const FWGUIValidatingTextEntry )
private

Member Function Documentation

FWGUIValidatingTextEntry::ClassDef ( FWGUIValidatingTextEntry  ,
 
)
TGListBox* FWGUIValidatingTextEntry::getListBox ( ) const
inline

Definition at line 51 of file FWGUIValidatingTextEntry.h.

References m_list.

Referenced by FWGeometryTableView::FWGeometryTableView().

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

Definition at line 208 of file FWGUIValidatingTextEntry.cc.

References m_popup.

Referenced by keyPressedInPopup(), and ProcessMessage().

208  {
209  m_popup->EndPopup();
210  fClient->NeedRedraw(this);
211 }
void FWGUIValidatingTextEntry::insertTextOption ( const std::string &  iOption)
private

Definition at line 214 of file FWGUIValidatingTextEntry.cc.

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

215 {
216  long pos = GetCursorPosition();
217  InsertText(iOption.c_str(), pos);
218  SetCursorPosition(pos + iOption.size());
219 }
void FWGUIValidatingTextEntry::keyPressedInPopup ( TGFrame *  f,
UInt_t  keysym,
UInt_t  mask 
)

Definition at line 115 of file FWGUIValidatingTextEntry.cc.

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

116 {
117  switch(keysym) {
118  case kKey_Tab:
119  case kKey_Escape:
120  RequestFocus();
121  hideOptions();
122  break;
123  case kKey_Return:
124  RequestFocus();
125  //NOTE: If chosen from the keyboard, m_list->GetSelected() does not work, however
126  // m_list->GetSelectedEntries does work
127 
128  //AMT NOTE: TGListEntry does not select entry on key return event, it has to be selected here.
129  // Code stolen from TGComboBox::KeyPressed
130 
131  const TGLBEntry* entry = dynamic_cast<TGLBEntry*> (f);
132  if (entry)
133  {
134  insertTextOption(m_options[entry->EntryId()].second);
135  m_list->Selected(entry->EntryId());
136  }
137  hideOptions();
138  break;
139  }
140 }
std::vector< std::pair< boost::shared_ptr< std::string >, std::string > > m_options
void insertTextOption(const std::string &)
double f[11][100]
const FWGUIValidatingTextEntry& FWGUIValidatingTextEntry::operator= ( const FWGUIValidatingTextEntry )
private
Bool_t FWGUIValidatingTextEntry::ProcessMessage ( Long_t  msg,
Long_t  parm1,
Long_t  parm2 
)
virtual

Definition at line 93 of file FWGUIValidatingTextEntry.cc.

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

94 {
95  //STOLEN FROM TGComboBox.cxx
96  switch (GET_MSG(msg)) {
97  case kC_COMMAND:
98  switch (GET_SUBMSG(msg)) {
99  case kCM_LISTBOX:
100  RequestFocus();
101  insertTextOption(m_options[m_list->GetSelected()].second);
102  hideOptions();
103  break;
104  }
105  break;
106 
107  default:
108  break;
109  }
110  return kTRUE;
111 
112 }
std::vector< std::pair< boost::shared_ptr< std::string >, std::string > > m_options
void insertTextOption(const std::string &)
void FWGUIValidatingTextEntry::setMaxListBoxHeight ( UInt_t  x)
inline
void FWGUIValidatingTextEntry::setValidator ( FWValidatorBase iValidator)
void FWGUIValidatingTextEntry::showOptions ( )

Definition at line 161 of file FWGUIValidatingTextEntry.cc.

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

161  {
162 
163  if(0!=m_validator) {
164  const char* text = GetText();
165  std::string subText(text,text+GetCursorPosition());
166  //std::cout <<subText<<std::endl;
167 
168  typedef std::vector<std::pair<boost::shared_ptr<std::string>, std::string> > Options;
169  m_validator->fillOptions(text, text+GetCursorPosition(), m_options);
170  if(m_options.empty()) { return;}
171  if(m_options.size()==1) {
172  insertTextOption(m_options.front().second);
173  return;
174  }
175  m_list->RemoveAll();
176  int index = 0;
177  for(Options::iterator it = m_options.begin(), itEnd = m_options.end();
178  it != itEnd; ++it,++index) {
179  m_list->AddEntry(it->first->c_str(),index);
180  }
181  {
182  unsigned int h = m_list->GetNumberOfEntries()*
183  m_list->GetItemVsize();
184  if(h && (h<m_listHeight)) {
185  m_list->Resize(m_list->GetWidth(),h);
186  } else {
187  m_list->Resize(m_list->GetWidth(),m_listHeight);
188  }
189  }
190  m_list->Select(0,kTRUE);
191 
192  int ax,ay;
193  Window_t wdummy;
194  gVirtualX->TranslateCoordinates(GetId(), m_popup->GetParent()->GetId(),
195  0, GetHeight(), ax, ay, wdummy);
196 
197  //Wait to change focus for when the popup has already openned
198  std::auto_ptr<TTimer> timer( new ChangeFocusTimer(m_list->GetContainer()) );
199  timer->TurnOn();
200  //NOTE: this call has its own internal GUI event loop and will not return
201  // until the popup has been shut down
202  m_popup->PlacePopup(ax, ay,
203  GetWidth()-2, m_popup->GetDefaultHeight());
204  }
205 }
std::vector< std::pair< boost::shared_ptr< std::string >, std::string > > m_options
virtual void fillOptions(const char *iBegin, const char *iEnd, std::vector< std::pair< boost::shared_ptr< std::string >, std::string > > &oOptions) const =0
void insertTextOption(const std::string &)
tuple text
Definition: runonSM.py:42
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
std::vector< boost::shared_ptr< fireworks::OptionNode > > Options

Member Data Documentation

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

Definition at line 73 of file FWGUIValidatingTextEntry.h.

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

TGComboBoxPopup* FWGUIValidatingTextEntry::m_popup
private

Definition at line 67 of file FWGUIValidatingTextEntry.h.

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

FWValidatorBase* FWGUIValidatingTextEntry::m_validator
private

Definition at line 69 of file FWGUIValidatingTextEntry.h.

Referenced by setValidator(), and showOptions().