/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/CmsShowSearchFiles.h
70 строк
2 KB
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
// -*- C++ -*- #ifndef Fireworks_Core_CmsShowSearchFiles_h #define Fireworks_Core_CmsShowSearchFiles_h // // Package: Core // Class : CmsShowSearchFiles // /**\class CmsShowSearchFiles CmsShowSearchFiles.h Fireworks/Core/interface/CmsShowSearchFiles.h Description: <one line class summary> Usage: <usage> */ // // Original Author: // Created: Fri Jun 27 11:23:31 EDT 2008 // // system include files #include "GuiTypes.h" #include "TGFrame.h" #include <string> #include <vector> // forward declarations class FWHtml; class TGComboBox; class TGTextButton; class TGPopupMenu; class TGTextEntry; class CmsShowSearchFiles : public TGTransientFrame { public: CmsShowSearchFiles( const char* filename, const char* windowname, const TGWindow* p = nullptr, UInt_t w = 1, UInt_t h = 1); ~CmsShowSearchFiles() override; ///This opens the dialog window and returns once the user has choosen, returns an empty string if canceled std::string chooseFileFromURL(); //NOTE: Do not call any of the following, they are only public because 'signals' are attached to them void showPrefixes(); void prefixChoosen(Int_t); void fileEntryChanged(const char*); void updateBrowser(); void openClicked(); void hyperlinkClicked(const char*); ClassDefOverride(CmsShowSearchFiles, 0); private: void sendToWebBrowser(std::string& iWebFile); void readInfo(); void readError(); TGTextButton* m_choosePrefix; TGPopupMenu* m_prefixMenu; TGTextEntry* m_file; FWHtml* m_webFile; std::vector<std::string> m_prefixes; std::vector<bool> m_prefixComplete; TGTextButton* m_openButton; bool m_openCalled; }; #endif