- Jan 08, 2014
-
-
Robert Loehning authored
Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Dec 10, 2013
-
-
Eike Ziller authored
The default "matches" method now takes the widget and looks for all child labels, checkboxes, push buttons and group boxes. Because of that, the former "createWidget" method can be called multiple times without creating a new widget (-->widget()), and the "finished" method must ensure that the created widget gets deleted, since not all widgets that were created are added to the UI anymore. Change-Id: Ia231c7c78dd8819146668e6447d36d22e7836904 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Sep 24, 2013
-
-
hjk authored
Added 639 lines, removed 1391. Change-Id: I15ec7dd056d4f7ad79c6dd6a4181007ad14f6a43 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Sep 03, 2013
-
-
hjk authored
Also adjust and streamline using and surrounding code. Change-Id: I6a8b05126bdcbb74ff611b21c7cb3c5902a2d5ca Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- Sep 02, 2013
-
-
Christian Kandeler authored
A lot of our build system files specify unneeded include paths. These roughly fall into the following categories: a) Paths that are already set in more general files such as qtcreator.pri. b) Paths that serve no purpose at all, possibly left over from earlier versions of the project. c) Paths that act as workarounds for wrong include statements of the form '#include "xyz.h"', where xyz.h is not in the same directory as the including file. This patch removes such path specifications and fixes the offending include statements from case c). Tested on Linux, Windows and OSX with qmake and qbs. Change-Id: I039a8449f8a65df0d616b4c08081145c18ae4b15 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- Apr 04, 2013
-
-
Friedemann Kleint authored
Ran script to remove inludes on a trial-and-error basis and manually corrected it. Change-Id: Ia97b5bd9e4496cd824f35c5fda8ccf0db9af471c Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- Jan 29, 2013
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 17, 2013
-
-
hjk authored
Change-Id: Id9d6cf28966eeb65775cf1f16f57773af5fb6bca Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Jan 08, 2013
-
-
Orgad Shaneh authored
#!/usr/bin/env ruby Dir.glob('**/*.cpp') { |file| # skip ast (excluding paste, astpath, and canv'ast'imer) next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i s = File.read(file) next if s.include?('qlalr') orig = s.dup s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m| res = $& if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces res else res.gsub!('} else', 'else') res.gsub!(/\n +} *\n/m, "\n") res.gsub(/ *{$/, '') end } s.gsub!(/ *$/, '') File.open(file, 'wb').write(s) if s != orig } Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 29, 2012
-
-
hjk authored
Change-Id: I63433edd9118a7aa4ecaef28f40bfc729d90f512 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Jul 19, 2012
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- May 23, 2012
-
-
hjk authored
Change-Id: I8297df85109b67b79f90c33263a5dc7b89efbb60 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Feb 16, 2012
-
-
Erik Verbruggen authored
Change-Id: I20200303ef68bc3e73b232c44263d71d09b091a5 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by:
Bill King <bill.king@nokia.com>
-
- Feb 15, 2012
-
-
Erik Verbruggen authored
Getting the #include directives ready for Qt5. This includes the new-project wizards. Change-Id: Ia9261f1e8faec06b9285b694d2b7e9a095978d2b Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Feb 07, 2012
-
-
Thomas Hartmann authored
The Wizards itself (derived from IWizard) and the dialogs implementing the wizards were quite discoupled. Since I want to add parameters that are delivered from IWizard::run to the dialog a I added WizardDialogParameters. Examples of paramters I want to add are the choosen platform and the choosen subOption/template for this wizard. Change-Id: I9c0ae2901e3d46d3c36a3f433f4d7d508a6ba74e Reviewed-by:
Alessandro Portale <alessandro.portale@nokia.com>
-
- Jan 26, 2012
-
-
hjk authored
Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jan 24, 2012
-
-
hjk authored
Change-Id: I9b690d9b150c8d162b15370f9f8986267c9128f1 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jan 18, 2012
-
-
Thomas Hartmann authored
Every wizard now implements requiredFeatures() to define a feature set. If the feature set is not satisfied by the available Qt Versions, the wizard is not shown in the create file/project dialog. Every Qt version can define the provided feature set in availableFeatures() defined in BaseQtVersion. Change-Id: Ie9e2c210d19187b2296451948c36d274f2096623 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com> Reviewed-by:
Alessandro Portale <alessandro.portale@nokia.com>
-
- Jan 09, 2012
-
-
Nicolas Arnaud-Cormos authored
With the keyboard, when pressing return on the form template, we arrived directly to the summary page, jumping over the class details page. Change-Id: I4b54e77b01553b12cb8446d802f74ea5a265dddd Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Nov 03, 2011
-
-
hjk authored
Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 14, 2011
-
-
hjk authored
Mostly Q_DISABLE_COPY that were covered by the un-copy-ability of the respective base classes. Includes a few "stylistic" whitespace changes. Change-Id: I31ca0e7bada5ed0f34776976efe22ddc444a5bf2 Reviewed-on: http://codereview.qt.nokia.com/1609 Reviewed-by:
hjk <qthjk@ovi.com>
-
- May 06, 2011
-
-
Tobias Hunger authored
Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
-
- Apr 13, 2011
-
-
hjk authored
-
- Mar 09, 2011
-
-
Oswald Buddenhagen authored
simply add CONFIG += depend_includepath to qtcreator.pri and remove all the manual DEPENDPATHs, as half of them were missing anyway, and i wouldn't expect it to ever change. not touching src/shared/ for syncing reasons.
-
- Jan 12, 2011
- Jan 10, 2011
-
-
Friedemann Kleint authored
(Cmake/Qt4). Use PluginManager invocation facility for the form class code generation. Do the rest (testing for form editor, retrieving the editor contents). Acked-By: hjk
-
- Jan 04, 2011
-
-
Christian Kamm authored
-
- Dec 17, 2010
-
-
con authored
-
- Oct 21, 2010
-
-
Friedemann Kleint authored
Reviewed-by:
Kai Köhne <kai.koehne@nokia.com> Task-number: QTCREATORBUG-2779
-
- Oct 19, 2010
-
-
Friedemann Kleint authored
As they do not look nice in the layouts and several options pages are involved in the case of the form class wizard. Reviewed-by: con Task-number: QTCREATORBUG-2778
-
- Sep 08, 2010
-
-
Leandro Melo authored
The wizards already provide a default suffix for file creation. But since the user is still free to specify something else it's better to leave it to Creator to decide which one is the proper editor. After all, this reflects how the file will be treated by Creator (including the next time it's opened). Task-number: QTCREATORBUG-2006
-
- Aug 23, 2010
-
-
Friedemann Kleint authored
to be used for the promoted widgets dialog. See also 00e954ca817f89958a8a8777d93d3843252dc88c in Qt 4.8. Reviewed-by:
Jarek Kobus <jaroslaw.kobus@nokia.com> Task-number: QTCREATORBUG-163
-
- Aug 09, 2010
-
-
Friedemann Kleint authored
... for doxygen. Change logic for known empty keywords to be replaced by an empty string. Task-number: QTCREATORBUG-1854
-
- May 14, 2010
-
-
Leena Miettinen authored
Reviewed-by: ossi
-
- Apr 16, 2010
-
-
Friedemann Kleint authored
Remove all hacks/conventions of considering the last generated file as project file, etc. and instead add attributes flags to Core::GeneratedFile, giving fine-grained control of what to do with the file. Implement static utility functions in wizards that handle it. Add boolean XML-attributes "openeditor"/"openproject" to the file elements used by the CustomWizard XML-specification. Manually set the attributes in all wizards. Task-number: QTCREATORBUG-1166
-
- Apr 09, 2010
-
-
hjk authored
-
- Apr 08, 2010
-
-
Friedemann Kleint authored
-
- Mar 31, 2010
-
-
Jarek Kobus authored
-