| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
This happened because the rubberband used as a gapindicator was not
allocated on the heap and might have been deleted by the QMainWindow
destructor.
Task-number: 257626
|
|
|
|
| |
This required some refactoring as well. Now code is leaner and cleaner
|
|
|
|
|
| |
The rect cropRect should be positioned with the offset to the
top-level window, not the screen position.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In the following configuration, wrect was off-screen and the widget was
not painted:
-scroll area "A"
-contains another scrollarea "B" with 2*WRECT_MAX < size < XCOORD_MAX
-the widget contained in B has size > XCOORD_MAX
-A is scrolled to the the bottom
To fix the issue, wrect is moved to the area where the top level window
is in the widget coordinate.
Task-number: 144779
Reviewed-by: nrc
|
| |
|
|
|
|
|
|
|
|
|
| |
This fixes a crashed introduced in
60e965fd35037f4a27816d2aeccafdff0d6ae9d6 - those lines were removed by
accident.
Reviewed-by: João Abecasis
Author: João Abecasis
|
| |
|
| |
|
|
|
|
| |
Task-number: 246999
|
|\
| |
| |
| |
| | |
Conflicts:
src/network/socket/qlocalsocket.cpp
|
| | |
|
| |
| |
| |
| | |
Reviewed-by: kh
|
| |
| |
| |
| | |
Error messages and __postInit__.
|
| |
| |
| |
| |
| |
| | |
They won't be shown.
Task-number: 166508
|
| |
| |
| |
| | |
using const references to pass parameter
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Unfortunately the codepath for keyPressEvent does not call updateState,
so we have to add the same line in two places.
Note that updateState() is only called from mousePressEvent() and
mouseMoveEvent().
Task-number: 254053
|
| |
| |
| |
| |
| |
| |
| | |
We now just make sure that we start the drag if there was a pressed
index.
Task-number: 252643
|
| |\ |
|
| | |
| | |
| | |
| | | |
sizeHint is now fixed
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The toolbar that one would unhide could be packed at the right of the
screen. This was because the last toolbar always has a size that fills
the space. So if you unhide a toolbar situated after this one, it got
"compressed".
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Setting the current font would change the current font and then it
would try to select the right model index and get the font only from
the text of the combobox. This was resetting the point size of the font,
resulting in emitting the signal a second time.
In the case of the user, it was also causing signals to be called in
a loop.
Task-number: 229731
|
| |/
| |
| |
| |
| |
| | |
The qhelpgenerator auto test was also updated to test the new feature.
Reviewed-by: kh
|
| |
| |
| |
| | |
Task-number: 257118
|
| | |
|
| |
| |
| |
| | |
Reviewed-By: TrustMe
|
| |
| |
| |
| | |
Task-number: 162945
|
| |
| |
| |
| | |
This was not supported before by MSVC6 and MSVC2002
|
| |
| |
| |
| | |
removing foreach seems to help on Windows
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- .ts file -> TS file
- .qm file -> QM file
- .ui file -> UI file
+ a handfull of typos I stumbled over
Merge-request: 802
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
|
| |
| |
| |
| |
| |
| |
| |
| | |
- unification
- typos
Merge-request: 823
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
unlike in an earlier attempt, ids are textual this time.
the developer is able to provide a template for the string. when lupdate
and lrelease are integrated into the build process, this makes it
possible to avoid a round-trip to a dedicated string designer during the
early development stage.
Requirement-id: QT-435
|
| | |
|
| |
| |
| |
| | |
Task-number: 151180
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
If a big widget is inside a scroll area, and this widget is in the
limits of XCOORD_MAX, its child might not be inside the limits.
The child is then limited to wrect, but wrect might not be on the
screen because the parent is scrolled. To avoid this problem,
the widgets position should not influence whether wrect is used or not.
Task-number: 144779
Reviewed-by: nrc
|
| |
| |
| |
| |
| |
| |
| | |
On Mac OS X, QMenuBar::clear() does not remove menu items
that have been merged into the system menu bar.
Task-number: 255222
|
| |
| |
| |
| | |
Task-number: 256452
|
| |
| |
| |
| | |
Task-number: 256486
|
| | |
|
| |
| |
| |
| |
| |
| | |
Simplified caching of uniform locations.
Reviewed-by: Samuel
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
We used to check the 100 first sections and 100 last sections
Now we make sure we check 100 visible sections
Task-number: 255574
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This patch improves the graphics view support for input
methods in several ways:
* A new ItemAcceptsInputMethod flag is introduced to serve
the same purpose for graphics items as WA_InputMethodEnabled
does for widgets: Input method support can be controlled
individually for each item.
* The input method sensitivity of a view (i.e. the value of
the WA_InputMethodEnabled flag) is updated dynamically
whenever the input method support of the current focus
item may change.
* Input contexts are reset whenever an item that supports
input methods loses focus.
Reviewed-by: janarve
Task-number: 254492
|
| |\ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This happens only for widgets with focus frames. Since the mouse
location at the time of this event will be outside of the focus frame,
we cannot use it to identify the widget. Instead, use the QDragManager's
currentTarget() to deliver the drag leave event.
Task-number: 252088
Reviewed-by: Norwegian Rock Cat
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Since we don't support Windows versions < Win 2000, we can just
go ahead and replace usage of the old compat dialog.
Task-number: 222417
Reviewed-by: Prasanth
|
| | |
| | |
| | |
| | |
| | |
| | | |
Without this, QWindowSurface::flush() doesn't work.
Reviewed-by: Samuel
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Even though the _XEMBED_INFO property uses 32 bit values,
prop_return has 64-bit padded values in 64-bit applications,
see man XChangeProperty. Without this fix the XEMBED client
will read XEMBED_MAPPED wrong and unmap (hide) itself.
Merge-request: 797
Reviewed-by: Denis Dzyubenko <denis.dzyubenko@nokia.com>
|