Logo ROOT  
Reference Guide
TGFSContainer.cxx
Go to the documentation of this file.
1// @(#)root/gui:$Id$
2// Author: Fons Rademakers 19/01/98
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11/**************************************************************************
12
13 This source is based on Xclass95, a Win95-looking GUI toolkit.
14 Copyright (C) 1996, 1997 David Barth, Ricky Ralston, Hector Peraza.
15
16 Xclass95 is free software; you can redistribute it and/or
17 modify it under the terms of the GNU Library General Public
18 License as published by the Free Software Foundation; either
19 version 2 of the License, or (at your option) any later version.
20
21**************************************************************************/
22
23//////////////////////////////////////////////////////////////////////////
24// //
25// TGFileIcon, TGFileEntry, TGFSContainer //
26// //
27// Utility classes used by the file selection dialog (TGFSDialog). //
28// //
29//////////////////////////////////////////////////////////////////////////
30
31#include "TGFSContainer.h"
32#include "TGIcon.h"
33#include "TGMsgBox.h"
34#include "TGMimeTypes.h"
35#include "TRegexp.h"
36#include "TList.h"
37#include "TSystem.h"
38#include "TGDNDManager.h"
39#include "Riostream.h"
40#include "TRemoteObject.h"
41#include "TImage.h"
42
43#include <time.h>
44#include <stdlib.h>
45
48
49class TViewUpdateTimer : public TTimer {
50
51private:
52 TGFileContainer *fContainer;
53
54public:
55 TViewUpdateTimer(TGFileContainer *t, Long_t ms) : TTimer(ms, kTRUE) { fContainer = t; }
56 Bool_t Notify();
57};
58
59
60
61class TGFileIcon : public TGIcon {
62
63protected:
64 const TGPicture *fLpic; // icon picture
65
66 virtual void DoRedraw();
67
68public:
69 TGFileIcon(const TGWindow *p, const TGPicture *pic, const TGPicture *lpic,
70 UInt_t options = kChildFrame, Pixel_t back = GetWhitePixel()) :
71 TGIcon(p, pic, 0, 0, options, back) { fLpic = lpic; }
72};
73
74
75
76////////////////////////////////////////////////////////////////////////////////
77
78class TGFSFrameElement : public TGFrameElement {
79public:
80 TGFileContainer *fContainer; // file container
81
82 Bool_t IsSortable() const { return kTRUE; }
83 Int_t Compare(const TObject *obj) const;
84};
85
86////////////////////////////////////////////////////////////////////////////////
87/// Sort frame elements in file selection list view container.
88
90{
91 Int_t type1, type2;
92
93 TGFileItem *f1 = (TGFileItem *) fFrame;
94 TGFileItem *f2 = (TGFileItem *) ((TGFrameElement *) obj)->fFrame;
95
96 switch (fContainer->fSortType) {
97 default:
98 case kSortByName:
99 //--- this is not exactly what I want...
100 type1 = f1->GetType();
101 type2 = f2->GetType();
102
103 //--- use posix macros
104 if (R_ISDIR(type1)) type1 = 1;
105 else type1 = 6;
106
107 if (R_ISDIR(type2)) type2 = 1;
108 else type2 = 6;
109
110 if (type1 < type2) return -1;
111 if (type1 > type2) return 1;
112 return strcmp(f1->GetItemName()->GetString(),
113 f2->GetItemName()->GetString());
114
115 case kSortByOwner:
116 if (f1->GetUid() != f2->GetUid()) {
117 if (f1->GetUid() < f2->GetUid())
118 return -1;
119 else
120 return +1;
121 }
122
123 // else sort by name
124 type1 = f1->GetType();
125 type2 = f2->GetType();
126
127 //--- use posix macros
128 if (R_ISDIR(type1)) type1 = 1;
129 else type1 = 6;
130
131 if (R_ISDIR(type2)) type2 = 1;
132 else type2 = 6;
133
134 if (type1 < type2) return -1;
135 if (type1 > type2) return 1;
136 return strcmp(f1->GetItemName()->GetString(),
137 f2->GetItemName()->GetString());
138
139 case kSortByGroup:
140 if (f1->GetGid() != f2->GetGid()) {
141 if (f1->GetGid() < f2->GetGid())
142 return -1;
143 else
144 return +1;
145 }
146
147 // else sort by name
148 type1 = f1->GetType();
149 type2 = f2->GetType();
150
151 //--- use posix macros
152 if (R_ISDIR(type1)) type1 = 1;
153 else type1 = 6;
154
155 if (R_ISDIR(type2)) type2 = 1;
156 else type2 = 6;
157
158 if (type1 < type2) return -1;
159 if (type1 > type2) return 1;
160 return strcmp(f1->GetItemName()->GetString(),
161 f2->GetItemName()->GetString());
162
163 case kSortByType:
164 //--- this is not exactly what I want...
165
166 type1 = f1->GetType();
167 type2 = f2->GetType();
168
169 //--- use posix macros
170
171 if (R_ISDIR(type1)) type1 = 1;
172 else if (R_ISLNK(type1)) type1 = 2;
173 else if (R_ISSOCK(type1)) type1 = 3;
174 else if (R_ISFIFO(type1)) type1 = 4;
175 else if (R_ISREG(type1) && (type1 & kS_IXUSR)) type1 = 5;
176 else type1 = 6;
177
178 if (R_ISDIR(type2)) type2 = 1;
179 else if (R_ISLNK(type2)) type2 = 2;
180 else if (R_ISSOCK(type2)) type2 = 3;
181 else if (R_ISFIFO(type2)) type2 = 4;
182 else if (R_ISREG(type2) && (type2 & kS_IXUSR)) type2 = 5;
183 else type2 = 6;
184
185 if (type1 < type2) return -1;
186 if (type1 > type2) return 1;
187 return strcmp(f1->GetItemName()->GetString(),
188 f2->GetItemName()->GetString());
189
190 case kSortBySize:
191 if (f1->GetSize() < f2->GetSize()) return -1;
192 if (f1->GetSize() > f2->GetSize()) return 1;
193 return strcmp(f1->GetItemName()->GetString(),
194 f2->GetItemName()->GetString());
195
196 case kSortByDate:
197 time_t loctimeF1 = (time_t) f1->GetModTime();
198 // coverity[returned_null]
199 struct tm tmF1 = *localtime(&loctimeF1);
200
201 time_t loctimeF2 = (time_t) f2->GetModTime();
202 // coverity[returned_null]
203 struct tm tmF2 = *localtime(&loctimeF2);
204
205 if ( tmF1.tm_year != tmF2.tm_year )
206 return (tmF1.tm_year < tmF2.tm_year) ? +1 : -1;
207 else if ( tmF1.tm_mon != tmF2.tm_mon )
208 return (tmF1.tm_mon < tmF2.tm_mon) ? +1 : -1;
209 else if ( tmF1.tm_mday != tmF2.tm_mday )
210 return (tmF1.tm_mday < tmF2.tm_mday) ? +1 : -1;
211 else if ( tmF1.tm_hour != tmF2.tm_hour )
212 return (tmF1.tm_hour < tmF2.tm_hour) ? +1 : -1;
213 else if ( tmF1.tm_min != tmF2.tm_min )
214 return (tmF1.tm_min < tmF2.tm_min) ? +1 : -1;
215 else if ( tmF1.tm_sec != tmF2.tm_sec )
216 return (tmF1.tm_sec < tmF2.tm_sec) ? +1 : -1;
217 else
218 return 0;
219 }
220}
221
222
223////////////////////////////////////////////////////////////////////////////////
224/// Reset the timer.
225
226Bool_t TViewUpdateTimer::Notify()
227{
228 fContainer->HandleTimer(0);
229 Reset();
230 return kFALSE;
231}
232
233
234////////////////////////////////////////////////////////////////////////////////
235/// Draw icon.
236
237void TGFileIcon::DoRedraw()
238{
240 if (fLpic) fLpic->Draw(fId, GetBckgndGC()(), 0, 0);
241}
242
243
244////////////////////////////////////////////////////////////////////////////////
245/// Create a list view item.
246
248 const TGPicture *bpic, const TGPicture *blpic,
249 const TGPicture *spic, const TGPicture *slpic,
250 TGString *name, Int_t type, Long64_t size, Int_t uid,
251 Int_t gid, Long_t modtime, EListViewMode viewMode,
252 UInt_t options, ULong_t back) :
253 TGLVEntry(p, bpic, spic, name, 0, viewMode, options, back)
254{
255 FileStat_t buf;
256
257 buf.fMode = type;
258 buf.fSize = size;
259 buf.fUid = uid;
260 buf.fGid = gid;
261 buf.fMtime = modtime;
262 buf.fIsLink = (blpic != 0); // FIXME: hack...
263
264 Init(blpic, slpic, buf, viewMode);
265}
266
267////////////////////////////////////////////////////////////////////////////////
268/// Create a list view item.
269
271 const TGPicture *bpic, const TGPicture *blpic,
272 const TGPicture *spic, const TGPicture *slpic,
273 TGString *name, FileStat_t &stat, EListViewMode viewMode,
274 UInt_t options, ULong_t back) :
275 TGLVEntry(p, bpic, spic, name, 0, viewMode, options, back)
276{
277 Init(blpic, slpic, stat, viewMode);
278}
279
280////////////////////////////////////////////////////////////////////////////////
281/// Common initializer for file list view item.
282
283void TGFileItem::Init(const TGPicture *blpic, const TGPicture *slpic,
284 FileStat_t &stat, EListViewMode viewMode)
285{
286 char tmp[256];
287 Long64_t fsize, bsize;
288
289 fBuf = 0;
290 fDNDData.fData = 0;
293 fLcurrent =
294 fBlpic = blpic;
295 fSlpic = slpic;
296
298 SetViewMode(viewMode);
299
300 fType = stat.fMode;
301 fSize = stat.fSize;
302 fUid = stat.fUid;
303 fGid = stat.fGid;
304 fModTime = stat.fMtime;
305 fIsLink = stat.fIsLink;
306
307 fSubnames = new TGString* [6];
308
309 // file type
310 snprintf(tmp, sizeof(tmp), "%c%c%c%c%c%c%c%c%c%c",
311 (fIsLink ?
312 'l' :
313 R_ISREG(fType) ?
314 '-' :
315 (R_ISDIR(fType) ?
316 'd' :
317 (R_ISCHR(fType) ?
318 'c' :
319 (R_ISBLK(fType) ?
320 'b' :
321 (R_ISFIFO(fType) ?
322 'p' :
323 (R_ISSOCK(fType) ?
324 's' : '?' )))))),
325 ((fType & kS_IRUSR) ? 'r' : '-'),
326 ((fType & kS_IWUSR) ? 'w' : '-'),
327 ((fType & kS_ISUID) ? 's' : ((fType & kS_IXUSR) ? 'x' : '-')),
328 ((fType & kS_IRGRP) ? 'r' : '-'),
329 ((fType & kS_IWGRP) ? 'w' : '-'),
330 ((fType & kS_ISGID) ? 's' : ((fType & kS_IXGRP) ? 'x' : '-')),
331 ((fType & kS_IROTH) ? 'r' : '-'),
332 ((fType & kS_IWOTH) ? 'w' : '-'),
333 ((fType & kS_ISVTX) ? 't' : ((fType & kS_IXOTH) ? 'x' : '-')));
334 fSubnames[0] = new TGString(tmp);
335
336 // file size
337 fsize = bsize = fSize;
338 if (fsize > 1024) {
339 fsize /= 1024;
340 if (fsize > 1024) {
341 // 3.7MB is more informative than just 3MB
342 snprintf(tmp, sizeof(tmp), "%lld.%lldM", fsize/1024, (fsize%1024)/103);
343 } else {
344 snprintf(tmp, sizeof(tmp), "%lld.%lldK", bsize/1024, (bsize%1024)/103);
345 }
346 } else {
347 snprintf(tmp, sizeof(tmp), "%lld", bsize);
348 }
349 fSubnames[1] = new TGString(tmp);
350
351 {
352 struct UserGroup_t *user_group;
353
354 user_group = gSystem->GetUserInfo(fUid);
355 if (user_group) {
356 fSubnames[2] = new TGString(user_group->fUser);
357 fSubnames[3] = new TGString(user_group->fGroup);
358 delete user_group;
359 } else {
360 fSubnames[2] = new TGString(TString::Format("%d", fUid));
361 fSubnames[3] = new TGString(TString::Format("%d", fGid));
362 }
363 }
364
365 struct tm *newtime;
366 time_t loctime = (time_t) fModTime;
367 newtime = localtime(&loctime);
368 if (newtime) {
369 snprintf(tmp, sizeof(tmp), "%d-%02d-%02d %02d:%02d", newtime->tm_year + 1900,
370 newtime->tm_mon+1, newtime->tm_mday, newtime->tm_hour,
371 newtime->tm_min);
372 fSubnames[4] = new TGString(tmp);
373 }
374 else
375 fSubnames[4] = new TGString("1901-01-01 00:00");
376
377 fSubnames[5] = 0;
378
379 int i;
380 for (i = 0; fSubnames[i] != 0; ++i)
381 ;
382 fCtw = new int[i+1];
383 fCtw[i] = 0;
384 for (i = 0; fSubnames[i] != 0; ++i)
385 fCtw[i] = gVirtualX->TextWidth(fFontStruct, fSubnames[i]->GetString(),
386 fSubnames[i]->GetLength());
387
389}
390
391////////////////////////////////////////////////////////////////////////////////
392/// Destructor.
393
395{
396 delete fBuf;
397}
398
399////////////////////////////////////////////////////////////////////////////////
400/// Set container item view mode.
401
403{
404 TGLVEntry::SetViewMode(viewMode);
405
406 if (viewMode == kLVLargeIcons)
408 else
410
411 if (fClient) fClient->NeedRedraw(this);
412}
413
414////////////////////////////////////////////////////////////////////////////////
415/// Draw list view container item.
416
418{
419 int ix, iy;
420
422 if (!fLcurrent) return;
423
424 if (fViewMode == kLVLargeIcons) {
425 ix = (fWidth - fLcurrent->GetWidth()) >> 1;
426 iy = 0;
427 } else {
428 ix = 0;
429 iy = (fHeight - fLcurrent->GetHeight()) >> 1;
430 }
431
432 fLcurrent->Draw(fId, fNormGC, ix, iy);
433}
434
435
436////////////////////////////////////////////////////////////////////////////////
437/// Create a list view container which will hold the contents of
438/// the current directory.
439
441 UInt_t options, ULong_t back) :
442 TGLVContainer(p, w, h, options, back)
443{
445 fFilter = 0;
446 fMtime = 0;
448 fRefresh = new TViewUpdateTimer(this, 1000);
452 fCleanups = new TList;
453
454 fFolder_s = fClient->GetPicture("folder_s.xpm");
455 fFolder_t = fClient->GetPicture("folder_t.xpm");
456 fApp_s = fClient->GetPicture("app_s.xpm");
457 fApp_t = fClient->GetPicture("app_t.xpm");
458 fDoc_s = fClient->GetPicture("doc_s.xpm");
459 fDoc_t = fClient->GetPicture("doc_t.xpm");
460 fSlink_s = fClient->GetPicture("slink_s.xpm");
461 fSlink_t = fClient->GetPicture("slink_t.xpm");
462
463 if (!fFolder_s || !fFolder_t ||
464 !fApp_s || !fApp_t ||
465 !fDoc_s || !fDoc_t ||
466 !fSlink_s || !fSlink_t)
467 Error("TGFileContainer", "required pixmap(s) missing\n");
468
470}
471
472////////////////////////////////////////////////////////////////////////////////
473/// Create a list view container which will hold the contents of
474/// the current directory.
475
477 TGLVContainer(p,options, back)
478{
480 fFilter = 0;
481 fMtime = 0;
483 fRefresh = new TViewUpdateTimer(this, 1000);
487 fCleanups = new TList;
488
489 fFolder_s = fClient->GetPicture("folder_s.xpm");
490 fFolder_t = fClient->GetPicture("folder_t.xpm");
491 fApp_s = fClient->GetPicture("app_s.xpm");
492 fApp_t = fClient->GetPicture("app_t.xpm");
493 fDoc_s = fClient->GetPicture("doc_s.xpm");
494 fDoc_t = fClient->GetPicture("doc_t.xpm");
495 fSlink_s = fClient->GetPicture("slink_s.xpm");
496 fSlink_t = fClient->GetPicture("slink_t.xpm");
497
498 if (!fFolder_s || !fFolder_t ||
499 !fApp_s || !fApp_t ||
500 !fDoc_s || !fDoc_t ||
501 !fSlink_s || !fSlink_t)
502 Error("TGFileContainer", "required pixmap(s) missing\n");
503
505}
506
507////////////////////////////////////////////////////////////////////////////////
508/// Delete list view file container.
509
511{
512 if (fRefresh) delete fRefresh;
513 if (fFilter) delete fFilter;
522 if (fCleanups) {
523 TGPicture *pic;
524 TIter nextp(fCleanups);
525 while ((pic = (TGPicture *)nextp())) {
527 }
528 fCleanups->Clear();
529 delete fCleanups;
530 }
531}
532
533////////////////////////////////////////////////////////////////////////////////
534/// Add frame to the composite frame.
535
537{
539
540 nw = new TGFSFrameElement;
541 nw->fFrame = f;
542 nw->fLayout = l ? l : fgDefaultHints;
543 nw->fState = 1;
544 nw->fContainer = this;
545 fList->Add(nw);
546}
547
548////////////////////////////////////////////////////////////////////////////////
549/// Refresh container contents. Check every 5 seconds to see if the
550/// directory modification date has changed.
551
553{
554 FileStat_t sbuf;
555
556 if (gSystem->GetPathInfo(fDirectory, sbuf) == 0)
557 if (fMtime != (ULong_t)sbuf.fMtime) DisplayDirectory();
558
559 return kTRUE;
560}
561
562////////////////////////////////////////////////////////////////////////////////
563/// Set file selection filter.
564
565void TGFileContainer::SetFilter(const char *filter)
566{
567 if (fFilter) delete fFilter;
568 fFilter = new TRegexp(filter, kTRUE);
569}
570
571////////////////////////////////////////////////////////////////////////////////
572/// Sort file system list view container according to sortType.
573
575{
576 fSortType = sortType;
577
578 fList->Sort();
579
580 TGCanvas *canvas = (TGCanvas *) this->GetParent()->GetParent();
581 canvas->Layout();
582}
583
584////////////////////////////////////////////////////////////////////////////////
585/// Determine the file picture for the given file type.
586
588 const TGPicture **lpic, Int_t file_type, Bool_t is_link,
589 const char *name, Bool_t /*small*/)
590{
591 static TString cached_ext;
592 static const TGPicture *cached_spic = 0;
593 static const TGPicture *cached_lpic = 0;
594 const char *ext = name ? strrchr(name, '.') : 0;
595 *pic = 0;
596 *lpic = 0;
597
598 if (fCachePictures && ext && cached_spic && cached_lpic && (cached_ext == ext)) {
599 *pic = cached_spic;
600 *lpic = cached_lpic;
601 if (!is_link) return;
602 }
603
604 if (R_ISREG(file_type)) {
605 TString fname(name);
606 if (is_link && fname.EndsWith(".lnk")) {
607 fname.Remove(fname.Length()-4);
608 }
609 *pic = fClient->GetMimeTypeList()->GetIcon(fname.Data(), kTRUE);
610 *lpic = fClient->GetMimeTypeList()->GetIcon(fname.Data(), kFALSE);
611
612 if (*pic) {
613 if (!*lpic) *lpic = *pic;
614 if (ext) {
615 cached_ext = ext;
616 cached_spic = *pic;
617 cached_lpic = *lpic;
618 if (!is_link) return;
619 }
620 }
621 } else {
622 *pic = 0;
623 }
624
625 if (*pic == 0) {
626 *pic = fDoc_t;
627 *lpic = fDoc_s;
628
629 if (R_ISREG(file_type) && (file_type) & kS_IXUSR) {
630 *pic = fApp_t;
631 *lpic = fApp_s;
632 }
633 if (R_ISDIR(file_type)) {
634 *pic = fFolder_t;
635 *lpic = fFolder_s;
636 }
637 }
638 if (is_link) {
639 TImage *img1, *img2;
640 if (*pic && *lpic) {
641 TString lnk_name;
642 img1 = TImage::Create();
643 if (img1) {
644 img1->SetImage(((const TGPicture *)*pic)->GetPicture(),
645 ((const TGPicture *)*pic)->GetMask());
646 img2 = TImage::Open("slink_t.xpm");
647 if (img2) img1->Merge(img2);
648 lnk_name = ((const TGPicture *)*pic)->GetName();
649 lnk_name.Prepend("lnk_");
650 *pic = fClient->GetPicturePool()->GetPicture(lnk_name.Data(),
651 img1->GetPixmap(), img1->GetMask());
652 fCleanups->Add(((TObject *)*pic));
653 if (img2) delete img2;
654 delete img1;
655 }
656 img1 = TImage::Create();
657 if (img1) {
658 img1->SetImage(((const TGPicture *)*lpic)->GetPicture(),
659 ((const TGPicture *)*lpic)->GetMask());
660 img2 = TImage::Open("slink_s.xpm");
661 if (img2) img1->Merge(img2);
662 lnk_name = ((const TGPicture *)*lpic)->GetName();
663 lnk_name.Prepend("lnk_");
664 *lpic = fClient->GetPicturePool()->GetPicture(lnk_name.Data(),
665 img1->GetPixmap(), img1->GetMask());
666 fCleanups->Add(((TObject *)*lpic));
667 if (img2) delete img2;
668 delete img1;
669 }
670 }
671 else {
672 *pic = fSlink_t;
673 *lpic = fSlink_s;
674 }
675 }
676
677 cached_lpic = 0;
678 cached_spic = 0;
679 cached_ext = "";
680}
681
682////////////////////////////////////////////////////////////////////////////////
683/// Change current directory.
684
686{
687 TString savdir = gSystem->WorkingDirectory();
688 gSystem->ChangeDirectory(fDirectory.Data()); // so path of ".." will work
689 char *exppath = gSystem->ExpandPathName(path);
690 if (gSystem->ChangeDirectory(exppath)) {
692 gSystem->ChangeDirectory(savdir.Data());
694 }
695 delete[] exppath;
696}
697
698////////////////////////////////////////////////////////////////////////////////
699/// Display the contents of the current directory in the container.
700/// This can be used to refresh the contents of the window.
701
703{
704 RemoveAll();
706
707 // This automatically calls layout
709
710 // Make TGExplorerMainFrame display total objects in status bar
713
715}
716
717////////////////////////////////////////////////////////////////////////////////
718/// This function creates the file list from current dir.
719
721{
722 TString savdir = gSystem->WorkingDirectory();
723 if (!gSystem->ChangeDirectory(fDirectory.Data())) return;
724
725 FileStat_t sbuf;
726 if (gSystem->GetPathInfo(".", sbuf) == 0)
727 fMtime = sbuf.fMtime;
728
729 void *dirp;
730 if ((dirp = gSystem->OpenDirectory(".")) == 0) {
731 gSystem->ChangeDirectory(savdir.Data());
732 return;
733 }
734
735 const char *name;
736 while ((name = gSystem->GetDirEntry(dirp)) != 0 && fDisplayStat) {
737 if (strcmp(name, ".") && strcmp(name, ".."))
738 AddFile(name);
740 }
741 gSystem->FreeDirectory(dirp);
742
743 gSystem->ChangeDirectory(savdir.Data());
744}
745
746////////////////////////////////////////////////////////////////////////////////
747/// Add file in container.
748
750 const TGPicture *ilpic)
751{
752 TString filename;
753 TGFileItem *item = 0;
754 const TGPicture *spic, *slpic;
755 TGPicture *pic, *lpic;
756
757 FileStat_t sbuf;
758
759 if (gSystem->GetPathInfo(name, sbuf)) {
760 if (sbuf.fIsLink) {
761 Info("AddFile", "Broken symlink of %s.", name);
762 } else {
763 TString msg;
764 msg.Form("Can't read file attributes of \"%s\": %s.",
765 name, gSystem->GetError());
767 "Error", msg.Data(), kMBIconStop, kMBOk);
768 }
769 return item;
770 }
771
772 filename = name;
773 if (R_ISDIR(sbuf.fMode) || fFilter == 0 ||
774 (fFilter && filename.Index(*fFilter) != kNPOS)) {
775
776 if (ipic && ilpic) { // dynamic icons
777 spic = ipic;
778 slpic = ilpic;
779 } else {
780 GetFilePictures(&spic, &slpic, sbuf.fMode, sbuf.fIsLink, name, kTRUE);
781 }
782
783 pic = (TGPicture*)spic; pic->AddReference();
784 lpic = (TGPicture*)slpic; lpic->AddReference();
785
786 item = new TGFileItem(this, lpic, slpic, spic, pic,
788 sbuf, fViewMode);
789 AddItem(item);
790 }
791
792 return item;
793}
794
795////////////////////////////////////////////////////////////////////////////////
796/// Add remote file in container.
797
799 const TGPicture *ilpic)
800{
801 TString filename;
802 TGFileItem *item = 0;
803 const TGPicture *spic, *slpic;
804 TGPicture *pic, *lpic;
805
806 FileStat_t sbuf;
807
808 TRemoteObject *robj = (TRemoteObject *)obj;
809
810 robj->GetFileStat(&sbuf);
811 filename = robj->GetName();
812
813 if (R_ISDIR(sbuf.fMode) || fFilter == 0 ||
814 (fFilter && filename.Index(*fFilter) != kNPOS)) {
815
816 if (ipic && ilpic) { // dynamic icons
817 spic = ipic;
818 slpic = ilpic;
819 } else {
820 GetFilePictures(&spic, &slpic, sbuf.fMode, sbuf.fIsLink, filename, kTRUE);
821 }
822
823 pic = (TGPicture*)spic; pic->AddReference();
824 lpic = (TGPicture*)slpic; lpic->AddReference();
825
826 item = new TGFileItem(this, lpic, slpic, spic, pic, new TGString(filename),
827 sbuf, fViewMode);
828 AddItem(item);
829 }
830 return item;
831}
832
833////////////////////////////////////////////////////////////////////////////////
834/// stop refresh timer
835
837{
838 if (fRefresh) delete fRefresh;
839 fRefresh = 0;
840}
841
842////////////////////////////////////////////////////////////////////////////////
843/// start refreshing
844
846{
847 fRefresh = new TViewUpdateTimer(this, msec);
849}
850
851////////////////////////////////////////////////////////////////////////////////
852/// Save a file container widget as a C++ statement(s) on output stream out.
853
854void TGFileContainer::SavePrimitive(std::ostream &out, Option_t *option /*= ""*/)
855{
857
858 char quote = '"';
859 out << std::endl << " // container frame" << std::endl;
860 out << " TGFileContainer *";
861
862 if ((fParent->GetParent())->InheritsFrom(TGCanvas::Class())) {
863 out << GetName() << " = new TGFileContainer(" << GetCanvas()->GetName();
864 } else {
865 out << GetName() << " = new TGFileContainer(" << fParent->GetName();
866 out << "," << GetWidth() << "," << GetHeight();
867 }
868
870 if (GetOptions() == kSunkenFrame) {
871 out <<");" << std::endl;
872 } else {
873 out << "," << GetOptionString() <<");" << std::endl;
874 }
875 } else {
876 out << "," << GetOptionString() << ",ucolor);" << std::endl;
877 }
878 if (option && strstr(option, "keep_names"))
879 out << " " << GetName() << "->SetName(\"" << GetName() << "\");" << std::endl;
880 out << " " << GetCanvas()->GetName() << "->SetContainer("
881 << GetName() << ");" << std::endl;
882 out << " " << GetName() << "->DisplayDirectory();" << std::endl;
883 out << " " << GetName() << "->AddFile("<< quote << ".." << quote << ");" << std::endl;
884 out << " " << GetName() << "->StopRefreshTimer();" << std::endl;
885}
void Class()
Definition: Class.C:29
ULong_t Pixel_t
Definition: GuiTypes.h:39
#define f(i)
Definition: RSha256.hxx:104
#define h(i)
Definition: RSha256.hxx:106
const Ssiz_t kNPOS
Definition: RtypesCore.h:111
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
unsigned long ULong_t
Definition: RtypesCore.h:51
long Long_t
Definition: RtypesCore.h:50
bool Bool_t
Definition: RtypesCore.h:59
long long Long64_t
Definition: RtypesCore.h:69
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassImp(name)
Definition: Rtypes.h:365
EFSSortMode
Definition: TGFSContainer.h:29
@ kSortByDate
Definition: TGFSContainer.h:33
@ kSortByOwner
Definition: TGFSContainer.h:34
@ kSortByName
Definition: TGFSContainer.h:30
@ kSortByGroup
Definition: TGFSContainer.h:35
@ kSortByType
Definition: TGFSContainer.h:31
@ kSortBySize
Definition: TGFSContainer.h:32
@ kChildFrame
Definition: TGFrame.h:57
@ kSunkenFrame
Definition: TGFrame.h:61
Int_t Compare(const void *item1, const void *item2)
EListViewMode
Definition: TGListView.h:39
@ kLVLargeIcons
Definition: TGListView.h:40
@ kMBOk
Definition: TGMsgBox.h:44
@ kMBIconStop
Definition: TGMsgBox.h:33
char name[80]
Definition: TGX11.cxx:109
int type
Definition: TGX11.cxx:120
Bool_t R_ISFIFO(Int_t mode)
Definition: TSystem.h:121
Bool_t R_ISSOCK(Int_t mode)
Definition: TSystem.h:122
Bool_t R_ISBLK(Int_t mode)
Definition: TSystem.h:118
Bool_t R_ISREG(Int_t mode)
Definition: TSystem.h:119
Bool_t R_ISLNK(Int_t mode)
Definition: TSystem.h:120
Bool_t R_ISDIR(Int_t mode)
Definition: TSystem.h:116
R__EXTERN TSystem * gSystem
Definition: TSystem.h:560
Bool_t R_ISCHR(Int_t mode)
Definition: TSystem.h:117
@ kS_IRGRP
Definition: TSystem.h:107
@ kS_IWUSR
Definition: TSystem.h:104
@ kS_ISUID
Definition: TSystem.h:99
@ kS_IRUSR
Definition: TSystem.h:103
@ kS_IXOTH
Definition: TSystem.h:113
@ kS_ISGID
Definition: TSystem.h:100
@ kS_IROTH
Definition: TSystem.h:111
@ kS_IWGRP
Definition: TSystem.h:108
@ kS_IXUSR
Definition: TSystem.h:105
@ kS_ISVTX
Definition: TSystem.h:101
@ kS_IWOTH
Definition: TSystem.h:112
@ kS_IXGRP
Definition: TSystem.h:109
#define gVirtualX
Definition: TVirtualX.h:345
Int_t MK_MSG(EWidgetMessageTypes msg, EWidgetMessageTypes submsg)
@ kCT_SELCHANGED
@ kC_CONTAINER
#define snprintf
Definition: civetweb.c:1540
Atom_t fDataType
Definition: TGDNDManager.h:75
Int_t fDataLength
Definition: TGDNDManager.h:78
void * fData
Definition: TGDNDManager.h:77
virtual void Layout()
Create layout for canvas.
Definition: TGCanvas.cxx:2224
const TGWindow * GetDefaultRoot() const
Returns the root (i.e.
Definition: TGClient.cxx:234
TGMimeTypes * GetMimeTypeList() const
Definition: TGClient.h:155
const TGPicture * GetPicture(const char *name)
Get picture from the picture pool.
Definition: TGClient.cxx:289
void NeedRedraw(TGWindow *w, Bool_t force=kFALSE)
Set redraw flags.
Definition: TGClient.cxx:372
TGPicturePool * GetPicturePool() const
Definition: TGClient.h:135
void FreePicture(const TGPicture *pic)
Free picture resource.
Definition: TGClient.cxx:308
virtual void MapSubwindows()
Map all sub windows that are part of the composite frame.
Definition: TGFrame.cxx:1146
TList * fList
Definition: TGFrame.h:351
static TGLayoutHints * fgDefaultHints
Definition: TGFrame.h:356
const TGWindow * fMsgWindow
Definition: TGCanvas.h:52
TGCanvas * GetCanvas() const
Definition: TGCanvas.h:109
Int_t fSelected
Definition: TGCanvas.h:59
virtual void RemoveAll()
Remove all items from the container.
Definition: TGCanvas.cxx:636
Int_t fTotal
Definition: TGCanvas.h:58
const TGPicture * fSlink_s
TGFileContainer(const TGWindow *p=0, UInt_t w=1, UInt_t h=1, UInt_t options=kSunkenFrame, Pixel_t back=GetDefaultFrameBackground())
Create a list view container which will hold the contents of the current directory.
virtual TGFileItem * AddFile(const char *name, const TGPicture *pic=0, const TGPicture *lpic=0)
Add file in container.
void CreateFileList()
This function creates the file list from current dir.
const TGPicture * fFolder_s
TViewUpdateTimer * fRefresh
void StopRefreshTimer()
stop refresh timer
virtual Bool_t HandleTimer(TTimer *t)
Refresh container contents.
const TGPicture * fDoc_t
const TGPicture * fApp_t
const TGPicture * fApp_s
virtual void Sort(EFSSortMode sortType)
Sort file system list view container according to sortType.
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=0)
Add frame to the composite frame.
const TGPicture * fDoc_s
virtual void ChangeDirectory(const char *path)
Change current directory.
const TGPicture * fSlink_t
virtual void DisplayDirectory()
Display the contents of the current directory in the container.
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a file container widget as a C++ statement(s) on output stream out.
void StartRefreshTimer(ULong_t msec=1000)
start refreshing
const TGPicture * fFolder_t
TRegexp * fFilter
friend class TGFSFrameElement
virtual ~TGFileContainer()
Delete list view file container.
virtual void SetFilter(const char *filter)
Set file selection filter.
virtual void GetFilePictures(const TGPicture **pic, const TGPicture **lpic, Int_t file_type, Bool_t is_link, const char *ext, Bool_t small)
Determine the file picture for the given file type.
EFSSortMode fSortType
virtual TGFileItem * AddRemoteFile(TObject *obj, const TGPicture *ipic=0, const TGPicture *ilpic=0)
Add remote file in container.
Int_t GetUid() const
Definition: TGFSContainer.h:93
Long64_t fSize
Definition: TGFSContainer.h:60
const TGPicture * fLcurrent
Definition: TGFSContainer.h:55
Int_t GetGid() const
Definition: TGFSContainer.h:94
TBufferFile * fBuf
Definition: TGFSContainer.h:61
const TGPicture * fBlpic
Definition: TGFSContainer.h:53
void Init(const TGPicture *blpic, const TGPicture *slpic, FileStat_t &stat, EListViewMode viewMode)
Common initializer for file list view item.
Long_t fModTime
Definition: TGFSContainer.h:59
const TGPicture * fSlpic
Definition: TGFSContainer.h:54
Long64_t GetSize() const
Definition: TGFSContainer.h:91
TDNDData fDNDData
Definition: TGFSContainer.h:62
Long_t GetModTime() const
Definition: TGFSContainer.h:92
Int_t GetType() const
Definition: TGFSContainer.h:90
virtual void DoRedraw()
Draw list view container item.
TGFileItem(const TGWindow *p=0, const TGPicture *bpic=0, const TGPicture *blpic=0, const TGPicture *spic=0, const TGPicture *slpic=0, TGString *name=0, Int_t type=0, Long64_t size=1, Int_t uid=0, Int_t gid=0, Long_t modtime=0, EListViewMode viewMode=kLVList, UInt_t options=kVerticalFrame, Pixel_t back=GetWhitePixel())
Create a list view item.
virtual void SetViewMode(EListViewMode viewMode)
Set container item view mode.
Bool_t fIsLink
Definition: TGFSContainer.h:58
virtual ~TGFileItem()
Destructor.
static Pixel_t GetWhitePixel()
Get white pixel value.
Definition: TGFrame.cxx:691
UInt_t fHeight
Definition: TGFrame.h:135
virtual void SendMessage(const TGWindow *w, Long_t msg, Long_t parm1, Long_t parm2)
Send message (i.e.
Definition: TGFrame.cxx:627
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
virtual UInt_t GetOptions() const
Definition: TGFrame.h:244
TString GetOptionString() const
Returns a frame option string - used in SavePrimitive().
Definition: TGFrame.cxx:2462
UInt_t fWidth
Definition: TGFrame.h:134
UInt_t GetHeight() const
Definition: TGFrame.h:272
UInt_t GetWidth() const
Definition: TGFrame.h:271
void SaveUserColor(std::ostream &out, Option_t *)
Save a user color in a C++ macro file - used in SavePrimitive().
Definition: TGFrame.cxx:2435
Pixel_t fBackground
Definition: TGFrame.h:142
Definition: TGIcon.h:30
virtual void DoRedraw()
Redraw picture.
Definition: TGIcon.cxx:127
virtual void AddItem(TGLVEntry *item)
Definition: TGListView.h:225
EListViewMode fViewMode
Definition: TGListView.h:204
TGString ** fSubnames
Definition: TGListView.h:62
virtual void DoRedraw()
Redraw list view item.
Definition: TGListView.cxx:314
FontStruct_t fFontStruct
Definition: TGListView.h:77
EListViewMode fViewMode
Definition: TGListView.h:70
GContext_t fNormGC
Definition: TGListView.h:76
virtual void SetViewMode(EListViewMode viewMode)
Set the view mode for this list item.
Definition: TGListView.cxx:271
TGString * GetItemName() const
Definition: TGListView.h:106
Int_t * fCtw
Definition: TGListView.h:65
const TGPicture * GetIcon(const char *filename, Bool_t small_icon)
Return icon belonging to mime type of filename.
TGClient * fClient
Definition: TGObject.h:37
Handle_t fId
Definition: TGObject.h:36
void FreePicture(const TGPicture *pic)
Remove picture from cache if nobody is using it anymore.
Definition: TGPicture.cxx:277
const TGPicture * GetPicture(const char *name)
Get a picture from the picture pool.
Definition: TGPicture.cxx:80
UInt_t GetHeight() const
Definition: TGPicture.h:64
void Draw(Option_t *="")
Default Draw method for all objects.
Definition: TGPicture.h:57
UInt_t GetWidth() const
Definition: TGPicture.h:63
Int_t GetLength() const
Definition: TGString.h:39
const char * GetString() const
Definition: TGString.h:40
virtual void SetWindowName(const char *name=0)
Set window name.
Definition: TGWindow.cxx:118
virtual const TGWindow * GetMainFrame() const
Returns top level main frame.
Definition: TGWindow.cxx:133
virtual const char * GetName() const
Return unique name, used in SavePrimitive methods.
Definition: TGWindow.cxx:221
const TGWindow * fParent
Definition: TGWindow.h:37
const TGWindow * GetParent() const
Definition: TGWindow.h:85
An abstract interface to image processing library.
Definition: TImage.h:29
static TImage * Open(const char *file, EImageFileTypes type=kUnknown)
Open a specified image file.
Definition: TImage.cxx:119
virtual void SetImage(const Double_t *, UInt_t, UInt_t, TImagePalette *=0)
Definition: TImage.h:116
static TImage * Create()
Create an image.
Definition: TImage.cxx:36
virtual void Merge(const TImage *, const char *="alphablend", Int_t=0, Int_t=0)
Definition: TImage.h:172
virtual Pixmap_t GetPixmap()
Definition: TImage.h:235
virtual Pixmap_t GetMask()
Definition: TImage.h:236
A doubly linked list.
Definition: TList.h:44
virtual void Add(TObject *obj)
Definition: TList.h:87
virtual void Clear(Option_t *option="")
Remove all objects from the list.
Definition: TList.cxx:399
virtual void Sort(Bool_t order=kSortAscending)
Sort linked list.
Definition: TList.cxx:934
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:47
Mother of all ROOT objects.
Definition: TObject.h:37
virtual Bool_t IsSortable() const
Definition: TObject.h:131
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:880
virtual Int_t Compare(const TObject *obj) const
Compare abstract method.
Definition: TObject.cxx:159
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition: TObject.cxx:854
void AddReference()
Definition: TRefCnt.h:40
Regular expression class.
Definition: TRegexp.h:31
The TRemoteObject class provides protocol for browsing ROOT objects from a remote ROOT session.
Definition: TRemoteObject.h:36
Bool_t GetFileStat(FileStat_t *sbuf)
Get remote file status.
Basic string class.
Definition: TString.h:131
Ssiz_t Length() const
Definition: TString.h:405
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
Return true if string ends with the specified string.
Definition: TString.cxx:2177
const char * Data() const
Definition: TString.h:364
TString & Prepend(const char *cs)
Definition: TString.h:656
TString & Remove(Ssiz_t pos)
Definition: TString.h:668
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition: TString.cxx:2311
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Definition: TString.cxx:2289
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
Definition: TString.h:634
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
Definition: TSystem.cxx:1265
virtual void FreeDirectory(void *dirp)
Free a directory.
Definition: TSystem.cxx:853
virtual void * OpenDirectory(const char *name)
Open a directory. Returns 0 if directory does not exist.
Definition: TSystem.cxx:844
int GetPathInfo(const char *path, Long_t *id, Long_t *size, Long_t *flags, Long_t *modtime)
Get info about a file: id, size, flags, modification time.
Definition: TSystem.cxx:1389
virtual const char * GetDirEntry(void *dirp)
Get a directory entry. Returns 0 if no more entries.
Definition: TSystem.cxx:861
virtual Bool_t ChangeDirectory(const char *path)
Change directory.
Definition: TSystem.cxx:870
virtual void AddTimer(TTimer *t)
Add timer to list of system timers.
Definition: TSystem.cxx:481
virtual const char * BaseName(const char *pathname)
Base name of a file name. Base name of /user/root is root.
Definition: TSystem.cxx:942
virtual const char * WorkingDirectory()
Return working directory.
Definition: TSystem.cxx:879
virtual Bool_t ProcessEvents()
Process pending events (GUI, timers, sockets).
Definition: TSystem.cxx:426
virtual const char * GetError()
Return system error string.
Definition: TSystem.cxx:260
virtual UserGroup_t * GetUserInfo(Int_t uid)
Returns all user info in the UserGroup_t structure.
Definition: TSystem.cxx:1589
Handles synchronous and a-synchronous timer events.
Definition: TTimer.h:51
virtual Bool_t Notify()
Notify when timer times out.
Definition: TTimer.cxx:143
TF1 * f1
Definition: legend1.C:11
static constexpr double ms
Int_t fMode
Definition: TSystem.h:128
Long64_t fSize
Definition: TSystem.h:131
Int_t fGid
Definition: TSystem.h:130
Long_t fMtime
Definition: TSystem.h:132
Bool_t fIsLink
Definition: TSystem.h:133
Int_t fUid
Definition: TSystem.h:129
TString fUser
Definition: TSystem.h:142
TString fGroup
Definition: TSystem.h:143
auto * l
Definition: textangle.C:4