Changes between Version 3 and Version 4 of Chimera2/qtbugs


Ignore:
Timestamp:
Sep 6, 2013, 5:21:26 PM (13 years ago)
Author:
goddard
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Chimera2/qtbugs

    v3 v4  
    11= Qt Bugs effecting Chimera 2 =
     2 1. Toolbar tooltips don't go away promptly [https://bugreports.qt-project.org/browse/QTBUG-26669 26669] . Mac.
    23
    3  - Toolbar tooltips don't go away promptly [https://bugreports.qt-project.org/browse/QTBUG-26669 26669]. Mac.
    4  
    5 - Mouse tracking broken [https://bugreports.qt-project.org/browse/QTBUG-29751 29751].  Don't get mouse motion events unless a mouse button is pressed.  Wanted this to detect mouse pauses for showing atom specs. Mac.
     4 1. Mouse tracking broken [https://bugreports.qt-project.org/browse/QTBUG-29751 29751] .  Don't get mouse motion events unless a mouse button is pressed.  Wanted this to detect mouse pauses for showing atom specs. Mac.
    65
    7  - Can't give command-line focus [https://bugreports.qt-project.org/browse/QTBUG-32914 32914].
    8   Can't give QLineEdit the focus. QLineEdit for command line does not get key strokes after its setFocus() method is called.  Tests show it
    9   reports hasFocus() -> True, isActiveWindow() -> True, and isEnabled() -> True but still the QMainWindow gets
    10   the key events.  The QLineEdit is wrapped in a QDockWidget.  Several reports on the web of this problem
    11   with no solution described.  Clicking into the QLineEdit with the mouse makes it accept key events in most
    12   but not all cases.  Clicking in does not make it accept key events if it already has the focus from the
    13   setFocus() call.  When it doesn't work it still has the blue highlighting indicating it has focus and has
    14   a blinking insertion cursor.  It simply doesn't take key strokes.  Seems like it really does have focus
    15   but simply declines to process the key events.
     6 1. Can't give command-line focus [https://bugreports.qt-project.org/browse/QTBUG-32914 32914].
    167
    17 - QLineEdit text color can not be set easily.  Want red color for some status line warnings.  Can change
    18  palette text color to change all text to new color.  For coloring some text need to switch to a QTextBrowser.
    19  [http://stackoverflow.com/questions/14417333/how-can-i-change-color-of-part-of-the-text-in-qlineedit QLineEdit text color].
     8 1. Can't give QLineEdit the focus. QLineEdit for command line does not get key strokes after its setFocus() method is called.  Tests show it reports hasFocus() -> True, isActiveWindow() -> True, and isEnabled() -> True but still the QMainWindow gets the key events.  The QLineEdit is wrapped in a QDockWidget.  Several reports on the web of this problem with no solution described.  Clicking into the QLineEdit with the mouse makes it accept key events in most but not all cases.  Clicking in does not make it accept key events if it already has the focus from the setFocus() call.  When it doesn't work it still has the blue highlighting indicating it has focus and has a blinking insertion cursor.  It simply doesn't take key strokes.  Seems like it really does have focus but simply declines to process the key events.
    209
    21 - QApplication.setWindowIcon() or QWidget.setWindowIcon() does not change Mac Dock Icon, Qt 5.0.2.
     10 1. QLineEdit text color can not be set easily.  Want red color for some status line warnings.  Can change
     11  palette text color to change all text to new color.  For coloring some text need to switch to a QTextBrowser. [http://stackoverflow.com/questions/14417333/how-can-i-change-color-of-part-of-the-text-in-qlineedit QLineEdit text color] .
    2212
    23 - Trackpad event handling disabled on Mac due to scrolling lag issues [https://bugreports.qt-project.org/browse/QTBUG-28126 28126],
    24   [https://codereview.qt-project.org/#change,37451 37451].
     13 1. QApplication.setWindowIcon() or QWidget.setWindowIcon() does not change Mac Dock Icon, Qt 5.0.2.
    2514
    26 - Initial qt window size will be at most 2/3 screen height [https://bugreports.qt-project.org/browse/QTBUG-486 486] (closed although not fixed).
    27   Main window doesn't respect the sizeHint and prevents me from making an initial 1024x1024 graphics area.
     15 1. Trackpad event handling disabled on Mac due to scrolling lag issues [https://bugreports.qt-project.org/browse/QTBUG-28126 28126],
     16  [https://codereview.qt-project.org/#change,37451 37451] .
    2817
    29 - QTextBrowser opens a link to an image <a href="image.jpg">x</a> showing just binary text instead
    30   of the image.  Seems it only works to link to another html file.  Wanted to link thumbnail image to
    31   full size image in reply log.
     18 1. Initial qt window size will be at most 2/3 screen height [https://bugreports.qt-project.org/browse/QTBUG-486 486] (closed although not fixed).
     19  Main window doesn't respect the sizeHint and prevents me from making an initial 1024x1024 graphics area.
    3220
    33 - Mac retina display support may not be working [https://bugreports.qt-project.org/browse/QTBUG-26795 26795].
     21 1. QTextBrowser opens a link to an image <a href="image.jpg">x</a> showing just binary text instead
     22  of the image.  Seems it only works to link to another html file.  Wanted to link thumbnail image to full size image in reply log.
     23
     24 1. Mac retina display support may not be working [https://bugreports.qt-project.org/browse/QTBUG-26795 26795].
    3425  Did not test this.
     26
     27 1. Clicking a line in the command history prepends a directory to the anchor if it is done after the user's guide has been shown
     28  It prepends the user's guide directory.  Clearing the QTextBrowser source, history and search paths did not remedy this behavior. Put in code to work around this and strip off the prepended directory.  Found no bug report on web.