/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/src/FWViewBase.cc
107 строк
3 KB
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: Core // Class : FWViewBase // // Implementation: // <Notes on implementation> // // Original Author: Chris Jones // Created: Thu Feb 21 14:43:19 EST 2008 // // system include files #include <stdexcept> #include <iostream> #include "TGFileDialog.h" // user include files #include "Fireworks/Core/interface/FWViewBase.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // FWViewBase::FWViewBase(FWViewType::EType type, unsigned int iVersion) : FWConfigurableParameterizable(iVersion), m_type(type) {} // FWViewBase::FWViewBase(const FWViewBase& rhs) // { // // do actual copying here; // } FWViewBase::~FWViewBase() {} // // assignment operators // // const FWViewBase& FWViewBase::operator=(const FWViewBase& rhs) // { // //An exception safe implementation is // FWViewBase temp(rhs); // swap(rhs); // // return *this; // } // // member functions // void FWViewBase::destroy() { beingDestroyed_(this); } // // const member functions // void FWViewBase::promptForSaveImageTo(TGFrame* iParent) const { if (typeId() < FWViewType::kTable) { try { static TString dir("."); const char* kImageExportTypes[] = {"PNG", "*.png", "GIF", "*.gif", "JPEG", "*.jpg", "PDF", "*.pdf", "Encapsulated PostScript", "*.eps", nullptr, nullptr}; TGFileInfo fi; fi.fFileTypes = kImageExportTypes; fi.fIniDir = StrDup(dir); new TGFileDialog(gClient->GetDefaultRoot(), iParent, kFDSave, &fi); dir = fi.fIniDir; if (fi.fFilename != nullptr) { std::string name = fi.fFilename; // fi.fFileTypeIdx points to the name of the file type // selected in the drop-down menu, so fi.fFileTypeIdx gives us // the extension std::string ext = kImageExportTypes[fi.fFileTypeIdx + 1] + 1; if (name.find(ext) == name.npos) name += ext; saveImageTo(name); } } catch (std::runtime_error& e) { std::cout << e.what() << std::endl; } } else { saveImageTo("dummy"); } } FWViewContextMenuHandlerBase* FWViewBase::contextMenuHandler() const { return nullptr; } // // static member functions // const std::string& FWViewBase::typeName() const { return m_type.name(); }