# HG changeset patch # User Chris Cannam # Date 1173464310 0 # Node ID 863a470df510a378e2d130c2b070afb6a17a4568 # Parent a7b88d07a8365d779723808a5522c6cbd50d6b9b * Basic beginnings of what will become a tip-of-the-day dialog diff -r a7b88d07a836 -r 863a470df510 i18n/tips_en.txt --- a/i18n/tips_en.txt Fri Mar 09 17:39:27 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,87 +0,0 @@ - - - - -

Welcome to Sonic Visualiser!

- -

Sonic Visualiser is pretty complex, but you can use it for simple -things very easily. Try importing an audio file and using the Pane -menu to add some different views of it.

- -

Check out the links on the Help menu for tutorials and other -documentation!

- - -
- - - -

Sonic Visualiser's window is organised into panes and -layers. To begin with, you have one pane. Import an audio -file to see it displayed in a waveform layer on that pane.

- - -
- - - -

Each pane can contain any number of layers, which appear stacked -from "front" to "back" on the same timeline. A layer can contain a -view of audio, or of points (time instants) or data plots (time-values).

- - -
- - - -

There's a layer property box shown to the right of each -layer, with one tab for each of the layers on that pane. Click on a -layer's tab to bring that layer to the front. You can then adjust its -colour and other display properties in the property box.

- -

The first tab is always for the pane itself, which has a few -adjustable properties of its own.

- - -
- - - -

If you have more than one pane, only one of them will be "current", -marked with a black bar at the left side. Just click on another pane -to make it current. Most editing operations affect the layer that's -at the front of the current pane.

- - -
- - - -

You can use different zoom levels for different panes by un-checking -the Global Zoom control for one of them. By default, all panes will -zoom and scroll together.

- - -
- - - -

You can speed up and slow down playback using the Playback Speedup -control in the bottom-right of the window.

- - -
- - - -

The Transforms menu lists things you can do to extract features from -or process your audio. The available outputs of any Vamp -feature-extraction plugins or LADSPA audio effects plugins you have -will show up here.

- - -
- -
- - diff -r a7b88d07a836 -r 863a470df510 i18n/tips_en.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/i18n/tips_en.xml Fri Mar 09 18:18:30 2007 +0000 @@ -0,0 +1,71 @@ + + + +Welcome to Sonic Visualiser! + +Sonic Visualiser is pretty complex, but you can use it for simple +things very easily. Try importing an audio file and using the Pane +menu to add some different views of it. + +Check out the links on the Help menu for tutorials and other +documentation! + + + + +Sonic Visualiser's window is organised into "panes" and +"layers". To begin with, you have one pane. Import an audio +file to see it displayed in a waveform layer on that pane. + + + + +Each pane can contain any number of layers, which appear stacked +from "front" to "back" on the same timeline. A layer can contain a +view of audio, or of points (time instants) or data plots (time-values). + + + + +There's a "layer property box" to the right of each pane, with one +tab for each of the layers on that pane. Click on a layer's tab to +bring that layer to the front. You can then adjust its colour and +other display properties in the property box. + +The first tab is always for the pane itself, which has a few +adjustable properties of its own. + + + + +If you have more than one pane, only one of them will be "current", +marked with a black bar at the left side. Just click on another pane +to make it current. Most editing operations affect the layer that's +at the front of the current pane. + + + + +You can use different zoom levels for different panes by un-checking +the Global Zoom control for one of them. By default, all panes will +zoom and scroll together. + + + + +You can speed up and slow down playback using the Playback Speedup +control in the bottom-right of the window. + + + + +The Transforms menu lists things you can do to extract features from +or process your audio. The available outputs of any Vamp +feature-extraction plugins or LADSPA audio effects plugins you have +will show up here. + + + + + + diff -r a7b88d07a836 -r 863a470df510 main/main.cpp --- a/main/main.cpp Fri Mar 09 17:39:27 2007 +0000 +++ b/main/main.cpp Fri Mar 09 18:18:30 2007 +0000 @@ -20,6 +20,7 @@ #include "base/TempDirectory.h" #include "base/PropertyContainer.h" #include "base/Preferences.h" +#include "widgets/TipDialog.h" #include #include @@ -194,6 +195,11 @@ } } + TipDialog tipDialog; + if (tipDialog.isOK()) { + tipDialog.exec(); + } + int rv = application.exec(); std::cerr << "application.exec() returned " << rv << std::endl; diff -r a7b88d07a836 -r 863a470df510 sonic-visualiser.qrc --- a/sonic-visualiser.qrc Fri Mar 09 17:39:27 2007 +0000 +++ b/sonic-visualiser.qrc Fri Mar 09 18:18:30 2007 +0000 @@ -69,5 +69,6 @@ samples/strike.wav samples/tap.wav i18n/sonic-visualiser_ru.qm + i18n/tips_en.xml