diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 18:37:05 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 18:37:05 +0000 |
commit | 145364a8af6a1fec06556221e66d4b724a62fc9a (patch) | |
tree | 53bd71a544008c518034f208d64c932dc2883f50 /src/gui/dialogs/TextEventDialog.h | |
download | rosegarden-145364a8af6a1fec06556221e66d4b724a62fc9a.tar.gz rosegarden-145364a8af6a1fec06556221e66d4b724a62fc9a.zip |
Added old abandoned KDE3 version of the RoseGarden MIDI tool
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1097595 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/dialogs/TextEventDialog.h')
-rw-r--r-- | src/gui/dialogs/TextEventDialog.h | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/src/gui/dialogs/TextEventDialog.h b/src/gui/dialogs/TextEventDialog.h new file mode 100644 index 0000000..0f389b0 --- /dev/null +++ b/src/gui/dialogs/TextEventDialog.h @@ -0,0 +1,129 @@ + +/* -*- 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. +*/ + +#ifndef _RG_TEXTEVENTDIALOG_H_ +#define _RG_TEXTEVENTDIALOG_H_ + +#include "base/NotationTypes.h" +#include <string> +#include <kdialogbase.h> +#include <qstring.h> +#include <vector> + + +class QWidget; +class QLineEdit; +class QLabel; +class KComboBox; +class QSpinBox; + +namespace Rosegarden +{ + +class NotePixmapFactory; + + +class TextEventDialog : public KDialogBase +{ + Q_OBJECT + +public: + TextEventDialog(QWidget *parent, + NotePixmapFactory *npf, + Text defaultText, + int maxLength = -1); // for Qt default + + Text getText() const; + +public slots: + void slotTextChanged(const QString &); + void slotTypeChanged(const QString &); + + /* + * Save previous state of assorted widgets for restoration in the next + * instance + */ + void slotOK(); + + // convenience canned texts + void slotDynamicShortcutChanged(const QString &); + void slotDirectionShortcutChanged(const QString &); + void slotLocalDirectionShortcutChanged(const QString &); + void slotTempoShortcutChanged(const QString &); + void slotLocalTempoShortcutChanged(const QString &); + + // + // special LilyPond directives, initial phase, as cheap text events; will + // eventually move out of Text, and out of this dialog into + // some other less cheesy interface + // + void slotLilyPondDirectiveChanged(const QString &); + +protected: + + std::string getTextType() const; + std::string getTextString() const; + + //--------------- Data members --------------------------------- + + QLineEdit *m_text; + KComboBox *m_typeCombo; + QSpinBox *m_verseSpin; + KComboBox *m_dynamicShortcutCombo; + KComboBox *m_directionShortcutCombo; + KComboBox *m_localDirectionShortcutCombo; + KComboBox *m_tempoShortcutCombo; + KComboBox *m_localTempoShortcutCombo; + // temporary home: + KComboBox *m_lilyPondDirectiveCombo; + + + QLabel *m_staffAboveLabel; + QLabel *m_textExampleLabel; + QLabel *m_staffBelowLabel; + QLabel *m_dynamicShortcutLabel; + QLabel *m_directionShortcutLabel; + QLabel *m_localDirectionShortcutLabel; + QLabel *m_tempoShortcutLabel; + QLabel *m_localTempoShortcutLabel; + QLabel *m_verseLabel; + // temporary home: + QLabel *m_directiveLabel; + + QString m_prevChord; + QString m_prevLyric; + QString m_prevAnnotation; + + NotePixmapFactory *m_notePixmapFactory; + std::vector<std::string> m_styles; +// std::vector<std::string> m_directives; + +}; + + + +} + +#endif |