Skip to content
Snippets Groups Projects
  1. Feb 07, 2007
  2. Feb 04, 2007
  3. Jan 29, 2007
  4. Jan 26, 2007
    • Rene Brun's avatar
      From Valeri Fine: · ddbef477
      Rene Brun authored
      TQtSymbolCodec.h:
      ================
          - remove the compilation warning
      
      TGQt.cxx, TGQt.h
      ================
      -  Two new methods:
      
             SetFileName
             GetNewFileName
      
          to generate the file names for the simple animations
      
       - Add QTDIR to include path and lib path to build
         the Qt-based applications via ACliC
      
       - Fix to take in account the pixmap file name
         may be followed by the sumbol "+NN"
      
      TQtWidget.cxx:
      =============
        - Remove the CPP flags that introduced
          the redundant  ROOT version dependency.
      
        - Fix to take in account the pixmap file name
          may be followed by the symbol "+NN"
      
      LinkDef.h:
      ===========
       Add two ROOT C++ function (to be ROOT Slots):
      
          QConnectCint
          QConnectTerminate
      
       and the new class
          TQtRootSlot
       to the ROOT dictionary
      
      TQtMarker:
      =========
       -  Copy ctor and operator=() have been introduced
      
      QtWidget.h, TQtTimer.h, TQtClientWidget.h TQtClientFilter.h, TQMimeTypes.h
      =====================================================================
       - Clean up. Remove the redundant CPP flags
      
      TQtApplication.h
      ================
        Clean up. The dummy copy ctor and operator=() have been introduced
      
      New TQtRootSlot class:
      ======================
      (see: TQtRootSlot.h, TQtRootSlot.cxx)
      The new class TQtRootSlot  to connect the Qt signals with the arbitrary ROOT slots.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@17523 27541ba8-7e3a-0410-8455-c3a389f83636
      ddbef477
  5. Dec 13, 2006
  6. Dec 12, 2006
  7. Nov 10, 2006
  8. Nov 07, 2006
  9. Oct 30, 2006
  10. Oct 04, 2006
  11. Aug 30, 2006
  12. Aug 24, 2006
  13. Aug 15, 2006
  14. Jul 05, 2006
  15. Jun 28, 2006
    • Ilka Antcheva's avatar
      from Valeri Fine: · b5923975
      Ilka Antcheva authored
      - moved the QApplication::processEvents calling sequence
      from TGQt::EventPending to TGQt::NextEvent method.
      
      It should "reduce" the probability of the "dead lock" for the Qt-based
      multi-threaded ROOT applications. The problem was popped up under recent
      ROOT just by chance. It might have been seen under either ROOT versions.
      
      The TGQt::EventsPending() method was written to facilitate the Win32
      multi-thread Win32 GUI layer. Since Qt-version on all platforms uses the
      single threaded GUI the method in question can be reshaped. I have done
      that.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@15590 27541ba8-7e3a-0410-8455-c3a389f83636
      b5923975
  16. Jun 27, 2006
    • Ilka Antcheva's avatar
      from Valeri Fine: · 26bb9722
      Ilka Antcheva authored
      qt/inc/rootlibs.pr
      - bug fix (better check the Qt-layer presence)
      
      TGQt.h
      - added the static TGQt::iwid() method to the RootCint dictionary
      
      TQtApplication.cxx,
      - removed the redundant header file
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@15567 27541ba8-7e3a-0410-8455-c3a389f83636
      26bb9722
  17. May 30, 2006
    • Ilka Antcheva's avatar
      From Valeri Fine: · 09b07031
      Ilka Antcheva authored
      TGQt.cxx,GQtGUI.cxx, TGQt.h:
      - protection: SetDynamicPath caused SegFault on Win32
      - Add "const" to some methods as needed
      - Activate setCompositionMode for Qt 4.1.2
      - Add Getter/Setter for the alpha channel with Qt 4.1.2
      
      TQtClientGuard.cxx:
      - Compilation warning with Qt 4.1.2
      
      TQtBrsuh:
      - Add "const" to some methods as needed
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@15222 27541ba8-7e3a-0410-8455-c3a389f83636
      09b07031
  18. May 10, 2006
  19. May 08, 2006
    • Ilka Antcheva's avatar
      From Valeri Fine: · 7d1a38a7
      Ilka Antcheva authored
      Qt 4.1.2 adjustment in:
      
      TQtWidget.cxx
         - replace the deprecated by Qt4 "bitBlt" method
           with QPainter::drawPixmap
      
      GQt.cxx.cxx
         - comment out "QPainter::setCompositionMode" to avoid the
           Qt4 run-time warning for time being.
      
      QtGUI.cxx:
         - Qt4 corrections accidentally missed in the previous merge
      
      TQtClientWidget.cxx, TQtClientWidget.h:
         - Move class ctor to the implementation code
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@14950 27541ba8-7e3a-0410-8455-c3a389f83636
      7d1a38a7
  20. May 03, 2006
  21. Apr 14, 2006
  22. Apr 12, 2006
  23. Apr 07, 2006
  24. Apr 03, 2006
  25. Apr 01, 2006
    • Philippe Canal's avatar
      From Valeri Fine: · 7526ba26
      Philippe Canal authored
      I removed:
      
          1. Obsolete Qt classes
          2. Class to back Qt/Embedded "QWS"
          3. Nestcape plugiin classes "QNT"
          4. Qt templated container. One should use ROOT container instead.
      
      
      
      To test thing you try the simple example (with Qt-layer "on" of course)
      
      root [0] .L $ROOTSYS/cint/include/qtcint.dll
      root [1] cout << QFileDialog::getOpenFileName() << endl;
      
      This should popup the Qt "Open File Dialog" and print out the file name
      one may have selected.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@14521 27541ba8-7e3a-0410-8455-c3a389f83636
      7526ba26
  26. Mar 29, 2006
  27. Mar 27, 2006
  28. Mar 24, 2006
    • Ilka Antcheva's avatar
      From Valeri Fine: · bbeb61d9
      Ilka Antcheva authored
      - removed redundand classes:
         TQtApplicationThread.h, TQtRootThread.h, TQtTermInputHandler.h,
         TQtThread.h, TQtThreadStub.h, TRootMainThread.h,
         TQtApplicationThread.cxx, TQtRootThread.cxx, TQtTermInputHandler.cxx,
         TQtThread.cxx, GQtGUIThread.cxx
      - removed from the rest Qt code the statements related to the classes above
      - added TQtLockGuard.h, TQtEmitter.h
      - removed all WiN32 redundant dependencies
      - added Qt4 CPP compilation flag for future transition to Qt4
      
      TQtWidget - for "pure" Qt GUI application disable ROOT prompt, ROOT terminal
          input handler and CTRL-C signal handler "by default".
          To get the ROOT interactive command mode back the statement:
          "Gui.Prompt       true"
          should be present in the .rootrc file to enable the standard ROOT command mode option
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@14410 27541ba8-7e3a-0410-8455-c3a389f83636
      bbeb61d9
  29. Mar 18, 2006
    • Fons Rademakers's avatar
      From Axel: · 48cd001d
      Fons Rademakers authored
      Dictionary G__%.o: G__%.cxx rules now in main Makefile instead of Module.mk's
      => changes in Module.mk.
      
      First Module.mk's included, then Makefile.precomp - we need ALLHDRS defined
      
      Split $(PCHEXTRAOBJ) and $(PCHFILE) rules - fixes clash with make -j2
      
      Define CINTCXXFLAGS:= - otherwise they will contain PCHCXXFLAGS via
      their definition as a copy of CXXFLAGS.
      
      MSVC: prevent LNK4206 linker warning (-Yl...)
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@14301 27541ba8-7e3a-0410-8455-c3a389f83636
      48cd001d
  30. Feb 18, 2006
  31. Jan 20, 2006
  32. Jan 19, 2006
    • Ilka Antcheva's avatar
      From Valeri Fine: · f0c41af0
      Ilka Antcheva authored
        - Add documentation.
        - Add QT_VERSION 4 CPP flag (no test has been performed against Qt4 yet).
        - Remove the redundant code.
        - Add the enforcement of the Qt-ROOT layer for Qt-applications
          to eliminate the need to adjust ".rootrc" and eventually crash.
          If user started the  Qt-application then Gui.Backend "native"
          must be treated as "qt". (thanks CMS feedback )
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@13866 27541ba8-7e3a-0410-8455-c3a389f83636
      f0c41af0
Loading