Adding license header to each file
This commit is contained in:
parent
00c15976b7
commit
f606426e13
83 changed files with 1875 additions and 191 deletions
|
@ -1,30 +1,77 @@
|
|||
package actions;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
|
||||
/**
|
||||
* Created by Gabriel on 28/03/2014.
|
||||
*/
|
||||
|
||||
public class ExpertModeAction extends AbstractAction {
|
||||
public static final String ACTIVE = "ExpertModeActive";
|
||||
|
||||
/**
|
||||
* Create the ExpertModeAction.
|
||||
* @param default_value Is the expert mode enabled ?
|
||||
*/
|
||||
public ExpertModeAction(boolean default_value) {
|
||||
super("Mode expert");
|
||||
putValue(ACTIVE,default_value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
putValue(ACTIVE, !((Boolean) getValue(ACTIVE)));
|
||||
}
|
||||
|
||||
/* public void setExpertMode(Boolean enabled) {
|
||||
putValue(ACTIVE,enabled);
|
||||
}*/
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.package actions;
|
||||
*/
|
||||
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* Created by Gabriel on 28/03/2014.
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
public class ExpertModeAction extends AbstractAction {
|
||||
|
||||
public static final String ACTIVE = "ExpertModeActive";
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* Create the ExpertModeAction.
|
||||
|
||||
* @param default_value Is the expert mode enabled ?
|
||||
|
||||
*/
|
||||
|
||||
public ExpertModeAction(boolean default_value) {
|
||||
|
||||
super("Mode expert");
|
||||
|
||||
putValue(ACTIVE,default_value);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
|
||||
putValue(ACTIVE, !((Boolean) getValue(ACTIVE)));
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* public void setExpertMode(Boolean enabled) {
|
||||
|
||||
putValue(ACTIVE,enabled);
|
||||
|
||||
}*/
|
||||
|
||||
}
|
|
@ -1,48 +1,114 @@
|
|||
package actions;
|
||||
|
||||
import generictools.Strings;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.filechooser.FileNameExtensionFilter;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* Ask to user to open a File and start reading.
|
||||
*/
|
||||
public class ImportFileAction extends AbstractAction {
|
||||
public static final String FILE = "Fichier";
|
||||
private final JComboBox<String> sourceList;
|
||||
private final JFileChooser chooser = new JFileChooser();
|
||||
private final JFrame frame;
|
||||
|
||||
public ImportFileAction(JFrame frame, JComboBox<String> sourceList){
|
||||
super("Importer un fichier...");
|
||||
this.frame = frame;
|
||||
this.sourceList = sourceList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoked when the user clicks either on file import button or menu item.
|
||||
* Loads the file in memory
|
||||
* @param e An event.
|
||||
*/
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
FileNameExtensionFilter filter = new FileNameExtensionFilter("Fichier Audio wav", "wav");
|
||||
chooser.setFileFilter(filter);
|
||||
int returnVal = chooser.showOpenDialog(frame);
|
||||
if(returnVal == JFileChooser.APPROVE_OPTION) {
|
||||
if (sourceList.getItemCount() > 1)
|
||||
sourceList.removeItemAt(1);
|
||||
File audioFile = new File(chooser.getSelectedFile().getAbsolutePath());
|
||||
putValue(FILE, audioFile);
|
||||
sourceList.addItem(audioFile.getName());
|
||||
sourceList.setPrototypeDisplayValue(Strings.longestString("Fichier", audioFile.getName()));
|
||||
sourceList.setSelectedIndex(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.package actions;
|
||||
*/
|
||||
|
||||
|
||||
import generictools.Strings;
|
||||
|
||||
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
import javax.swing.filechooser.FileNameExtensionFilter;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* Ask to user to open a File and start reading.
|
||||
|
||||
*/
|
||||
|
||||
public class ImportFileAction extends AbstractAction {
|
||||
|
||||
public static final String FILE = "Fichier";
|
||||
|
||||
private final JComboBox<String> sourceList;
|
||||
|
||||
private final JFileChooser chooser = new JFileChooser();
|
||||
|
||||
private final JFrame frame;
|
||||
|
||||
|
||||
|
||||
public ImportFileAction(JFrame frame, JComboBox<String> sourceList){
|
||||
|
||||
super("Importer un fichier...");
|
||||
|
||||
this.frame = frame;
|
||||
|
||||
this.sourceList = sourceList;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* Invoked when the user clicks either on file import button or menu item.
|
||||
|
||||
* Loads the file in memory
|
||||
|
||||
* @param e An event.
|
||||
|
||||
*/
|
||||
|
||||
@Override
|
||||
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
|
||||
FileNameExtensionFilter filter = new FileNameExtensionFilter("Fichier Audio wav", "wav");
|
||||
|
||||
chooser.setFileFilter(filter);
|
||||
|
||||
int returnVal = chooser.showOpenDialog(frame);
|
||||
|
||||
if(returnVal == JFileChooser.APPROVE_OPTION) {
|
||||
|
||||
if (sourceList.getItemCount() > 1)
|
||||
|
||||
sourceList.removeItemAt(1);
|
||||
|
||||
File audioFile = new File(chooser.getSelectedFile().getAbsolutePath());
|
||||
|
||||
putValue(FILE, audioFile);
|
||||
|
||||
sourceList.addItem(audioFile.getName());
|
||||
|
||||
sourceList.setPrototypeDisplayValue(Strings.longestString("Fichier", audioFile.getName()));
|
||||
|
||||
sourceList.setSelectedIndex(1);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,30 @@
|
|||
package actions;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.package actions;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.WindowEvent;
|
||||
*/
|
||||
|
||||
/**
|
||||
* Created by harry2410 on 18/04/2014.
|
||||
* Created by gaugendre on 18/04/2014.
|
||||
*/
|
||||
public class QuitAction extends AbstractAction {
|
||||
|
||||
|
|
|
@ -1,34 +1,85 @@
|
|||
package actions;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.beans.PropertyVetoException;
|
||||
|
||||
|
||||
/**
|
||||
* Created by Gabriel on 28/03/2014.
|
||||
*/
|
||||
public class ShowInternalFrameAction extends AbstractAction {
|
||||
private final JDesktopPane desktopPane;
|
||||
private final JInternalFrame internalFrame;
|
||||
|
||||
public ShowInternalFrameAction(JDesktopPane desktopPane, JInternalFrame internalFrame) {
|
||||
super(internalFrame.getTitle());
|
||||
this.desktopPane = desktopPane;
|
||||
this.internalFrame = internalFrame;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
if (!internalFrame.isVisible()) {
|
||||
desktopPane.add(internalFrame);
|
||||
internalFrame.setVisible(true);
|
||||
} else {
|
||||
try {
|
||||
internalFrame.setSelected(true);
|
||||
} catch (PropertyVetoException e1) {
|
||||
e1.printStackTrace(System.err);
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.package actions;
|
||||
*/
|
||||
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
|
||||
import java.beans.PropertyVetoException;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* Created by Gabriel on 28/03/2014.
|
||||
|
||||
*/
|
||||
|
||||
public class ShowInternalFrameAction extends AbstractAction {
|
||||
|
||||
private final JDesktopPane desktopPane;
|
||||
|
||||
private final JInternalFrame internalFrame;
|
||||
|
||||
|
||||
|
||||
public ShowInternalFrameAction(JDesktopPane desktopPane, JInternalFrame internalFrame) {
|
||||
|
||||
super(internalFrame.getTitle());
|
||||
|
||||
this.desktopPane = desktopPane;
|
||||
|
||||
this.internalFrame = internalFrame;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
|
||||
if (!internalFrame.isVisible()) {
|
||||
|
||||
desktopPane.add(internalFrame);
|
||||
|
||||
internalFrame.setVisible(true);
|
||||
|
||||
} else {
|
||||
|
||||
try {
|
||||
|
||||
internalFrame.setSelected(true);
|
||||
|
||||
} catch (PropertyVetoException e1) {
|
||||
|
||||
e1.printStackTrace(System.err);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import generictools.Instant;
|
||||
import processing.buffer.NoteBuffer;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
/**
|
||||
* Created by gaby on 14/05/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import processing.buffer.NoteBuffer;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import processing.buffer.NoteBuffer;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
/**
|
||||
* Created by gaby on 14/05/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
/**
|
||||
* Created by gaby on 06/05/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package conteneurs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package conteneurs;
|
||||
|
||||
import generictools.Pair;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package generictools;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package generictools;
|
||||
|
||||
/**
|
||||
* Created by Gabriel on 25/03/2014.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package generictools;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package generictools;
|
||||
|
||||
import processing.buffer.Buffer;
|
||||
import processing.buffer.TemporalBuffer;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package generictools;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package generictools;
|
||||
|
||||
/**
|
||||
* Created by gaby on 21/03/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package generictools;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package generictools;
|
||||
|
||||
/** Created by Gabriel Augendre on 18/04/2014.
|
||||
* Renvoie la chaine de caractere la plus longue parmi celles donnees en paramètre */
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package generictools;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package generictools;
|
||||
|
||||
import processing.buffer.Buffer;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import generictools.Pair;
|
||||
import javafx.scene.Group;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
public interface ClipView {
|
||||
public void currentFrameChanged();
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import javafx.geometry.Point2D;
|
||||
import javafx.scene.shape.Line;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import javafx.scene.paint.Color;
|
||||
import javafx.scene.text.Text;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
|
||||
import actions.ExpertModeAction;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import generictools.Instant;
|
||||
import processing.BufferPlayer;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import generictools.Instant;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import javafx.scene.control.Button;
|
||||
import javafx.scene.control.ProgressBar;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import gui.graphs.GraphicView;
|
||||
import javafx.application.Platform;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui;
|
||||
|
||||
import generictools.Instant;
|
||||
import gui.viewer_state.BufferViewerState;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.ObservableObject;
|
||||
import gui.PlayerControl;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.ObservableObject;
|
||||
import javafx.application.Platform;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.ObservableObject;
|
||||
import gui.PlayerControl;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.*;
|
||||
import javafx.application.Platform;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import generictools.Instant;
|
||||
import gui.PlayerControl;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
/**
|
||||
* Adapted by arthur from Candle.java in javafx's Ensemble8 demo.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
/**
|
||||
* Modified by arthur in javafx's Ensemble8 demo.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.Gamme;
|
||||
import conteneurs.NoteGamme;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.*;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.ObservableObject;
|
||||
import javafx.application.Platform;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.NoteList;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import javafx.application.Platform;
|
||||
import javafx.beans.value.ChangeListener;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.*;import javafx.scene.chart.CategoryAxis;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.Gamme;
|
||||
import conteneurs.NoteGamme;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.Spectre;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
import conteneurs.Gamme;
|
||||
import conteneurs.NoteGamme;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.graphs;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.graphs;
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008, 2013 Oracle and/or its affiliates.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.viewer_state;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.viewer_state;
|
||||
|
||||
import processing.buffer.Buffer;
|
||||
import processing.buffer.BufferEvent;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.viewer_state;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.viewer_state;
|
||||
|
||||
import conteneurs.ObservableObject;
|
||||
import conteneurs.ObservableObjectEvent;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.viewer_state;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.viewer_state;
|
||||
|
||||
/**
|
||||
* Created by gaby on 09/04/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package gui.viewer_state;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package gui.viewer_state;
|
||||
|
||||
import processing.ProcessControl;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing;
|
||||
|
||||
import processing.buffer.Storage;
|
||||
import processing.buffer.TemporalBuffer;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing;
|
||||
|
||||
import generictools.Instant;
|
||||
import gui.PlayerControl;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing;
|
||||
|
||||
import conteneurs.Note;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing;
|
||||
|
||||
|
||||
import conteneurs.NoteEventList;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing;
|
||||
|
||||
import conteneurs.Gamme;
|
||||
import conteneurs.Spectre;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing;
|
||||
|
||||
import conteneurs.Spectre;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
import conteneurs.ObservableObject;
|
||||
import conteneurs.ObservableObjectEvent;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
/**
|
||||
* Created by gaby on 02/04/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
import conteneurs.*;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
/**
|
||||
* Created by gaby on 31/03/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.buffer;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.buffer;
|
||||
|
||||
import generictools.Instant;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
import conteneurs.Note;
|
||||
import conteneurs.NoteEvent;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
import conteneurs.NoteGamme;
|
||||
import conteneurs.RegularGamme;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
import conteneurs.Spectre;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
import conteneurs.*;
|
||||
import generictools.Instant;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
import generictools.Instant;
|
||||
import processing.buffer.Buffer;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
|
||||
import generictools.Pair;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.processes;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.processes;
|
||||
|
||||
/**
|
||||
* Created by gaby on 25/05/14.
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.event.EventHandler;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import generictools.Pair;
|
||||
import javafx.application.Platform;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import com.sun.org.apache.bcel.internal.generic.FLOAD;
|
||||
import javafx.event.ActionEvent;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.event.EventHandler;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import javafx.application.Platform;
|
||||
import javafx.scene.control.Control;
|
||||
|
|
|
@ -1,4 +1,23 @@
|
|||
package processing.properties;
|
||||
/*
|
||||
Reversound is used to get the music sheet of a piece from a music file.
|
||||
Copyright (C) 2014 Gabriel AUGENDRE
|
||||
Copyright (C) 2014 Gabriel DIENY
|
||||
Copyright (C) 2014 Arthur GAUCHER
|
||||
Copyright (C) 2014 Gabriel LEPETIT-AIMON
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/package processing.properties;
|
||||
|
||||
import javafx.application.Platform;
|
||||
import javafx.event.ActionEvent;
|
||||
|
|
Loading…
Reference in a new issue