Commit Graph

291 Commits (cd2dc5026e152d6cf57895fe4f41cabdf2bb3eca)
 

Author SHA1 Message Date
Slávek Banko bcd361a820 IconView: Deselect items that are hidden by the filter
during selectAll and invertSelection
This resolves bug 2750

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 5b1f451dd6)
8 years ago
Slávek Banko 35fd726141 Do not force POSIX mutexes on FreeBSD
This relates to bug 2462
See comments on bug 2744

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 9bbdfea568)
8 years ago
Slávek Banko e76c4b8997 Update buildkey for GCC 6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit c56533c917)
9 years ago
Timothy Pearson 88acd25082 Fix invalid headers in PNG files and optimize for size
(cherry picked from commit 30d1cb0bef)
9 years ago
Timothy Pearson 688cd47b1a Automated update from Qt3
(cherry picked from commit b99016b854)
9 years ago
Timothy Pearson eae0369d1c Automated update from Qt3
(cherry picked from commit 3add7b436c)
9 years ago
Michele Calgaro 2c678d13f2 Fixed (again) search algorithm for iconview widget. This resolves (again) bug 420.
(cherry picked from commit e418211d50)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
10 years ago
Michele Calgaro a6e1bf7da5 Added safety harness for currentThreadObject() usage.
currentThreadObject() returns a null pointer if the
current thread was not started using the TQThread API.
This relates to bug 1748.

(cherry picked from commit caab7b3557)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
10 years ago
Michele Calgaro fdcad492bd Fixed search algorithm for iconview widget. This resolves bug 420.
(cherry picked from commit 42dcb07b26)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
10 years ago
Michele Calgaro 6ff4ab89a7 Fixed incorrect #define ENABLE_TQSTYLECONTROLELEMENTDATA_SLOW_COPY -> ENABLE_QSTYLECONTROLELEMENTDATA_SLOW_COPY.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
10 years ago
Slávek Banko 36b11bb908 Update buildkey for GCC 5
[taken from RedHat Qt3 patches]
(cherry picked from commit fa440833f9)
10 years ago
Slávek Banko d07bc24c91 Fix security issue CVE-2015-1860
[taken from RedHat Qt3 patches]
(cherry picked from commit 094708c0e7)
10 years ago
Slávek Banko 2dbd340ba2 Fix security issue CVE-2015-0295
[taken from RedHat Qt3 patches]
(cherry picked from commit 64d9c07d57)
10 years ago
Slávek Banko f457b176b5 Fix security issue CVE-2014-0190
[taken from RedHat Qt3 patches]
(cherry picked from commit ebf9a9871a)
10 years ago
Slávek Banko 9577716fc3 Fix security issue CVE-2013-4549
[taken from RedHat Qt3 patches]
(cherry picked from commit cc46bf4ecb)
10 years ago
Michele Calgaro 6d346d4d84 Fixed Multicolumn view filtering item arrangement. This relates to bug 146.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>

(cherry picked from commit 38e12d6e12)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
10 years ago
Timothy Pearson fbf8ee2262 Automated update from Qt3 10 years ago
Timothy Pearson 3aba060d81 Automated update from Qt3 10 years ago
Timothy Pearson bdc8377b23 Automated update from Qt3 10 years ago
Timothy Pearson 38755f930a Automated update from Qt3 10 years ago
Timothy Pearson 117b166ca6 Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance 11 years ago
Michele Calgaro f6a4cc6674 Qt -> TQt renaming in TQt .dcf files. This relates to bug 1859. 11 years ago
Timothy Pearson 16e2c768d6 Automated update from Qt3 11 years ago
Timothy Pearson 6e8d2d256b Automated update from Qt3 11 years ago
Timothy Pearson 48f56c4352 Automated update from Qt3 11 years ago
Slávek Banko d9d3dd456a Improve TQProgressBar repaint optimization 11 years ago
Enrico Ros baea23ba1f Fix unwanted toggling TQIconViewItem focus on click
This fixes the 'flashing' icon when clicking repeatedly on a TQIconView or
derivates (ie TDEIconView, KonqIconViewWidget, the KDesktop and so on..).
The current behavior considers that if not over an icon, the user is
clicking down to perform icons selection (with the rubberband).
This is not always true, since a click might be used to give focus to a
window or unselect some icons.

How this is fixed: when clicking down the mouse a flag is set. If the pointer
is moved on the iconview with the button held down, then (and only at that
moment) the rubber is created. Now a selection operation (the one done with
the rubber) begins when moving the mouse and not only when clicking on the
empty space.
11 years ago
François Andriot f059feb9c6 Fix dpi detection when using xft2 11 years ago
François Andriot 3e57876ec3 Fix crash in TQTranslator 11 years ago
François Andriot c86b8f17bf Enhance warning verbosity in TQFile (unix) 11 years ago
Waldo Bastian 9a892fcab0 Fix zoom in TQTextEdit
TQTextEdit::zoomIn / TQTextEdit::zoomOut does not work if the original
font had its size specified in pixels instead of points.
pointSize() returns 0 in such case.
11 years ago
Benoit Walter 0cce3b0ec1 Remove unnecessary scrollbar in TQIconView
Test case (using konqueror icon view):
- The first icons are being shown (no scrollbar yet)
- When there is no space left, a vertical scrollbar is needed
- The vertical scrollbar may cover the right edge of the icons
(in the last column) => an horizontal scrollbar is needed :-(

Solution:
When using ScrollBarMode::Auto, prevent TQt from drawing icons on the
scrollbar area (before the scrollbar is shown).

Related to KDE bug #69589
11 years ago
Frerich Raabe 0c5a2640a6 Add repaint optimization to TQProgressBar
This optimization makes TQProgressBar::setProgress() only repaint itself
if stepping to the new progress would cause a graphical change. This means
that for a width W and a total number of steps S, it will repaint itself
'W' times (every 'S/W' steps) instead of 'S' times (every step) as it is
right now.
11 years ago
Timothy Pearson b478472598 Automated update from Qt3 11 years ago
François Andriot 9c2ce91a36 Fix FTBFS on Linux specific memlock code 11 years ago
François Andriot 6d4396b3b5 Fix FTBFS because invalid data conversion in qmutex 11 years ago
Timothy Pearson d8352f9db2 Automated update from Qt3 11 years ago
Slávek Banko ed5df1398e Fix build option used to select sqlite3 plugin 11 years ago
Michele Calgaro 85e2ff9cf6 Fixed warning message if QMetaObjectCleanUp::setMetaObject is invoked twice.
If the passed object is the same, the warning message is not displayed any more.
If the passed object is different, a message is still displayed.
This resolves bug 1947.
11 years ago
Michele Calgaro 686236f374 Revert "Fixed warning message if QMetaObjectCleanUp::setMetaObject is invoked twice."
because of wrong reference to bug 1887.
This reverts commit f0bff64751.
11 years ago
Michele Calgaro f0bff64751 Fixed warning message if QMetaObjectCleanUp::setMetaObject is invoked twice.
If the passed object is the same, the warning message is not displayed any more.
If the passed object is different, a message is still displayed.
This resolves bug 1887.
11 years ago
Timothy Pearson e45396f47a Automated update from Qt3 11 years ago
Michele Calgaro 6fb1d18ed1 Improvements to TQValueList. This may relate to bug 1820 11 years ago
Michele Calgaro 0c50fad6c7 Fixed "TQApplication::postEvent: Unexpected null receiver" warning message. This resolves bug 1901 and 1909. 11 years ago
Slávek Banko a44a713fec Add sqlite3 plugin 11 years ago
Slávek Banko bb6df872fe Fix potential null pointer dereference 11 years ago
Slávek Banko 5da15f81a7 Fix crash on populating style data to tabbar without parent
This resolves Bug 1966
11 years ago
Slávek Banko d5059601e6 Fix overwriting memory for an application icon
This resolves Bug 2033
11 years ago
Timothy Pearson a9ec6a1556 Automated update from Qt3 11 years ago
Michele Calgaro 67ff892b73 Enabled operator->() for class QValueListIterator. 11 years ago