- Oct 29, 2010
-
-
Friedemann Kleint authored
Fix 722e48c2.
-
Friedemann Kleint authored
Remove internal markers from exported headers, introduce private class for BaseTextDocument. Reviewed-by:
Leandro T. C. Melo <leandro.melo@nokia.com>
-
- Oct 28, 2010
-
-
Takumi ASAKI authored
TextEditor will now recognize an UTF-8 BOM. A setting to determine what to do on saving has been added as well - the options are "Always Add", "Keep Already Present" and (mostly for completeness) "Always Delete". Note: if encoding is "System", "Always Add" doesn't work, because there is no API to know what the System encoding is. Task-number: QTCREATORBUG-1857 Merge-request: 2180 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- Oct 11, 2010
-
-
con authored
Moving the logic out of BaseTextDocument for use at other places.
-
- Sep 07, 2010
-
-
mae authored
Also fixes a crash when folding code at the very end of the document Task-number: QTCREATORBUG-2159
-
- Jul 09, 2010
-
-
Roberto Raggi authored
We need our very own syntax highlighter in Qt Creator.
-
- Jul 07, 2010
-
-
Thorbjørn Lindeijer authored
Previously it would always jump to the start of the document, since that's where the newly created text cursor is at the beginEditBlock call. Avoid this when saving the current editor by starting with the cursor of the editor. Reviewed-by: mae Task-number: QTCREATORBUG-1807
-
- May 28, 2010
-
-
Thorbjørn Lindeijer authored
While reloading a text document, the bookmarks got lost since their associated QTextBlocks were deleted. This patch makes sure that before reloading, the bookmarks are removed non-persistently in the same way as when closing a document, and that they are restored after the document was reloaded. Currently, no effort is made to update the location of the bookmarks based on the way the file changed. Task-number: QTCREATORBUG-1281 Reviewed-by: dt
-
- May 12, 2010
-
-
dt authored
Reviewed-By: con Reviewed-By: Friedemann Kleint We now support renaming files. The version control system tries first to rename, if that doesn't support or can't rename the file we do a normal rename. (Note: git, hg, perforce > 2009.02 support renaming, cvs not. (perforce untested)). We correctly notify all editors of the renamed file and tell the project manager to rename the file in the project. Note: Only the qt4projectmanager knows how to rename files. Note: renaming folders, moving files to different folders, renaming .pro/.pri files is not supported. Those things can be later added after this has proven to work correctly in the simple case. Also we don't do any actions based on the renaming like renaming classes, changing include guards or #include lines.
-
- Apr 26, 2010
-
-
Thorbjørn Lindeijer authored
-
Thorbjørn Lindeijer authored
The Parentheses, TextBlockUserData and TextEditDocumentLayout classes and their member function implementations were spread around the BaseTextEditor class. Moving them to their own file to make the code a bit better organized. Reviewed-by: mae
-
- Apr 13, 2010
-
-
mae authored
Task-number: QTCREATORBUG-365 Reviewed-by: dt
-
- Apr 08, 2010
-
-
con authored
Task-number: QTCREATORBUG-1077
-
- Apr 01, 2010
-
-
Christian Kamm authored
Previously, it could contain multiple directory separators, . or .. This makes using the filename safe for hashes like the ones used in the C++ and Qml code models. Reviewed-by: Roberto Raggi Reviewed-by: mae
-
- Mar 22, 2010
-
-
con authored
Reviewed-by: dt
-
- Mar 05, 2010
-
-
hjk authored
-
- Feb 08, 2010
-
-
Roopesh Chander authored
-
Roopesh Chander authored
-
- Feb 04, 2010
-
-
hjk authored
-
- Dec 14, 2009
-
-
mae authored
QTCREATORBUG-456
-
- Oct 05, 2009
-
-
Friedemann Kleint authored
Also move Designer::Internal::FormWindowEditor -> Designer::FormWindowEditor.
-
- Sep 24, 2009
-
-
mae authored
After recent qt changes, the initial revision after a QTextDocument::setPlainText() is not 0.
-
- Sep 09, 2009
- Aug 26, 2009
-
-
Thorbjørn Lindeijer authored
-
- Aug 14, 2009
-
-
hjk authored
-
- Jul 13, 2009
-
-
Henrik Abelsson authored
Merge-request: 840 Reviewed-by:
Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
-
- Jun 16, 2009
-
-
con authored
Reviewed-by: Trust Me Conflicts: src/libs/cplusplus/CppBindings.cpp src/libs/cplusplus/CppBindings.h src/libs/cplusplus/FastPreprocessor.cpp src/libs/cplusplus/FastPreprocessor.h src/plugins/cpptools/cppcurrentdocumentfilter.cpp src/plugins/cpptools/cppcurrentdocumentfilter.h src/plugins/cpptools/cppsemanticsearch.cpp src/plugins/cpptools/cppsemanticsearch.h src/plugins/duieditor/parser/qmljs.g src/plugins/duieditor/parser/qmljsast.cpp src/plugins/duieditor/parser/qmljsast_p.h src/plugins/duieditor/parser/qmljsastfwd_p.h src/plugins/duieditor/parser/qmljsastvisitor.cpp src/plugins/duieditor/parser/qmljsastvisitor_p.h src/plugins/duieditor/parser/qmljsengine_p.cpp src/plugins/duieditor/parser/qmljsengine_p.h src/plugins/duieditor/parser/qmljsgrammar.cpp src/plugins/duieditor/parser/qmljsgrammar_p.h src/plugins/duieditor/parser/qmljslexer.cpp src/plugins/duieditor/parser/qmljslexer_p.h src/plugins/duieditor/parser/qmljsmemorypool_p.h src/plugins/duieditor/parser/qmljsnodepool_p.h src/plugins/duieditor/parser/qmljsparser.cpp src/plugins/duieditor/parser/qmljsparser_p.h src/plugins/duieditor/parser/qmljsprettypretty.cpp src/plugins/duieditor/parser/qmljsprettypretty_p.h src/plugins/duieditor/rewriter/rewriter.cpp src/plugins/duieditor/rewriter/rewriter_p.h src/plugins/duieditor/rewriter/textwriter.cpp src/plugins/duieditor/rewriter/textwriter_p.h src/shared/cplusplus/ASTClone.cpp tests/manual/cplusplus/main.cpp
-
Jason McDonald authored
Reviewed-by: Trust Me
-
- May 15, 2009
-
-
con authored
-
- May 13, 2009
-
-
con authored
-
- May 08, 2009
-
-
mae authored
on QFileInfo to tell us that a file is not writable, but accept that the attempt to save a file might actually fail (:-) ). This solves the NT network domain issue without the insane slowness. The stuff needs more work. We do not have any UI for failing save operations when closing creator (other than it doesn't close). Bad.
-
Roberto Raggi authored
Done with: mae
-
Roberto Raggi authored
Done with: mae
-
- Apr 17, 2009
-
-
Simon Hausmann authored
-
- Apr 15, 2009
-
-
kh authored
Reviewed-by: Thorbjorn Lindeijer
-
Thorbjørn Lindeijer authored
Pointed out by Mathias Gumz.
-
- Apr 14, 2009
-
-
Thorbjørn Lindeijer authored
-
Mathias Gumz authored
bugfix for windows: trying to open files stored on network drives relied on QFileInfo::isWritable() without using the real filesystem checks
-
- Feb 25, 2009
-
-
hjk authored
-