- 30 Apr, 2013 1 commit
-
-
Friedemann Kleint authored
Ran script to remove inludes on a trial-and-error basis and manually corrected it. Change-Id: I8a2e9e35980198fc4162623db044c228bd209a0f Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
- 02 Apr, 2013 1 commit
-
-
Thomas Hartmann authored
SignalHandlerProperty allows editing convenient editing of signal handlers like onMousePress in the model. The interface is analogous to BindingProperty. Since mos views do not care about SignalHandlerProperties and they should not be mixed up with BindingProperties they are different types. I also added the signalHandlerPropertiesChanged() notifier to AbstractView. Change-Id: I68bc7d2c5d3b991944e8f8d698212a1dfef218bf Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
- 25 Mar, 2013 3 commits
-
-
Thomas Hartmann authored
We use now widgetInfo() instead. Change-Id: Icaea8f012b380368b6479fa81d370236ea5a6781 Reviewed-by:
Marco Bubke <marco.bubke@digia.com> (cherry picked from commit 54431a09)
-
Marco Bubke authored
Change-Id: I4075e62cb15c91be3561ac29df814d0f0f255b8e Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com> (cherry picked from commit b2a39399) Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
Thomas Hartmann authored
And PropertyName is a typedef for QByteArray. Because we don't use the features of QString and the source would be cluttered with QLatin1Strings we changed the property name to QByteArray. Change-Id: Ib70ef136bbc411504b450456bd9bb705ae93dd25 Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com> (cherry picked from commit ee4bf638) Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
- 14 Mar, 2013 1 commit
-
-
Thomas Hartmann authored
We use now widgetInfo() instead. Change-Id: Icaea8f012b380368b6479fa81d370236ea5a6781 Reviewed-by:
Marco Bubke <marco.bubke@digia.com>
-
- 07 Mar, 2013 1 commit
-
-
Marco Bubke authored
Change-Id: I4075e62cb15c91be3561ac29df814d0f0f255b8e Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
- 05 Mar, 2013 1 commit
-
-
Thomas Hartmann authored
And PropertyName is a typedef for QByteArray. Because we don't use the features of QString and the source would be cluttered with QLatin1Strings we changed the property name to QByteArray. Change-Id: Ib70ef136bbc411504b450456bd9bb705ae93dd25 Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
- 06 Feb, 2013 1 commit
-
-
Thomas Hartmann authored
Change-Id: I8eefba1b5b9839b28be5dbae379366714f40ed27 Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
- 29 Jan, 2013 1 commit
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 23 Jan, 2013 1 commit
-
-
Marco Bubke authored
The document handling in the qml designer was complicated source code, which was initially intended for a non creator application. To integrate new views it has to be changed and cleaned up. This is the first major step in that direction. Change-Id: Ie26f0aad7a03946d18bdb4c0759b246c5439d922 Reviewed-by:
Tim Jenssen <tim.jenssen@digia.com> Reviewed-by:
Alessandro Portale <alessandro.portale@digia.com>
-
- 08 Jan, 2013 1 commit
-
-
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>
-
- 05 Oct, 2012 1 commit
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 06 Aug, 2012 1 commit
-
-
hjk authored
More uniform. Change-Id: I1c6057981f4c2b3170a4e69f0674fe4caf1143a2 Reviewed-by:
Robert Loehning <robert.loehning@nokia.com>
-
- 19 Jul, 2012 1 commit
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- 26 Jan, 2012 1 commit
-
-
hjk authored
Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- 03 Nov, 2011 1 commit
-
-
hjk authored
Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- 06 Jul, 2011 1 commit
-
-
Marco Bubke authored
Because of the asynchronous nature of the formeditor the item can be between to states. This looks like the item is hoping around. To prevent this a token is sent to the instances and back. For the time frame the painting is disabled. Change-Id: If7e937cba8171248464ad350bb14438c020b25f9 Reviewed-on: http://codereview.qt.nokia.com/1189Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Alessandro Portale <alessandro.portale@nokia.com>
-
- 28 Jun, 2011 2 commits
-
-
Marco Bubke authored
The information change notifier provided no hint which infotmation changed. So the property editor has updated the anchors for all information changes. Now there is a hint and the update is only happen for a anchor change. Change-Id: I3b6d7546f43bce4c08757662e7af32604a8db56f Reviewed-on: http://codereview.qt.nokia.com/811Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@nokia.com>
-
Thomas Hartmann authored
Change-Id: I958b99967da8ed81542de08b64334c88d688f755 Reviewed-on: http://codereview.qt.nokia.com/828Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Marco Bubke <marco.bubke@nokia.com>
-
- 27 Jun, 2011 1 commit
-
-
Thomas Hartmann authored
Also exposing changeCurrentModelTo() as public API. Change-Id: I7c9ed3679ef5859b1349f1d1fe3088e78bccc7ad Reviewed-on: http://codereview.qt.nokia.com/787Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@nokia.com>
-
- 24 Jun, 2011 1 commit
-
-
Thomas Hartmann authored
Change-Id: I0ea2441d2989b8e395955b5e19ad45d341d12379 Reviewed-on: http://codereview.qt.nokia.com/716Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@nokia.com>
-
- 20 Jun, 2011 1 commit
-
-
Thomas Hartmann authored
Explicit braces to avoid ambiguous ‘else’. Change-Id: Ic1a48b41b229ba47f7ab737a883277a6547e30ce Reviewed-on: http://codereview.qt.nokia.com/521Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@nokia.com>
-
- 09 Jun, 2011 2 commits
-
-
Thomas Hartmann authored
There was some dead code I removed. I also refactored the node removal and made it more robust. Change-Id: I3bd566011302968c1d798689fcca3b4a3880b306 Reviewed-on: http://codereview.qt.nokia.com/417Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@nokia.com>
-
Thomas Hartmann authored
I implemented nodeReparented() (bugfix) I use ModelNode::ComponentSource instead of childNode.type() == "QtQuick.Component" to catch "implicit" components. Change-Id: Ie5bd48afbb5a5b10c3544406b1229aafc5dabed5 Reviewed-on: http://codereview.qt.nokia.com/416Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@nokia.com>
-
- 08 Jun, 2011 1 commit
-
-
Thomas Hartmann authored
I changed customParserSource into nodeSource and use it also for components. This means we do not use auxiliaryData anymore with some magic __component_data identifier. To distinguish between CustumParserSource and ComponentSource I introduced the enum NodeSourceType. Also in this patch I added auxiliaryData in the creation of a node. This was useful for prototyping and will help with prototyping/testing in the future. Change-Id: I2152c26c0c767f869f7dce7209abf43f594fd2ad Reviewed-on: http://codereview.qt.nokia.com/399Reviewed-by:
Marco Bubke <marco.bubke@nokia.com>
-
- 24 May, 2011 1 commit
-
-
Thomas Hartmann authored
This includes refactoring the DesignDocumentController. In the ComponentTextMoifier I use replaced because it is not blocked by beginEditBlock() of the text cursor. I use the same pattern now for ComponentView like for all the other views. The view is created and controlled by DesignModeWidget because we have only a single instance. Change-Id: I7809b96f52f4d275f0231f3961c3c4bc2618ce89 Reviewed-on: http://codereview.qt.nokia.com/96Reviewed-by:
Marco Bubke <marco.bubke@nokia.com>
-
- 06 May, 2011 2 commits
-
-
Tobias Hunger authored
Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
-
Thomas Hartmann authored
This patch enables us to create objects with custom parsers like ListModel and XmlListModel.
-
- 13 Apr, 2011 1 commit
-
-
hjk authored
-
- 10 Feb, 2011 1 commit
-
-
Marco Bubke authored
-
- 02 Feb, 2011 1 commit
-
-
Marco Bubke authored
-
- 01 Feb, 2011 1 commit
-
-
Marco Bubke authored
The custom notification code leads to hard readable code.
-
- 12 Jan, 2011 2 commits
- 17 Dec, 2010 1 commit
-
-
con authored
-
- 16 Dec, 2010 1 commit
-
-
Roberto Raggi authored
-
- 09 Dec, 2010 1 commit
-
-
Marco Bubke authored
This notifies the views if the instance has be really instanced.
-
- 08 Dec, 2010 1 commit
-
-
Marco Bubke authored
Reviewed-By: Thomas Hartmann
-
- 06 Oct, 2010 1 commit
-
-
Kai Koehne authored
-