aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2013-07-21Normalising order of language headers.Neil2-3/+3
2013-07-21Separating out C and C++ flags so that Clang works agin for C files.Unknown1-5/+6
2013-07-21Add standard compliance flag.Unknown1-2/+2
2013-07-21Replaced M_PI with a local constant kPi since M_PI is not defined by ISO C/C++.Unknown1-2/+4
2013-07-21Standardising header guards and namespaces.Neil1-0/+13
2013-07-19Updated dependencies.Unknown1-12/+18
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil2-30/+14
case conversion of Unicode text in accordance with Unicode.
2013-07-01Added CharacterCategory.Neil1-1/+1
2013-06-18Renaming variables to explain their role better.Unknown1-19/+19
2013-06-18Bug: [#1488] Simplify gtk scrollbar resize code.Unknown1-10/+3
From Todd Whiteman at ActiveState.
2013-06-06Disable methods required for GTK+ 3 when building for GTK+ 2.Unknown1-0/+6
2013-06-05Make method const since it has no side-effects.Unknown1-1/+1
2013-05-26Switch SelectionText to use a std::string to hold the data and to provide ↵nyamatongwe1-14/+15
accessors to this data. Add a length argument to DropAt, although previous signature still available.
2013-05-25Use simplified call to set SelectionText from std::string.Neil Hodgson1-16/+18
Change input argument of ConvertText to const as it is not changed.
2013-05-25Bug: [#1481]. Incorrect event copying on GTK+ 3.x.Neil Hodgson1-5/+14
2013-05-25Fix crashes with SelectionText instances that did not have \0 terminators.Neil Hodgson1-7/+7
2013-05-24Updated make dependencies.Neil Hodgson1-4/+4
2013-05-24Made methods const where they can be and are logically const as well.nyamatongwe1-2/+2
2013-05-23Always display editor text in LTR directionYosef Or Boczko1-1/+4
2013-05-23Switch to calls compatible with old compilers/run times so that cross compilingnyamatongwe2-4/+4
Linux -> OS X works. From Mitchell Foral.
2013-05-06Indentation formatting.Neil Hodgson1-16/+15
2013-05-06Simplify CaseMapString by grouping the code that requires conversionNeil Hodgson1-19/+26
from and to UTF-8 together. Wrapping the allocation ensures deallocation in all cases.
2013-05-05Since new throws an exception on failure, remove testing of result.nyamatongwe1-5/+3
2013-05-04Replacing raw pointers and allocations with std::vector and std::string.Neil Hodgson2-165/+110
2013-05-01Removed SVector.h and all references as it is no longer used.nyamatongwe2-2/+1
2013-04-26Release all cached fonts when finalising.Unknown1-0/+8
2013-04-26Added memory sanitizer to clang debug builds.Neil Hodgson1-0/+4
2013-04-19Remove unused methods.nyamatongwe1-30/+0
2013-03-13Implement high-priority idle work on Cocoa to avoid abandoning paints in ↵nyamatongwe1-1/+1
some situations. Rename IdleStyling to IdleWork.
2013-03-13Call UpdateUI before blit scrolling so caret change will have been processedUnknown1-0/+1
and brace highlighting updated before painting.
2013-03-13Add different types of task to StyleNeeded mechanism, renaming to WorkNeeded.Unknown1-5/+5
Ask to perform update UI work for some selection moves.
2013-02-21Fixed outdated comment.nyamatongwe1-2/+1
2013-02-18Drop -Wno-long-long as it makes no difference on current systems.nyamatongwe1-2/+2
Add --std=c++0x when compiling with clang as would like to move to c++11. clang only works on new distributions so the option will be present when useful.
2013-02-18Update make dependencies.nyamatongwe1-5/+5
2013-02-05To run Clang analyzer, use 'analyze' target instead of defining 'CLANG_ANALYZE'.nyamatongwe1-5/+5
This prevents later failures with linking.
2013-01-26Use CXXFLAGS for C++ only, not for C.nyamatongwe1-3/+3
2013-01-01Properly update the Pango contexts for the target surfaceColomban Wendling1-0/+4
This fixes drawing on a surface that has different settings (like scaling) than the display surface, by performing the measurements on a layout properly set up for the target surface. In practice, this fixes e.g. printing on a scaled surface. --- gtk/PlatGTK.cxx | 4 ++++ 1 file changed, 4 insertions(+)
2013-01-01Avoid deprecated threads APIs when using GDK >= 3.6.Neil Hodgson1-0/+8
2013-01-01Switch to non-deprecated thread and mutex APIs when using GLib >= 2.31.Neil Hodgson1-0/+12
2012-09-05Fix crashes on Ubuntu with GTK+3 where scroll bar changes invalidate thenyamatongwe1-0/+4
drawing surface.
2012-07-21Add extra argument to RGBAImage constructor.Neil Hodgson1-1/+1
2012-07-16Remove files built as a side effect of clang --analyze.Neil Hodgson1-1/+1
2012-05-27Disable a warning that clang 3.0 gives incorrectly.Neil Hodgson2-0/+10
2012-05-27Add a way to run the clang static analyzer by defining CLANG_ANALYZE to make.Neil Hodgson1-2/+5
2012-05-08Add some casts to avoid narrowing warnings from g++ 4.7.nyamatongwe1-2/+2
2012-04-29Ignore smooth scrolling events.nyamatongwe1-0/+7
2012-04-29Fix deprecation warning for GTK+ 3.4.nyamatongwe1-0/+5
2012-04-29Fix autocompletion list being too short on GTK+ 3.x.nyamatongwe1-1/+6
2012-04-21Use C++ casts instead of C casts to avoid warnings from cppcheck.nyamatongwe1-5/+5
2012-03-11Make mouse wheel scrolling work again on recent GTK+. Bug #3501321.nyamatongwe1-0/+1
From Sébastien Granjoux.