summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* S60theme util's README typos fixed.Sami Merilä2009-06-081-4/+4
|
* Proper English sentenceAlessandro Portale2009-06-071-2/+2
|
* Added a README to give people a hint of what this obscure piece ofAlessandro Portale2009-06-071-0/+31
| | | | code does.
* 's60theme' is a commandline tool which converts Carbide.ui themes intoAlessandro Portale2009-06-074-0/+441
| | | | | | | | | | | | | | | an intermediate binary format that can be read by the simulated QS60Style. So, for example Designer (standalone or in Carbide) will be able to display a realistic S60 Ui. The intermediate binary format hashes of QPictures and QColors, streamed to a QByteArray and compressed. The QS60Style could not load the Carbide.ui theme directly because SVG handling is unfortunately not part of QtGui, and would require a dependency on the QtSvg module. Also, 's60theme' uses QWebkit to parse the SVG graphics (inspired by Ariya's 'WebKit-based SVG rasterizer' labs post). QtSvg had some issues with the SVGs that come with Carbide.ui.
* S60Style: Styled graphic support for editors.Sami Merilä2009-06-053-2/+34
|
* S60Style: Remove some magic numbers.Sami Merilä2009-06-051-7/+10
|
* S60Style: Missing break-statementSami Merilä2009-06-051-0/+1
|
* S60Style: More styleHintsSami Merilä2009-06-051-1/+27
|
* Prevent double deletion of m_themePaletteAlessandro Portale2009-06-052-16/+20
| | | | RevBy: Sami Merila
* Turned off input methods on Windows when using certain hints.axis2009-06-051-1/+6
| | | | | If any of those hints are present, complex input is not possible, so input methods should be turned off on Windows.
* Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-055-41/+35
|\
| * S60Style: Drop middlesection from tab graphics, if there is very little of ↵Sami Merilä2009-06-051-0/+10
| | | | | | | | tab content.
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicEspen Riskedal2009-06-052-5/+6
| |\
| | * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-0512-74/+542
| | |\
| | | * Made Selection updates relative to the block.axis2009-06-051-2/+3
| | | | | | | | | | | | | | | | | | | | Otherwise the update would always end up with the selection being in the first block.
| | * | Cut the process priority lowering timeout to 100ms in Symbian eventdispatcher,Miikka Heikkinen2009-06-051-3/+3
| | | | | | | | | | | | | | | | as some demos were getting ViewSrv 11 panics with 500ms timeout.
| * | | The product is called Qt for... but for installation we say Installing Qt on...Espen Riskedal2009-06-051-2/+2
| | | |
| * | | Simplify binary package instructions for S60Espen Riskedal2009-06-051-29/+12
| | |/ | |/|
| * | make it more obvious where the Open C plugins are locatedEspen Riskedal2009-06-051-5/+5
| | |
* | | Added subElementRect implementation for SE_ItemViewItemCheckIndicator.Janne Anttila2009-06-051-0/+2
|/ / | | | | | | | | | | S60Style did not implement SE_ItemViewItemCheckIndicator if given option was somethign else than QStyleOptionViewItemV4. This causes some autotests to fail. Added appropriate query for QCommonStyle.
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-059-52/+524
|\ \
| * | Compile on newer SDKs >= S60 5.0.Jason Barron2009-06-051-1/+1
| | | | | | | | | | | | Semi-colons, colons, they all look the same to me.
| * | Enabling QGraphicsTextItem to handle input method events.Aleksandar Sasha Babic2009-06-051-1/+128
| | | | | | | | | | | | On S60 one should get virtual keyboard.
| * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicJason Barron2009-06-0514-270/+507
| |\ \
| | * | Turned off input methods on X11 when using certain hints.axis2009-06-051-1/+1
| | |/ | | | | | | | | | | | | If any of those hints are present, complex input is not possible, so input methods should be turned off on X11.
| * | Make QColormap::instance() not crash.Jason Barron2009-06-051-5/+1
| | | | | | | | | | | | | | | | | | | | | This doesn't really need a static instance lying around and this current implementation crashes since we never call the constructor. Just recreate it on the fly when instance() is called which apparently is never.
| * | Introduce Symbian CFbsBitmap <-> QPixmap conversion functions.Jason Barron2009-06-054-18/+251
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce functions for converting to and from a CFbsBitmap on Symbian. Currently these functions unfortunately have to copy the data to the internal QImage stored in the raster pixmap data backend :( Hopefully we can improve this with a native Symbian pixmap backend in the future. The autotest generates both small and large CFbsBitmaps of different formats and then verifies that the color makes it into the QPixmap. Currently the indexed image formats don't seem to work, but this is most likely because we don't set a palette for them. The semi-trans bitmaps seem to work fine (verified visually), but the current QCOMPARE doesn't consider the fact that the color was alpha blended. Reviewed-by: Sami Merilä
| * | Fix up the display mode conversion function.Jason Barron2009-06-041-31/+34
| | | | | | | | | | | | | | | | | | | | | | | | Few things here: - Add support for EGray2 and EGray256 - Change the define to disable EColor16MAP for old SDKs - Make the default case return Invalid instead of a fatal error - Fix indentation, tabs -> spaces
| * | Implement a dummy QColorMap for Symbian.Jason Barron2009-06-042-1/+114
| | | | | | | | | | | | | | | | | | | | | It seems that this class has been completely forgotten until now, but this never causes any problems because apparently no one uses it. Provide a quick little implementation to get things linking. Implementation brought to you courtesy of Qt/Mac.
* | | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-0510-265/+475
|\ \ \ | | |/ | |/|
| * | Set UID for QtScriptToolsMartin Jones2009-06-051-0/+2
| | |
| * | Loading fonts from other /resource/fonts folders than the one on Z:Alessandro Portale2009-06-041-4/+40
| | | | | | | | | | | | | | | | | | Order is 'soft to hard' W:, X: ... A:, Z: Duplicated font file names are ignored. That should imitate the font loading behaviour in the fbSrv.
| * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicIain2009-06-04257-2511/+14860
| |\ \
| | * | S60Style: Buildbreak fix. Remove problematic #ifdef line.Sami Merilä2009-06-041-2/+0
| | | |
| | * | S60Style: Missing constantSami Merilä2009-06-041-0/+1
| | | |
| | * | S60Style: Cleanup code before Tower release.Sami Merilä2009-06-042-233/+229
| | | |
| | * | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-041-0/+15
| | |\ \
| | | * | In QGraphicsView the viewport itself has to be enabled for InputMethods.Aleksandar Sasha Babic2009-06-041-0/+15
| | | | | | | | | | | | | | | | | | | | When events are comming, exactly that widget will be aske for InputContext.
| | * | | Added proper UID for phonon.pro, and did some symbian scope cleanup, too.Miikka Heikkinen2009-06-041-8/+10
| | | | |
| | * | | Added proper picture for Drilldown example in fluidlauncherMiikka Heikkinen2009-06-041-0/+0
| | |/ /
| | * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicSami Merilä2009-06-048-13/+172
| | |\ \
| | | * | Added loadS60ThemeFromBlob and saveS60ThemeToBlob.Alessandro Portale2009-06-034-8/+135
| | | | | | | | | | | | | | | | | | | | The simulated style will by default try to load the 'Default.blob'
| | * | | S60Style: Draw all dialog with popup menu theme background.Sami Merilä2009-06-041-12/+7
| | | | |
| * | | | Correctly scope local variables in switch statement (for GCC 4.3)Iain2009-06-041-0/+38
| | | | |
* | | | | Fix to tst_QDateTimeEdit::mousePress test case.Janne Anttila2009-06-031-15/+10
| |_|/ / |/| | | | | | | | | | | | | | | Checked datetimedit spinbox up location from style, instead of trying to guess the difference offsets.
* | | | Fixed an update bug in QTextControl.axis2009-06-031-0/+3
| | | | | | | | | | | | | | | | | | | | Previously, the input context would not get updated on every selection update.
* | | | Gave QTextControl support for ImAnchorPosition and Selection.axis2009-06-031-3/+23
| | | | | | | | | | | | | | | | | | | | RevBy: Trust me The fix is almost identical to the one made for QLineEdit.
* | | | Added inputMethodQuery fallback to QWidget.axis2009-06-031-0/+3
| | | |
* | | | Fixed a small input method bug in QLineEdit.axis2009-06-031-1/+2
| |_|/ |/| | | | | | | | | | | We need to check for replacementLength as well. Otherwise there will be no undo information if text is deleted using input methods.
* | | Make qmake compile from .pro on other platforms.Jason Barron2009-06-031-1/+6
| |/ |/| | | | | | | | | | | The qpopen.cpp file is a workaround for the fact that the Metrowerks compiler that we are (ab)using to build Windows binaries is lacking a popen() function in the standard library. So only enable the workaround on the platform that needs it.