aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/mimetypesettingspage.ui
Commit message (Collapse)AuthorAgeFilesLines
* Allow changing the default editor for mime typesEike Ziller2018-07-021-19/+29
| | | | | | | | | | | Double-clicking or clicking on the selected item shows a combo box with all editor types that can handle that mime type. Modified handlers are shown in italic, and a new button resets all handlers to the default. Change-Id: I4083c31e3867eb2a2a47adc85e4bd20f3d57be9a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: David Schulz <david.schulz@qt.io>
* Don't translate default windowTitle again and againRobert Loehning2018-03-061-1/+1
| | | | | Change-Id: I4b4ff16e02c517bcd5a7c5ae73f62dd2a5bcc7cc Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
* Core: Fix tab order in several UI formsNazar Gerasymchuk2016-08-011-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | For unknown reasons tab order in listed UI files was set incorrectly and behave unexpectedly. Now tab order behave naturally. Changes made for next objects: Core::Internal::ExternalToolConfig (externaltoolconfig.ui), In QtCreator: Tools -> Options -> Environment -> External Tools tab. Core::Internal::GeneralSettings (generalsettings.ui), In QtCreator: Tools -> Options -> Environment -> Interface tab Core::Internal::MimeTypeMagicDialog (mimetypemagicdialog.ui), In QtCreator: Tools -> Options -> Environment -> MIME Types tab, choose any MIME type in "MIME Type" column, Core::Internal::MimeTypeSettingsPage (mimetypesettingspage.ui), In QtCreator: Tools -> Options -> Environment -> MIME Types tab Core::Internal::SystemSettings (systemsettings.ui), In QtCreator: Tools -> Options -> Environment -> System tab Change-Id: I04aefcb5ad75ef8b23fa1de324d986b45d5347bd Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* MimeTypeSettings: Use QTreeView instead of QTableViewAlessandro Portale2014-06-161-154/+138
| | | | | | | | | | QTreeView is a better list view with columns than QTableView. One special reason for this change is that QTreeView finds a proper default row height regardless of the system DPI. Change-Id: I0a4091585d4745fd91179c82a55682f88f8d2549 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
* Settings: Add a filter for mime typesOrgad Shaneh2013-04-171-2/+9
| | | | | Change-Id: I05213ca74cf3838c923ce6117ffdde28546d465f Reviewed-by: David Schulz <david.schulz@digia.com>
* UI files: Do not polute the global Ui namespaceTobias Hunger2011-11-241-2/+2
| | | | | | | Make sure all ui-files are in the plugin's internal namespace. Change-Id: Ifb2c3093441e8feb89e46f52fbb386fc316cfd13 Reviewed-by: hjk <qthjk@ovi.com>
* Fixed some typos and added some missing ellipisesJure Repinc2011-10-051-2/+2
| | | | | | | | | | During translation into Slovenian I noticed some typos in original string. For example some missing ellipsis characters and some incorrectly spelled MeeGo names (as Meego) Change-Id: I48eaa95303f1e82ab9893f713056382e8daaef41 Merge-request: 2200 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* UI text: check capitalization and tooltipsLeena Miettinen2011-06-221-1/+1
| | | | | | | Change-Id: I3686ac83e5fdc009b03e84ab3c7b24a052d119c4 Reviewed-on: http://codereview.qt.nokia.com/569 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
* mimetypes: remove grid lines from table viewhjk2011-04-051-1/+14
| | | | | | More consistent. Reviewed-by: Leandro Melo
* MIME types: Move button in UILeandro Melo2011-03-071-121/+122
| | | | And add a surrounding group box.
* MIME types: Introduce user extensions featureLeandro Melo2011-03-021-0/+169
Creates a new page in the options dialog which allows the user to modify MIME type's globl patterns and rule-based magic matchers. As a side-effect of this feature our MIME database (and related components) got some improvements. Reviewed-by: Friedemann Kleint