Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "Fireworks/Core/interface/FWEnumParameterSetter.h"
00018 #include "TGComboBox.h"
00019 #include "TGLabel.h"
00020 #include <cassert>
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 FWEnumParameterSetter::FWEnumParameterSetter() :
00034 m_param(0),
00035 m_widget(0)
00036 {}
00037
00038
00039
00040
00041
00042
00043 FWEnumParameterSetter::~FWEnumParameterSetter()
00044 {}
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 void
00063 FWEnumParameterSetter::attach(FWParameterBase* iParam)
00064 {
00065 m_param = dynamic_cast<FWEnumParameter*>(iParam);
00066 assert(0!=m_param);
00067 }
00068
00069 TGFrame*
00070 FWEnumParameterSetter::build(TGFrame* iParent, bool labelBack)
00071 {
00072 TGCompositeFrame *frame = new TGHorizontalFrame(iParent);
00073
00074 m_widget = new TGComboBox(frame);
00075 std::map<Long_t, std::string>::const_iterator me = m_param->entryMap().begin();
00076 UInt_t max_len = 0;
00077 while (me != m_param->entryMap().end())
00078 {
00079 m_widget->AddEntry(me->second.c_str(), static_cast<Int_t>(me->first));
00080 if (me->second.length() > max_len) max_len = me->second.length();
00081 ++me;
00082 }
00083 m_widget->Resize(8*max_len + 20, 20);
00084 m_widget->Select(static_cast<Int_t>(m_param->value()), kFALSE);
00085
00086 m_widget->Connect("Selected(Int_t)", "FWEnumParameterSetter", this, "doUpdate(Int_t)");
00087
00088
00089 TGLabel* label = new TGLabel(frame, m_param->name().c_str());
00090 if (labelBack)
00091 {
00092 frame->AddFrame(m_widget, new TGLayoutHints(kLHintsLeft|kLHintsCenterY, 2,6,2,2));
00093 frame->AddFrame(label, new TGLayoutHints(kLHintsLeft|kLHintsCenterY, 2, 4, 0, 0));
00094 }
00095 else
00096 {
00097 frame->AddFrame(label, new TGLayoutHints(kLHintsLeft|kLHintsCenterY) );
00098 frame->AddFrame(m_widget, new TGLayoutHints(kLHintsLeft|kLHintsCenterY, 2,8,2,2));
00099 }
00100 return frame;
00101 }
00102
00103 void
00104 FWEnumParameterSetter::doUpdate(Int_t id)
00105 {
00106 assert(0!=m_param);
00107 assert(0!=m_widget);
00108 m_param->set((Long_t) id);
00109 update();
00110 }
00111
00112 void
00113 FWEnumParameterSetter::setEnabled(bool x)
00114 {
00115 m_widget->SetEnabled(x);
00116 }
00117
00118
00119
00120
00121
00122
00123
00124