- Apr 16, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14710 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
* Problem with libroot-fftw to root-plugin-fftw3 transition. * Add `-lz' to output of `root-config --libs' if needed. * Remove `G__qtgsi.{h,cxx}' in `distclean'. * There were a lot of places where you had `$FOO$BAR' which can be disastrous, in that none of the variables are expanded (depends on the actual shell). Also, when building `mktypes', there was ` $CXXOUTmktypes' which won't work. I put `{...}' around _all_ variables in the script. * Some minor packaging fixes git-svn-id: http://root.cern.ch/svn/root/trunk@14709 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 15, 2006
-
-
Rene Brun authored
have different compression levels. git-svn-id: http://root.cern.ch/svn/root/trunk@14708 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
This uses a better algorithm when computing the axis tick length. git-svn-id: http://root.cern.ch/svn/root/trunk@14707 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
The computation of the equivalent chisquare was wrong because the errors per bin had wrongly been set to 1. git-svn-id: http://root.cern.ch/svn/root/trunk@14706 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
import of CINT tag v5-16-11 from the CINT CVS. For what else is new see http://root.cern.ch/root/Cint.phtml?relnote. This includes several parsing improvements (see CINT changelog for details) In particular this includes support for distinguish (from the string based interface) a template of Double32_t from a template of double. This allows the storing of the data member as float. Note: The compiler still can not distinguish the 2 forms and thus only 'string' based interface will be able to handle this distinction. git-svn-id: http://root.cern.ch/svn/root/trunk@14705 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 14, 2006
-
-
Rene Brun authored
- New TGCLient methods are used to handle "WaitForUnmap" popups correctly, i.e. it is forbidden to place context menu while other popup menus are mapped. - Unmap popup menus on button click on any area of display. - Unmap all pupup menus on guibuilder end session. git-svn-id: http://root.cern.ch/svn/root/trunk@14704 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
- TGClient. Two getter methods GetWaitForEvent(), GetWaitForWindow() introduced. New method ResetWaitFor(TGWindow *w) allows to interrupt WaitForUnmap, WaitForDestroy event loops. - TGComboBox minory mods - TRootBrowser, TRootCanavas more protection against editting was added git-svn-id: http://root.cern.ch/svn/root/trunk@14703 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
New icons for the GUI Builder git-svn-id: http://root.cern.ch/svn/root/trunk@14702 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14701 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 13, 2006
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14700 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
- Dynamic context menus. Possibility to create submenus and checked entries are implemented. - Changes in resize method added , which allow to preserve fixed witdh/height for some widgets, e.g. scroll bars and sliders. - TGListBox and TGComboBox widgets were added to widgets palette. - many minory improvements. git-svn-id: http://root.cern.ch/svn/root/trunk@14699 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
- TGWindow o kEditDisableBtnEnable - bit intoduced, which says "window cannot be edited but can handle mouse button events". Typical usage is buttons in complex widgets like buttons in scroll bar, tab elements in TGTab etc. - TGFrame o SetBgndColor(const char *hexvalue) method is introduced. This method allows to set frame background color as hexvalue e.g. "#0c0c0c", or by color name "white", "blue" etc. This method was added to guibuilder context menu. - TGCompositeFrame o TGLayoutManager *GetLayoutManager() const. void SetLayoutManager(TGLayoutManager *l) made virtual. That hepled to fix bugs #15, #16 fronm guibuilder bugs list. o SetBgndColor(const char *hexvalue) is overloaded in order to set background color for all subframes. - TGListBox. Few methods added to context menu. o New method NewEntry(const char *s = "Entry") - creates new entry placed next to selected entry. o void RemoveEntry(Int_t id = -1) - remove selected entry/entries from listbox o void SetBgndColor(const char *color) - overloaded to set background color for list box entries. o void SetMultipleSelections(Bool_t) - toggle on/off multiple selection o TGListBox widget was added to guibuilder widgte palette. - TGMenu. o new method was introduced: CheckEntryByData(void *user_data) It allows to check/uncheck menu entry by specifying user data associated with entry. - TGNumberEntry. Few methods added as submemu of context menu of guibuilder. That greatly simplifies paremeter selection. o Set fixed height for guibuilding. - TGScrollBars, TGSliders. Fix height for horizontal bar/slider, fix width for vertical bar/slider when it is resized during guibuilding. - TGTextEntry. o Several context menu methods are now selected via context submenu. o Set fixed height for guibuilding. - TGComboBox. Changes made in order add TGComboBox widget to guibuilder. git-svn-id: http://root.cern.ch/svn/root/trunk@14698 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
New icons for the GUI Builder git-svn-id: http://root.cern.ch/svn/root/trunk@14697 27541ba8-7e3a-0410-8455-c3a389f83636
-
Stefan Roiser authored
- Added a protection to disable autoloading when processing a Reflex dictionary with Cintex (deadlock problem in Windows) - Changed address 0x100 used for offset calculation to avoid segfault in Wim's Linux installation - Removed obsolete methods in CINTClassBuilder git-svn-id: http://root.cern.ch/svn/root/trunk@14696 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14695 27541ba8-7e3a-0410-8455-c3a389f83636
-
Ilka Antcheva authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14694 27541ba8-7e3a-0410-8455-c3a389f83636
-
Ilka Antcheva authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14693 27541ba8-7e3a-0410-8455-c3a389f83636
-
Ilka Antcheva authored
- Update of TGraph Editor to handle the TGraph's Exclusion Zone. git-svn-id: http://root.cern.ch/svn/root/trunk@14692 27541ba8-7e3a-0410-8455-c3a389f83636
-
Ilka Antcheva authored
- added new TGLineWidthComboBox entry "None" for the case line width = 0 according to the value of the last parameter in the constructor Bool_t none = kFALSE by default (needed by TGraph's exclusion zone GUI) - follow up changes in TGListBox class git-svn-id: http://root.cern.ch/svn/root/trunk@14691 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Makefile.config updated. git-svn-id: http://root.cern.ch/svn/root/trunk@14690 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14689 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14688 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Changes to enable running from GUI instead of interaction on prompt including adding skippedFiles return argument to UploadDataSet(), TProof::GetDataSets() and changing ShowDataSet() methods as well as enum EUploadDataSetAnswer to TVirtualProof. VerifyDataSet returns now the number of missing files. Changing all TSocket::Send on client side to Broadcast. Correcting some synchronization problems and adding comments. Using TUrl::SetPort to avoid default port 80. When comparing user answer with "n", "none" was treated as "n". Now we first compare with "none". git-svn-id: http://root.cern.ch/svn/root/trunk@14687 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
I saw that you had added the class TVirtualFFT, so I changed the package from libroot-fftw to root-plugin-fftw3. Finally, I made some corrections to some of the Debian packaging. git-svn-id: http://root.cern.ch/svn/root/trunk@14686 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14685 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14684 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14683 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
This is mandatory when running with the CINT dictionaries. Modify the test/makefile such that the examples can be linked on Linux. git-svn-id: http://root.cern.ch/svn/root/trunk@14682 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14681 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 12, 2006
-
-
Philippe Canal authored
only if explicitly requested (gmake qtcint) and created it in $ROOTSYS/lib git-svn-id: http://root.cern.ch/svn/root/trunk@14680 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14679 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14678 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14677 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14676 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Added TSQLStatment abstract class and TMySQLStatment and TOracleStatement classes to support bulk DB operations. For more details see the description in the TSQLStatement.cxx file. git-svn-id: http://root.cern.ch/svn/root/trunk@14675 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
patch for windows, it fixes this error : qtgsi\src\G__QtGSI.cxx(1210) : error C2248: 'TQRootCanvas::SelectedPadChanged' : cannot access protected member declared in class 'TQRootCanvas' git-svn-id: http://root.cern.ch/svn/root/trunk@14674 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14673 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
Changes for Windows git-svn-id: http://root.cern.ch/svn/root/trunk@14672 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Here's a patch and some new files to make the new package libroot-fftw. I've also updated the Emacs Lisp helper file, and fixed a problem in the Autoconf macro file. git-svn-id: http://root.cern.ch/svn/root/trunk@14671 27541ba8-7e3a-0410-8455-c3a389f83636
-