918a0ac5f9
update x-fade context-menu
2014-05-29 07:49:26 +02:00
7e44308471
replace use of Curve with XFadeCurve.
2014-05-29 03:10:22 +02:00
f226ed086b
update fade icons
2014-05-28 22:23:42 +02:00
d96a6ed247
fix x-fade icons in context menu
2014-05-28 19:46:31 +02:00
034f3dafd7
Revert "cairo sub-surface prototype & example
...
This reverts commit c57fcde78c
.
and also commit f1f8f89fcb
.
2014-05-28 19:13:25 +02:00
24537477c4
fix up operation of Editor::temporal_zoom_to_frame() which had not been updated since samples_per_pixel was changed to an integer (framecnt_t)
2014-05-28 12:18:37 -04:00
f1f8f89fcb
exercise subsurface rendering for x-fade curves
2014-05-28 17:38:42 +02:00
d9b7c8b864
for trx, use the primary clock for verbose cursor units
2014-05-27 13:26:49 -04:00
4cf93fffc2
x-fade drawing rework, part one
2014-05-27 16:37:01 +02:00
cadf07e362
global one-time setup of waveform preferences.
...
see note in previous commit.
2014-05-27 16:37:01 +02:00
a8f11b6004
persistent waveform shape setting.
...
NOTE: the call to set_global_shape() only needs to happen once,
presumably in a hook in the editor that catches Config::Changed
The same is true for waveform-scale and clipping. But for now it's
at least consistent.
2014-05-27 16:37:01 +02:00
a0037ee2d8
fixup freeze operation.
...
since rev. 1e3a955
, Session::write_one_track() gets and drops
thread buffers.
2014-05-26 07:00:00 +02:00
58d6c39b3d
fix sensitivity of engine dialog driver_combo.
2014-05-24 20:10:14 +02:00
b49e398250
Visual tweaks to Soundcloud panel
...
Re-arrange the items in the Soundcloud panel into a more sensible order &
arrangement, and add a (not-yet functional) tick-box to set the uploaded
files to be downloadable.
2014-05-23 18:45:40 +01:00
84bcf59812
Better names for Soundcloud-related members of ExportHandler
...
Rename the Soundcloud-related members of ExportHandler to all begin with
soundcloud_, and rename a couple of members of SoundcloudExportSelector
too for consistency.
2014-05-23 18:33:43 +01:00
9daab3db84
Make Soundcloud upload applicable to any export format.
...
Add soundcloud_upload property back into ExportFormatSpecification, but
instead of making it settable in the export format specification dialog,
add a tick-box in each tab of ExportFileNotebook to allow setting it.
2014-05-23 18:14:37 +01:00
2f6debf0d2
Remove Soundcloud upload from export format specification
...
Remove the Soundcloud upload property from export formats - it doesn't
belong there, since it's a thing which can apply (or not) to any format
preset.
2014-05-23 17:42:35 +01:00
8ebd8a99ab
Fix MS-DOS line endings
...
Somehow sfdb_freesound_mootcher.cc has ended up with MS-DOS style line
endings again. Put it back to UNIX-style.
2014-05-23 17:42:34 +01:00
3d2b8f1d84
meterbridge: don't include disk/input buttons on busses; fixes #5935
2014-05-23 00:41:43 +02:00
b0842d29de
fix binding name for set-tempo-from-region
2014-05-22 14:11:02 -04:00
0de7c8920b
Merge branch 'mingw-updates' of https://github.com/mojofunk/ardour into cairocanvas
2014-05-19 17:19:43 -04:00
5399425f53
Merge branch 'export-dialog' into cairocanvas
...
Fix merge conflicts in:
gtk2_ardour/export_range_markers_dialog.cc
gtk2_ardour/wscript
libs/ardour/ardour/export_handler.h
libs/ardour/system_exec.cc
libs/pbd/pbd/system_exec.h
libs/pbd/system_exec.cc
2014-05-19 20:54:36 +01:00
c464feb6aa
indent in wscript uses spaces
2014-05-19 20:50:37 +01:00
0cecd2f7d5
Use libardour SystemExec wrapper in gtk2_ardour
...
#include ardour/system_exec.h where SystemExec is used in gtk2_ardour to
get the libardour wrapper class, and remove the include completely where
it's no longer required.
2014-05-19 19:52:32 +01:00
529a31bde7
remove unnecessary and wierd constant for bottom rect (drop zone) of track canvas
2014-05-19 14:00:36 -04:00
1e907cedc5
comment tweak
2014-05-19 14:00:36 -04:00
8fd69776ea
adding a new track via copy-region-drag now works (and shares code with the non-copy case
2014-05-19 14:00:36 -04:00
00c7abe926
non-copy region drag now creates a new track when a region is dragged to the drop zone
2014-05-19 14:00:36 -04:00
356c1013ae
change return type of Editor::axis_view_from_route()
2014-05-19 14:00:36 -04:00
e8d3c16187
remove unused variable
2014-05-19 14:00:36 -04:00
a8c56ff927
part one of allowing region drag to the bottom (drop-zone) rect of track canvas
2014-05-19 14:00:36 -04:00
ccdb047a0a
don't load selected session if other-project is chosen:
...
1) Open Ardour
2) Select project from recent list
3) "Open Other" project
4) project from (2) is opened instead of the one chosen at (3)
2014-05-16 23:16:03 +02:00
4ece16be8e
replace gettimeofday() with g_get_monotonic_time()
2014-05-16 18:13:08 +02:00
Devin J. Pohly
e7b3020294
fix rounding error in the min:sec ruler
...
When zoomed in to the millisecond level, the framerate was being divided
by 1000 as an integer to generate a ruler tick interval, which doesn't
work so well at things like 44100 or 88200. Instead, just count this
value in milliseconds, dividing by 1000 when we are done.
This was purely a display issue - the grid was in the correct place.
2014-05-14 09:08:43 -04:00
Devin J. Pohly
db48bee3c7
fix major/minor ticks on min:sec ruler
...
All ticks from 0:00.000 to 0:00.999... were major, and everything after
was minor, instead of the correct distribution.
2014-05-14 09:08:14 -04:00
Devin J. Pohly
32f62beb90
fix major/minor ticks on min:sec ruler
...
All ticks from 0:00.000 to 0:00.999... were major, and everything after
was minor, instead of the correct distribution.
2014-05-14 08:36:03 -04:00
Devin J. Pohly
3b4b848d5a
fix rounding error in the min:sec ruler
...
When zoomed in to the millisecond level, the framerate was being divided
by 1000 as an integer to generate a ruler tick interval, which doesn't
work so well at things like 44100 or 88200. Instead, just count this
value in milliseconds, dividing by 1000 when we are done.
This was purely a display issue - the grid was in the correct place.
2014-05-14 08:35:43 -04:00
8a796bd5e1
Use Glib::usleep in Editor::timefx_thread on Windows
2014-05-14 09:47:40 +10:00
b768d6c39d
Include windows.h for Registry access related API
2014-05-14 09:47:40 +10:00
ce5744ae51
Fix collision between keyword interface used in glibmm and windows headers
2014-05-14 09:47:40 +10:00
592a21db5f
Oops - minor spelling corrections
2014-05-10 08:41:49 +01:00
b377bc44c2
Bug fix imported from Mixbus2 (SVN r11448)
...
If we couldn't figure out a plugin creator's name, either use as much of it as we could determine or mark the creator as 'Unknown'
2014-05-10 08:32:14 +01:00
349f66f413
Fix region content drag direction
...
Fix <Control>+drag in bottom of region to move the region contents in the
expected direction.
2014-05-07 19:38:22 +01:00
9a35f73b9e
Fix undo of layer-changing region drags
...
Move clear_changes() of the playlist on which a region has been dragged
before calling set_layer() on that playlist, so that undo of region drags
in layered mode undoes any layer changes too.
Should fix #5904
2014-05-07 19:38:07 +01:00
56af57d682
shift-modifier during trim dragging causes region to jump to original position (anchored at start or end, depending on trim type)
2014-05-07 12:13:34 -04:00
fbbf911229
fix mingw build - needs bundle_env_mingw.cc when building with mingw, and that is a build target, not a platform
2014-05-06 14:07:29 -04:00
Adrian Knoth
3fa8127d58
Add ComboOption configuration for default-fade-shape
...
Let the user choose the preferred default fade shape in the editor
section of the preference menu.
2014-05-01 20:02:19 +02:00
079d6a2866
if using the audio/MIDI setup dialog because there are >1 backends, but the chosen backend is not under our control (i.e. JACK), remember to start it before returning from the dialog
2014-05-01 12:31:35 -04:00
6544df039b
change location marker ruler text for get_trx() == true case
2014-05-01 07:53:46 -04:00
302fd7efeb
correctly set up ruler preferences for get_trx() == true case
2014-05-01 07:53:28 -04:00
1ac8815296
script to run ardour under callgrind
2014-04-30 19:06:32 +02:00
e6cb3e8bb2
remove two more unnecessary instances of os.path.join in install path definitions
2014-04-29 16:06:39 -04:00
Carl Hetherington
152935e736
Merge branch 'cairocanvas' of git.ardour.org:ardour/ardour into cairocanvas
2014-04-29 12:42:49 +01:00
38125d60c9
"sequence regions" operation (remove space between selected regions) added, c/o Thomas Brand
2014-04-29 00:11:05 -04:00
2f6065b32c
Fixed problem where importing invalid midi files caused crash.
2014-04-29 06:48:29 +10:00
9907d25ea5
skeleton dummy audio-engine
2014-04-28 21:29:35 +02:00
Carl Hetherington
e36f74e071
Fix some capitalisation in the preferences dialog.
2014-04-28 10:25:43 +01:00
c2a376a822
NOOP, no whitespace at EOF
2014-04-24 20:55:03 +02:00
523891f8f9
fix packing of LXVST UIs (minimum size, border)
2014-04-24 20:54:40 +02:00
9f266e9061
try get_win_special_folder() for harvid & xjadeo (if registry fails)
2014-04-24 13:22:17 +02:00
1929cbffb4
query windows registry for xjadeo & harvid path
2014-04-24 02:08:19 +02:00
8a8dc9ca04
fix xjadeo on windows (directly use xjadeo.exe)
2014-04-23 21:27:05 +02:00
cf61fb07b8
dynamically adjust open-video-dialog layout depending on configuration
2014-04-22 04:18:35 +02:00
c4bb32892f
increase LXVST GUI idle call regularity, aim for 25Hz
2014-04-21 14:44:36 +02:00
67ddda0158
vtl: fix leftover typo in request URL (noop)
2014-04-21 13:45:53 +02:00
1ea6321ad5
update GUI while waiting for video server to respond
2014-04-20 02:51:27 +02:00
0524f1ec14
add missing "Path" to label, re-order VST preferences
2014-04-20 02:51:27 +02:00
c123829c0a
Save any cached fonts into our dedicated cache folder (msvc)
...
(modifies the appropriate entry in 'fonts.conf')
2014-04-19 13:09:06 +01:00
4fd1a5edd5
videotimeline: path related fixes for windows
2014-04-19 02:03:43 +02:00
8accb22923
put back bottom line of region views if name highlight is not shown.
...
Also remove redundant line that replicated the one we modified.
2014-04-18 05:08:17 -04:00
06b700abf2
fix VST GUI swallowing for windows
2014-04-18 01:54:59 +02:00
2e63b84a10
account for MS version of std::isalnum() - fixes assert on UTF8
2014-04-17 23:24:37 +02:00
3131ab8bbd
new transport option, "loop-is-mode" which optionally changes the role of the "play loop" button.
...
If enabled, then the button simply changes the behaviour of the "play" button rather than actually starting playback. If disabled
transport behaviour should be unchanged from before.
2014-04-17 09:47:06 -04:00
59e6694405
fix lack of region trimming when not displaying name highlight bar
2014-04-16 09:03:16 -04:00
78bab09e98
improve comment text
2014-04-16 07:35:20 -04:00
0f7f9b068c
add preferences item for show-name-highlight (does not take effect till next instance)
2014-04-16 07:31:01 -04:00
e324249d8c
fix logic for Config->show_name_highlight (reversed from inital experiments)
2014-04-16 07:30:09 -04:00
981754781a
use new config option to control name highlight and name placement
2014-04-16 06:35:24 -04:00
5668eea2a3
add a transparent rect that is always located at the bottom of the track canvas
...
This gives us an event/drag-n-drop/click target for things "at the bottom"
2014-04-16 04:16:56 -04:00
8b93576c18
not that anyone ever runs with the SAE profile and not that we want to support it, but don't crash if they do
2014-04-16 03:00:49 -04:00
dbb8501429
make our intentions even clearer when call Editor::track_canvas_viewport_size_allocated()
2014-04-16 02:55:08 -04:00
fea4f14242
make our intentions clear when call Editor::track_canvas_viewport_size_allocated()
2014-04-16 02:52:55 -04:00
0d1d50a8b4
remove pointless assert (since condition is if-tested just before it was used)
2014-04-15 14:30:37 -04:00
2b10af45ab
Ensure that 'fixup_bundle_environment()' returns a suitable localedir (msvc)
2014-04-15 18:53:24 +01:00
dc4eae5c37
hopefully fix issue with Editor::set_canvas_cursor_for_region_view() which was incorrectly switching to trim cursors.
...
This started happening more frequently after this function started to be called more often (which was the right thing to do, but
had this side effect (now fixed).
2014-04-15 12:44:49 -04:00
dbaf203bac
fix ridiculous spelling error
2014-04-15 12:44:49 -04:00
70755c9950
Add some stuff that's needed for an MSVC built target:-
...
1) Make sure we create or open any files in binary mode
2) Make sure the user can see an error message of we fail to parse the command line
3) Make sure that the call to 'windows_vst_gui_init()' matches its declaration (i.e. only applicable when NOT on PLATFORM_WINDOWS)
2014-04-15 11:01:48 +01:00
dcd18d84ef
Make sure that the preprocessor directive in 'winmain.cc' matches the one in 'main.cc'
...
(also, some minor housekeeping)
2014-04-15 10:56:12 +01:00
0d5f4c553a
dramatic change in logic and naming for operations related to adding a MIDI region on demand and cloning/unlinking
...
Existing code would cause data loss due to creation of two Source objects referring the same path, one with removable flags and one without. Careful code review suggested a variety of thinkos, function naming problems and other confusion that caused this. I have tried ot extensively comment what is going on with these operations, because it is one key area in which MIDI differs from audio: with audio, capture is the only way to add a new audio region, but for MIDI there are GUI input events that can add a new region.
2014-04-14 13:05:08 -04:00
7cc5f8b321
fix prev commit (MSVC release builds)
2014-04-14 17:59:28 +02:00
18d4fd9f37
fun with the c-preprocessor. platform dependent VST support.
2014-04-14 17:54:21 +02:00
4336f75d3b
Make sure that when building with MSVC, a Release build will launch without an annoying, floating console window
2014-04-14 16:14:06 +01:00
15c5d12321
clean up 6cc2812f2e
(interim vst fixes)
2014-04-14 15:10:28 +02:00
eef4e1efee
-d (disable plugin) option takes no arguments
2014-04-14 12:26:10 +02:00
55bfe10fa6
make frame/trim handles transparent for now.
...
This is a new GUI feature that will not be completed for the 3.6 release, so just hide them.
2014-04-14 04:46:24 -04:00
343b06d8d3
dramatic change in logic and naming for operations related to adding a MIDI region on demand and cloning/unlinking
...
Existing code would cause data loss due to creation of two Source objects referring the same path, one with removable flags and one without. Careful code review suggested a variety of thinkos, function naming problems and other confusion that caused this. I have tried ot extensively comment what is going on with these operations, because it is one key area in which MIDI differs from audio: with audio, capture is the only way to add a new audio region, but for MIDI there are GUI input events that can add a new region.
2014-04-14 02:17:30 -04:00
unknown
6cc2812f2e
interim vst fixes
2014-04-11 14:23:29 -05:00
f678700376
amend previous commit, remove cruft, no more extern function pointers
2014-04-11 19:36:17 +02:00
670c066793
add manual reference to missing video-tools warnings
2014-04-11 17:24:50 +02:00
5d9c2104d2
Oops - correct some typos in my previous commit
...
(accidentally used G_DIR_SEPARATOR instead of G_SEARCHPATH_SEPARATOR)
2014-04-11 15:36:04 +01:00