summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/FileMergeDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/dialogs/FileMergeDialog.cpp')
-rw-r--r--src/gui/dialogs/FileMergeDialog.cpp84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/gui/dialogs/FileMergeDialog.cpp b/src/gui/dialogs/FileMergeDialog.cpp
new file mode 100644
index 0000000..d997327
--- /dev/null
+++ b/src/gui/dialogs/FileMergeDialog.cpp
@@ -0,0 +1,84 @@
+/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
+
+/*
+ Rosegarden
+ A MIDI and audio sequencer and musical notation editor.
+
+ This program is Copyright 2000-2008
+ Guillaume Laurent <glaurent@telegraph-road.org>,
+ Chris Cannam <cannam@all-day-breakfast.com>,
+ Richard Bown <richard.bown@ferventsoftware.com>
+
+ The moral rights of Guillaume Laurent, Chris Cannam, and Richard
+ Bown to claim authorship of this work have been asserted.
+
+ Other copyrights also apply to some parts of this work. Please
+ see the AUTHORS file and individual file headers for details.
+
+ 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 2 of the
+ License, or (at your option) any later version. See the file
+ COPYING included with this distribution for more information.
+*/
+
+
+#include "FileMergeDialog.h"
+
+#include <klocale.h>
+#include <kcombobox.h>
+#include <kdialogbase.h>
+#include <qcheckbox.h>
+#include <qhbox.h>
+#include <qlabel.h>
+#include <qstring.h>
+#include <qvbox.h>
+#include <qwidget.h>
+#include "document/RosegardenGUIDoc.h"
+
+
+namespace Rosegarden
+{
+
+FileMergeDialog::FileMergeDialog(QWidget *parent,
+ QString /*fileName*/,
+ bool timingsDiffer) :
+ KDialogBase(parent, 0, true, i18n("Merge File"), Ok | Cancel | Help)
+{
+ setHelp("file-merge");
+
+ QVBox *vbox = makeVBoxMainWidget();
+
+ QHBox *hbox = new QHBox(vbox);
+ new QLabel(i18n("Merge new file "), hbox);
+
+ m_choice = new KComboBox(hbox);
+ m_choice->insertItem(i18n("At start of existing composition"));
+ m_choice->insertItem(i18n("From end of existing composition"));
+ m_useTimings = 0;
+
+ if (timingsDiffer) {
+ new QLabel(i18n("The file has different time signatures or tempos."), vbox);
+ m_useTimings = new QCheckBox(i18n("Import these as well"), vbox);
+ m_useTimings->setChecked(false);
+ }
+}
+
+int
+FileMergeDialog::getMergeOptions()
+{
+ int options = MERGE_KEEP_OLD_TIMINGS | MERGE_IN_NEW_TRACKS;
+
+ if (m_choice->currentItem() == 1) {
+ options |= MERGE_AT_END;
+ }
+
+ if (m_useTimings && m_useTimings->isChecked()) {
+ options |= MERGE_KEEP_NEW_TIMINGS;
+ }
+
+ return options;
+}
+
+}
+#include "FileMergeDialog.moc"