Commit Graph

101 Commits (58a2e9080d690b928a2bee0291b24f187434476c)
 

Author SHA1 Message Date
Slávek Banko 58a2e9080d Update buildkey for GCC 7 and 8
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 58b25d4341)
7 years ago
Roman Savochenko 18b5188358 Add brightness keys support
The code partially taken from Qt4
This relates to bug 2775

Signed-off-by: Roman Savochenko <rom_as@oscada.org>
(cherry picked from commit 02405c8411)
8 years ago
Slávek Banko 084e88eea8 Update buildkey for GCC 7
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 3a5672aab4)
8 years ago
Slávek Banko 6897563b54 ListView: Deselect items that are hidden by the filter
during selectAll and invertSelection

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d96172f76d)
8 years ago
Slávek Banko e6fdc7463e 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 057d9fe7a4)
8 years ago
Slávek Banko f979942b32 Update buildkey for GCC 6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit b099185b90)
8 years ago
Michele Calgaro da181f82c3 Fixed (again) search algorithm for iconview widget. This resolves (again) bug 420.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d27f4e2fc3)
10 years ago
Michele Calgaro 3f8c59015d Fixed search algorithm for iconview widget. This resolves bug 420.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d6867cf92e)
10 years ago
Slávek Banko 7ba79f3631 Update buildkey for GCC 5
[taken from RedHat Qt3 patches]
(cherry picked from commit 0d96f74958)
10 years ago
Michele Calgaro e2922dd208 Fixed Multicolumn view filtering item arrangement. This relates to bug 146.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9655b0b845)
10 years ago
Timothy Pearson f7fcc6acb7 Try to avoid crashes if the destructor of a TQMap is called when no private object was previously created
(cherry picked from commit 9974902237)
10 years ago
Timothy Pearson 92cad529ea Repaint QComboBox on drop-down dismissal
This relates to Bug 1489
(cherry picked from commit 444ac1fed9)
10 years ago
Francois Andriot b4bff05ee3 Add support for the environment variables TQT_HOME_DIR and TQT_SYSTEM_DIR
(cherry picked from commit f0cc3689b3)
10 years ago
Timothy Pearson 83b1aa2e88 Fix undefined behaviour in TQClipboardWatcher::format
This relates to Bug 1820
(cherry picked from commit dc8f537180)
10 years ago
Slávek Banko fa671f0185 Improve TQProgressBar repaint optimization
(cherry picked from commit 5b34ad0d8e)
10 years ago
Enrico Ros 217873db13 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.
(cherry picked from commit fbc4cf8e7f)
10 years ago
François Andriot fd6922e60b Fix dpi detection when using xft2
(cherry picked from commit e4b05c8f30)
10 years ago
François Andriot ccee6e3103 Fix crash in TQTranslator
(cherry picked from commit a944830520)
10 years ago
François Andriot a085aad2b5 Enhance warning verbosity in TQFile (unix)
(cherry picked from commit fdc4699bcb)
10 years ago
Waldo Bastian 664cc9b90c 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.
(cherry picked from commit 14f96e80a5)
10 years ago
Benoit Walter 15508fac70 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
(cherry picked from commit 36ee984c64)
10 years ago
Frerich Raabe a356a05c01 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.
(cherry picked from commit 9f882f9de7)
10 years ago
Francois Andriot b5cb163e01 Fix qmake shared library naming
Add long long int support to TQTextStream
Fix potential segmentation fault in QValueList
Fix library naming in TQT Plugins
This relates to Bug 2107
(cherry picked from commit b716176cec)
10 years ago
François Andriot 9ea7824ff9 Fix FTBFS because invalid data conversion in qmutex
(cherry picked from commit a28cbf4837)
10 years ago
Michele Calgaro b0291308c4 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.
(cherry picked from commit a401ecd325)
10 years ago
Michele Calgaro 3bffdfb381 Improvements to QValueList. This may relate to bug 1820
(cherry picked from commit 71a6d7870f)
10 years ago
Michele Calgaro 7e2db04621 Fixed "TQApplication::postEvent: Unexpected null receiver" warning message. This resolves bug 1901 and 1909.
(cherry picked from commit cbeacf0de9)
10 years ago
Slávek Banko 2f51a9410a Fix overwriting memory for an application icon
This resolves Bug 2033
(cherry picked from commit 1afc62ef88)
10 years ago
Timothy Pearson 08dd9f5517 Fix DnD crash when source is not present
This resolves Bug 1602
(cherry picked from commit b7d35a6235)
10 years ago
Slávek Banko bf0d76f75a Fix tqteditor hidden visibility needed for cppeditor plugin
(cherry picked from commit 7fface8931)
10 years ago
Slávek Banko 670b1431fa Fix FTBFS due to hidden visibility
(cherry picked from commit 5347950651)
10 years ago
Francois Andriot e3a418d757 Build by default as a shared
(cherry picked from commit 1e11c1dd06)
10 years ago
Timothy Pearson b958d50c22 Properly export ucm_instantiate in UCOM libraries
This relates to Bug 1780
(cherry picked from commit 586f373276)
10 years ago
Slávek Banko 13859714fd Fix FTBFS with libfreetype6 >= 2.5.x
This resolves Bug 1765
(cherry picked from commit 1ee1ffbae6)
10 years ago
Slávek Banko f16757db87 Add pluginsdir to pkgconfig file
(cherry picked from commit 3a89e057b7)
10 years ago
Francois Andriot adf32d0c0a Remove dead symlink under 'mkspecs/default'
(cherry picked from commit d268efee9d)
10 years ago
Timothy Pearson 6bb565d42e Fix prior commit
(cherry picked from commit 8fb62409a1)
10 years ago
Timothy Pearson 8af28edd4a Fix crash on exit when application does not use session management
This relates to Bug 1627
(cherry picked from commit 7c0bc39229)
10 years ago
Francois Andriot 19b34d5dcf Fix FTBFS in qvfb with libpng >= 1.5
(cherry picked from commit af5bc055c2)
10 years ago
Francois Andriot 851cbaad8b Fix 'format not a string literal' error
(cherry picked from commit 16f24a61f8)
10 years ago
Slávek Banko c5a026e70b Private headers moved out from public include directory
(cherry picked from commit 571716ebf8)
10 years ago
Slávek Banko a2c7f8f7b4 3rdparty headers moved out from public include directory
This resolves Bug 1350
(cherry picked from commit 4e2d1bdf61)
10 years ago
Timothy Pearson 1f7ae30324 Allow TQApplication objects to be constructed without a session manager
This relates to Bug 760
(cherry picked from commit 49075fd69d)
10 years ago
Timothy Pearson 3dccb6a206 Do not return deleted icon view items after icon view deletion
This resolves Bug 1605
(cherry picked from commit d2ab408c06)
10 years ago
Timothy Pearson 1ee1281a95 Fix first icon view item display
(cherry picked from commit 783aa27bae)
10 years ago
Timothy Pearson 7413b3b4e5 Add full hidden item support to QIconView
This will enable TDE to efficiently filter icon views via Konqueror
(cherry picked from commit 660a32cfcf)
10 years ago
Slávek Banko 8d8e01fb8e Fix security issue CVE-2015-1860
[taken from RedHat Qt3 patches]
(cherry picked from commit 538d6a2440)
10 years ago
Slávek Banko e3dd0b7464 Fix security issue CVE-2015-0295
[taken from RedHat Qt3 patches]
(cherry picked from commit b3037160f2)
10 years ago
Slávek Banko 2e1f44ecf6 Fix security issue CVE-2014-0190
[taken from RedHat Qt3 patches]
(cherry picked from commit ad74a11abf)
10 years ago
Slávek Banko 635d3fe606 Fix security issue CVE-2013-4549
[taken from RedHat Qt3 patches]
(cherry picked from commit 73584365f8)
10 years ago