#include "TGedMarkerSelect.h"
#include "TGPicture.h"
#include "TGToolTip.h"
#include "TGButton.h"
#include "Riostream.h"
ClassImp(TGedMarkerSelect)
ClassImp(TGedMarkerPopup)
struct MarkerDescription_t {
const char* fFilename;
const char* fName;
Int_t fNumber;
};
static MarkerDescription_t gMarkers[] = {
{"marker1.xpm", "1", 1},
{"marker6.xpm", "6", 6},
{"marker7.xpm", "7", 7},
{"marker2.xpm", "2", 2},
{"marker3.xpm", "3", 3},
{"marker4.xpm", "4", 4},
{"marker5.xpm", "5", 5},
{"marker20.xpm", "20", 20},
{"marker21.xpm", "21", 21},
{"marker22.xpm", "22", 22},
{"marker23.xpm", "23", 23},
{"marker24.xpm", "24", 24},
{"marker25.xpm", "25", 25},
{"marker26.xpm", "26", 26},
{"marker27.xpm", "27", 27},
{"marker28.xpm", "28", 28},
{"marker29.xpm", "29", 29},
{"marker30.xpm", "30", 30},
{0, 0, 0},
};
static MarkerDescription_t* GetMarkerByNumber(Int_t number)
{
for (Int_t i = 0; gMarkers[i].fFilename != 0; i++) {
if (gMarkers[i].fNumber == number)
return &gMarkers[i];
}
return 0;
}
TGedMarkerPopup::TGedMarkerPopup(const TGWindow *p, const TGWindow *m, Style_t markerStyle)
: TGedPopup(p, m, 30, 30, kDoubleBorder | kRaisedFrame | kOwnBackground,
GetDefaultFrameBackground())
{
TGButton *b;
fCurrentStyle = markerStyle;
Pixel_t white;
gClient->GetColorByName("white", white);
SetBackgroundColor(white);
SetLayoutManager(new TGTileLayout(this, 1));
for (int i = 0; gMarkers[i].fFilename != 0; i++) {
AddFrame(b = new TGPictureButton(this, gMarkers[i].fFilename,
gMarkers[i].fNumber, TGButton::GetDefaultGC()(), kSunkenFrame),
new TGLayoutHints(kLHintsLeft, 14, 14, 14, 14));
b->SetToolTipText(gMarkers[i].fName);
}
Resize(65, 94);
MapSubwindows();
}
TGedMarkerPopup::~TGedMarkerPopup()
{
TGFrameElement *el;
TIter next(GetList());
while ((el = (TGFrameElement *)next())) {
if (el->fFrame->InheritsFrom(TGPictureButton::Class()))
fClient->FreePicture(((TGPictureButton *)el->fFrame)->GetPicture());
}
Cleanup();
}
Bool_t TGedMarkerPopup::ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
{
if (GET_MSG(msg) == kC_COMMAND && GET_SUBMSG(msg) == kCM_BUTTON) {
SendMessage(fMsgWindow, MK_MSG(kC_MARKERSEL, kMAR_SELCHANGED), 0, parm1);
EndPopup();
}
if (parm2) {
}
return kTRUE;
}
TGedMarkerSelect::TGedMarkerSelect(const TGWindow *p, Style_t markerStyle, Int_t id)
: TGedSelect(p, id)
{
fPicture = 0;
SetPopup(new TGedMarkerPopup(gClient->GetDefaultRoot(), this, markerStyle));
SetMarkerStyle(markerStyle);
}
Bool_t TGedMarkerSelect::ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
{
if (GET_MSG(msg) == kC_MARKERSEL && GET_SUBMSG(msg) == kMAR_SELCHANGED) {
SetMarkerStyle(parm2);
parm1 = (Long_t)fWidgetId;
SendMessage(fMsgWindow, MK_MSG(kC_MARKERSEL, kMAR_SELCHANGED),
parm1, parm2);
}
return kTRUE;
}
void TGedMarkerSelect::DoRedraw()
{
TGedSelect::DoRedraw();
Int_t x, y;
UInt_t w, h;
if (IsEnabled()) {
x = fBorderWidth + 2;
y = fBorderWidth + 2;
h = fHeight - (fBorderWidth * 2) - 4;
w = h;
if (fState == kButtonDown) {
++x; ++y;
}
gVirtualX->DrawRectangle(fId, GetShadowGC()(), x, y, w - 1, h - 1);
if (fPicture != 0) fPicture->Draw(fId, fDrawGC->GetGC(), x + 1, y + 1);
} else {
x = fBorderWidth + 2;
y = fBorderWidth + 2;
w = 42;
h = fHeight - (fBorderWidth * 2) - 4;
Draw3dRectangle(kSunkenFrame, x, y, w, h);
}
}
void TGedMarkerSelect::SetMarkerStyle(Style_t markerStyle)
{
fMarkerStyle = markerStyle;
gClient->NeedRedraw(this);
if (fPicture) {
gClient->FreePicture(fPicture);
fPicture = 0;
}
MarkerDescription_t *md = GetMarkerByNumber(fMarkerStyle);
if (md) fPicture = gClient->GetPicture(md->fFilename);
MarkerSelected(fMarkerStyle);
}
void TGedMarkerSelect::SavePrimitive(ostream &out, Option_t * )
{
out <<" TGedMarkerSelect *";
out << GetName() << " = new TGedMarkerSelect(" << fParent->GetName()
<< "," << fMarkerStyle << "," << WidgetId() << ");" << endl;
}
Last change: Wed Jun 25 08:43:55 2008
Last generated: 2008-06-25 08:43
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.