summaryrefslogtreecommitdiff
path: root/libs/canvas
AgeCommit message (Collapse)Author
2014-03-04"correct" curve drawing (no artifacts during redraw)Paul Davis
Interpolation errors still need addressing.
2014-03-04tentative intermediate state for ArdourCanvas::CurvePaul Davis
2014-03-04only queue an item redraw from Item::show() or Item::Hide() if the call ↵Paul Davis
changes the visibility status of the item (i.e. make no-ops really be no-ops)
2014-03-04break down GdkEventExpose into distinct rectangles for canvas expose rather ↵Paul Davis
than drawing the entire region as a single rect
2014-03-04mingw build fixes (tested with i686-w64-mingw32 on linux-x86_64)Robin Gareus
2014-03-02remove recently added conflation of mingw64 and msvc with respect to symbol ↵Paul Davis
export
2014-03-01fix compilation of libcanvas so that when built as a shared lib (the ↵Paul Davis
default), -DLIBCANVAS_DLL_EXPORTS=1 is not lost
2014-03-01when mingw is mingw64, it appears that we need to use __declspec() and not ↵Paul Davis
__attribute__((visibility)) for export control
2014-02-28remove debug messages, for nowPaul Davis
2014-02-28change implementation of ArdourCanvas::Curve to use GIMP-inspired ideas.Paul Davis
Presmooth with quadratic bezier, then interpolate when rendering. Not finished yet
2014-02-27remove unneeded extra methods in ArdourCanvas::CurvePaul Davis
2014-02-25fix canvas enter/leave bug when point is over a group/ignore-event item and ↵Paul Davis
we fail to send a leave event to the previous item
2014-02-25add DEBUG::CanvasEnterLeave to allow runtime toggling of canvas enter/leave ↵Paul Davis
events
2014-02-25tweak canvas rect drawing to correctly place bottom edge of rectangle inside ↵Paul Davis
the bounds (cairo works in mysterious ways)
2014-02-20allow per-line configurability of the threshold used to determine if a ↵Paul Davis
PolyLine covers a given coordination
2014-02-19fix error in canvas PolyLine::covers(), so that the mouse can actually ↵Paul Davis
enter/leave such items
2014-02-17make stateful image canvas item actually compilePaul Davis
2014-02-17new canvas item to allow image-based GUI constructionPaul Davis
2014-02-14fix up problems with patch change flgs not changing height correctlyPaul Davis
2014-02-14since we now expand rectangles to the right always, adjust the bounding box ↵Paul Davis
computation
2014-02-13remove debug messagePaul Davis
2014-02-13fix up some issues with precise placement of ArdourCanvas::Rectangle ↵Paul Davis
frame/outline
2014-02-13make Item::set_position() do nothing if the position doesn't changePaul Davis
2014-02-13Guard some Debug output so that it only appears when applicable ↵John Emmas
('Item::name' is only available when CANVAS_DEBUG is defined)
2014-02-12slight code tidy for Line::render() ... don't use 0.5 pixel adjustment if ↵Paul Davis
the line width > 1.0
2014-02-12fix up major thinko's in ArdourCanvas::Group's handling of deletion (both ↵Paul Davis
its own, and child items)
2014-02-11fix major thinko in ArdourCanvas::Group::clear()Paul Davis
2014-02-11when delivering canvas events, if an item is grabbed, use it in preference ↵Paul Davis
to Canvas::_current_item, but still propagate to its ancestors if left unhandled
2014-02-11fix text placement in ArdourCanvas::FlagPaul Davis
2014-01-26remove unused _wave_color member from waveview canvas item; use outline ↵Paul Davis
color for edge dots of waveforms instead of hardcoding black
2014-01-20a better, more general fix for the previous Canvas::item_going_away() issue. ↵Paul Davis
There is no need to repick the current item if the item going away is NOT the current item
2014-01-20When removing an item which is event-insensitive, there is no need to repick ↵Paul Davis
the current item, since it can never have been used as the current item. This fixes crashes associated with ghost notes in midi regions.
2014-01-16add event type string function to canvas (since it does not use gtkmm2ext)Paul Davis
2014-01-13pixel-align canvas PolyItems with single-pixel outlines, for crispnessPaul Davis
2014-01-12move -fvisibility=hidden to the top of the source tree, and remove its ↵Paul Davis
internal use; use libtimecode as a shared lib again
2014-01-10final (?) tweaks to rectangle renderingPaul Davis
2014-01-10clamp expose (queue_redraw()) requests to visible window area, some extra ↵Paul Davis
debugging details
2014-01-10make no-zero-line be the default for wave views (still shown for normal ↵Paul Davis
audio region views
2014-01-10fix up thinko in recent raise_to_top/lower_to_bottom optimizationPaul Davis
2014-01-10slightly expand CanvasRender debug outputPaul Davis
2014-01-10don't go through ::deliver_enter_leave() unnecessarilyPaul Davis
2014-01-08prevent Rect::expand() from generating negative coordinates where there were ↵Paul Davis
none before
2014-01-08tweak rectangle bounding box computationPaul Davis
2014-01-08remove unused codePaul Davis
2014-01-08change rounding used for convert Rect from canvas to window coordinatesPaul Davis
2014-01-08Revert "remove unused code"Paul Davis
This reverts commit 2d283c17e17940c356af0cc1366b714e0d7b76be.
2014-01-08remove unused codePaul Davis
2014-01-07shrink waveview zero line to single pixelPaul Davis
2014-01-07mostly fix conceptual error in how canvas rectangle frames are drawnPaul Davis
2014-01-07for now, hide ugly circle thing in drag handlesPaul Davis