/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWGUIEventSelector.h
52 строки
1 KB
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
#ifndef Fireworks_Core_FWGUIEventSelector_h #define Fireworks_Core_FWGUIEventSelector_h #include "TGFrame.h" class TGLabel; class TGCheckButton; class TGComboBox; struct FWEventSelector; class FWHLTValidator; class FWCustomIconsButton; class FWGUIValidatingTextEntry; class FWGUIEventSelector : public TGHorizontalFrame { public: FWGUIEventSelector(TGCompositeFrame* p, FWEventSelector* sel, std::vector<std::string>& triggerProcessList); ~FWGUIEventSelector() override; void deleteCallback(); void enableCallback(bool); void expressionCallback(char*); void triggerProcessCallback(const char*); void updateNEvents(); FWEventSelector* guiSelector() { return m_guiSelector; } FWEventSelector* origSelector() { return m_origSelector; } void setOrigSelector(FWEventSelector* s) { m_origSelector = s; } void removeSelector(FWGUIEventSelector*); // *SIGNAL* void selectorChanged(); // *SIGNAL* private: FWGUIEventSelector(const FWGUIEventSelector&); // stop default const FWGUIEventSelector& operator=(const FWGUIEventSelector&); // stop default FWEventSelector* m_guiSelector; FWEventSelector* m_origSelector; FWGUIValidatingTextEntry* m_text1; FWGUIValidatingTextEntry* m_text2; TGCheckButton* m_enableBtn; FWCustomIconsButton* m_deleteBtn; TGLabel* m_nEvents; TGComboBox* m_combo; FWHLTValidator* m_validator; ClassDefOverride(FWGUIEventSelector, 0); // Manager for EVE windows. }; #endif