summaryrefslogtreecommitdiffstats
path: root/src/gui
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'fixCursorLagInVK'axis2009-08-171-0/+2
|\
| * Fix the cursor lagging one step behind in the Virtual Keyboard UI.axis2009-08-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | This was caused by the widget not calling update on the input context after changes to the cursor position. This is a reimplementation of 8d1691e9395, after the QLineControl refactoring. RevBy: Trust me AutoTest: Passed
* | Fixed a compile error for qs60style.cpp on s60 build.Liang Qi2009-08-151-1/+1
| |
* | Removing some unused variables.Alessandro Portale2009-08-146-17/+0
| | | | | | | | | | | | Conflicts: src/gui/styles/qwindowsstyle.cpp
* | Fix incorrect logic in QPixmap::fromSymbianCFbsBitmap.Jason Barron2009-08-141-1/+4
| | | | | | | | | | | | In some alternate universes it might make sense to use a pointer before checking if it is valid, but since this isn't one we shoudn't do it. Also extend the autotest a little to make sure we catch this case.
* | S60Style: Draw vertical busy indicator with correct graphic.Sami Merilä2009-08-141-1/+3
| |
* | S60Style: Draw QFrames in default casesSami Merilä2009-08-141-0/+2
| |
* | S60Style: Draw non-initialized icons as enabled.Sami Merilä2009-08-141-1/+1
| |
* | Changed QCoeFepInputContext::ReportAknEdStateEvent so that it actually ↵mread2009-08-141-1/+1
| | | | | | | | forwards the event and doesn't just send a fixed one.
* | Partially revert oom safety fixesHarald Fernengel2009-08-141-18/+9
| | | | | | | | | | Turns out it's way too much work to make all the Pixmap backends strongly exception safe. Bumped to "future Qt version" :)
* | Implemented minimalistic modal handling for Symbian OS.Janne Anttila2009-08-141-7/+17
| | | | | | | | | | | | | | | | | | | | | | The implementation is likely not complete, but makes autotests using QApplication::activeModalWidget to pass. At least the following test now pass successfully: qcolordialog qmessagebox Might have positive impact to other autotests as well.
* | Changing names of Symbian leave <-> qt throw translation functionsmread2009-08-135-7/+7
| | | | | | | | due to http://qt-reviews.europe.nokia.com/r/67/
* | Use QScopedPointer wherever possibleHarald Fernengel2009-08-133-53/+44
| | | | | | | | | | Ensures that we don't leak when creating a new Pixmap while running out of memory
* | Replace QCustomScopedPointer with QScopedPointerHarald Fernengel2009-08-132-3/+5
| | | | | | | | First step to get rid of QCustomScopedPointer class
* | Merge commit 'qt/master'Jason Barron2009-08-131036-2996/+7239
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: examples/opengl/samplebuffers/glwidget.cpp src/corelib/io/qfsfileengine_unix.cpp src/corelib/kernel/qobject.cpp src/corelib/tools/qsharedpointer.cpp src/gui/gui.pro tests/auto/qhttp/tst_qhttp.cpp tests/auto/qkeyevent/tst_qkeyevent.cpp
| * | Ugly round corners when no border is drawnGabriel de Dietrich2009-08-122-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When specifying round corners with QStyleSheetStyle and no border-width specified, the round corners were not rendered with antialiasing. Furthermore, if border-width was set to 0, part of the border was rendered in discordance with CSS3. The background in now rendered directly instead of drawing a clipped rectangle. The actual border width is checked before rendering. A test has been added at tests/auto/uiloader/baseline/css_borderradius_allwidgets.ui Task-number: 230362 Reviewed-by: olivier
| * | fixing warnings for qreal=floatThomas Hartmann2009-08-121-1/+1
| | | | | | | | | | | | Reviewed-by: Joerg
| * | QGraphicsRotation and QGraphicsRotation3D are now merged into 1 classThierry Bastian2009-08-122-119/+94
| | | | | | | | | | | | | | | | | | | | | | | | You can now also set the axis following hte Qt::Axis enum Note: I'm not 100% sure about the maths in QGraphicsRotation::applyTo Feel free to fix it. Reviewed-by: ogoffart
| * | Mouse move events delivered toa blocked widget.Prasanth Ullattil2009-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | On windows we were not checking whether the widgets receiving the mouse events are blocked by another modal widget or not. Task-number: 255912 Reviewed-by: Thierry Bastian
| * | fix decoration of DontShowOnScreen widgets on Windows CEJoerg Bornemann2009-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Widgets with the WA_DontShowOnScreen attribute must not have a window decoration. Autotest: tst_QWidget::initialPosForDontShowOnScreenWidgets Reviewed-by: thartman
| * | usage of Q_OS_WINCE fixedJoerg Bornemann2009-08-121-2/+2
| | | | | | | | | | | | | | | | | | There's no QT_OS_WINCE define. Reviewed-by: mauricek
| * | Compile fix for Windows CE standard SDKThomas Hartmann2009-08-122-6/+8
| | | | | | | | | | | | | | | | | | Q_WS_SINCE_WM ifdefs were broken Reviewed-by: Joerg
| * | Replace some mentions of Trolltech with more appropriate terms.Jason McDonald2009-08-124-14/+14
| | | | | | | | | | | | Reviewed-by: Trust Me
| * | Update references to online documentation.Jason McDonald2009-08-122-2/+2
| | | | | | | | | | | | Reviewed-by: Trust Me
| * | Eliminate last mentions of "Qt Software".Jason McDonald2009-08-126-6/+6
| | | | | | | | | | | | Reviewed-by: Trust Me
| * | Update URL's to use new domain.Jason McDonald2009-08-124-6/+6
| | | | | | | | | | | | Reviewed-by: Trust Me
| * | Update contact URL in license headers.Jason McDonald2009-08-121034-1034/+1034
| | | | | | | | | | | | Reviewed-by: Trust Me
| * | QMenuBar does not respect the border-image stylesheet propertyGabriel de Dietrich2009-08-111-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added WA_StyledBackground to QMenuBar when using style sheets. This also implies that CE_PanelMenuBar (drawing only the menubar border) no longer needs to be drawn. Tested in uiloader/baselne/css_borderimage_allwidgets.ui. Task-number: 230363 Reviewed-by: olivier
| * | Optimize qt_format_text test operations: try not to detachOswald Buddenhagen2009-08-111-40/+28
| | | | | | | | | | | | Reviewed-by: Oswald Buddenhagen
| * | Change QFontMetrics::width to return the width of the longest variant if the ↵Olivier Goffart2009-08-111-2/+4
| | | | | | | | | | | | | | | | | | | | | string is a multi-length one Task-number: QT-10 Reviewed-by: Oswald Buddenhagen
| * | Make QFontMetrics::elidedText aware of multi-length stringsOlivier Goffart2009-08-111-2/+15
| | | | | | | | | | | | | | | Reviewed-by: Oswald Buddenhagen Task-number: QT-10
| * | Add the Qt::TextLongestVariant flag so QFontMetrics::size returns the size ↵Olivier Goffart2009-08-112-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | of the biggest string In case the strings contains multiple strings separated by \x9c Reviewed-by: Oswald Buddenhagen Task-number: QT-10
| * | Handle multi-length strings in the low-level formatting codeOlivier Goffart2009-08-111-13/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch originally from Oswald on Jira QT-10, with few a modifications. If a string contains multiple variants sorted by decreasing length, separated by \x9c, it will try to paint the longest variant which fits into the bounding box. Reviewed-by: Oswald Buddenhagen Task-Number: QT-10
| * | fix QTextFormat::doubleProperty where qreal is floatJoerg Bornemann2009-08-111-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | This function was too strict. It returned 0 if the property wasn't of type QVariant::Double. Now it tests for QMetaType::Float too. Reviewed-by: kh1 Reviewed-by: mauricek
| * | fix warnings for the qreal == float caseJoerg Bornemann2009-08-112-11/+11
| | | | | | | | | | | | Reviewed-by: mauricek
| * | QWidget::isHidden documentation clarification.Jocelyn Turcotte2009-08-111-3/+6
| | | | | | | | | | | | Reviewed-by: Kavindra
| * | QDateTimeEdit: setFrame property is respected when a popup calendarMatthew Cattell2009-08-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | has been set. The hasFrame() or frame property of the QStyleOptionSpinBox was not being copiedthrough to the QStyleOptionComboBox inside the paintEvent method if a calendarPopup had been enabled. Task-number:259510 Reviewed-by:Jens Bache-Wiig
| * | Merge commit 'remotes/wm65/wm65'Thomas Hartmann2009-08-113-368/+4127
| |\ \
| | * | Cleanup of Windows Mobile StyleThomas Hartmann2009-08-111-76/+61
| | | | | | | | | | | | | | | | Reviewed-by: Maurice
| | * | activate wm65 style only for wm65Thomas Hartmann2009-08-111-1/+1
| | | |
| | * | adding qt_wince_is_windows_mobile_65()Thomas Hartmann2009-08-111-0/+25
| | | |
| | * | using proxy()Thomas Hartmann2009-08-111-103/+103
| | | |
| | * | Adding Windows Mobile 6.5 styleThomas Hartmann2009-08-112-271/+4020
| | | |
| * | | Merge commit 'remotes/wm65/wm65'Thomas Hartmann2009-08-111-0/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | Conflicts: src/gui/dialogs/qfiledialog_win.cpp
| | * | Fixes build for Windows MobileThomas Hartmann2009-07-201-1/+0
| | | | | | | | | | | | | | | | Reviewed-by: Joerg
| * | | Merge branch '4.5'Thiago Macieira2009-08-111-6/+7
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure tests/auto/moc/tst_moc.cpp
| | * | | Fix crash in QX11Data::xdndHandleEnter when XGetWindowProperty failsOctavian Voicu2009-08-061-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Task-number: 259143 Merge-request: 1119 Reviewed-by: Denis Dzyubenko <denis.dzyubenko@nokia.com>
| * | | | QTableView with swapped headers PageUp/PageDown bugGabriel de Dietrich2009-08-111-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QTableView with header-swapped rows wouldn't scroll correctly when PageUp or PageDown pressed. Simplified calculation for next currentIndex provided in QTableView::moveCursor. Task-number: 259308 Reviewed-by: olivier
| * | | | Compile QtGui on Linux with no Gtk development package present.Friedemann Kleint2009-08-111-0/+4
| | | | |
| * | | | compile fix for Win32Maurice Kalinowski2009-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | use correct function pointer (Get) Reviewed-by: Thomas Hartmann