summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/NoteFontViewer.cpp
blob: ca23d11a9d6b676f0abc37a4085ca112ee9ad654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
    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 "NoteFontViewer.h"

#include <tdelocale.h>
#include "FontViewFrame.h"
#include <kcombobox.h>
#include <kdialogbase.h>
#include <tdetoolbar.h>
#include <tqlabel.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqvbox.h>
#include <tqwidget.h>


namespace Rosegarden
{

void
NoteFontViewer::slotViewChanged(int i)
{
    m_frame->setGlyphs(i == 0);

    m_rows->clear();
    int firstRow = -1;

    for (int r = 0; r < 256; ++r) {
        if (m_frame->hasRow(r)) {
            m_rows->insertItem(TQString("%1").arg(r));
            if (firstRow < 0)
                firstRow = r;
        }
    }

    if (firstRow < 0) {
        m_rows->setEnabled(false);
        m_frame->setRow(0);
    } else {
        m_rows->setEnabled(true);
        m_frame->setRow(firstRow);
    }
}

void
NoteFontViewer::slotRowChanged(const TQString &s)
{
    bool ok;
    int i = s.toInt(&ok);
    if (ok)
        m_frame->setRow(i);
}

void
NoteFontViewer::slotFontChanged(const TQString &s)
{
    m_frame->setFont(s);
    slotViewChanged(m_view->currentItem());
}

NoteFontViewer::NoteFontViewer(TQWidget *parent, TQString noteFontName,
                               TQStringList fontNames, int pixelSize) :
        KDialogBase(parent, 0, true,
                    i18n("Note Font Viewer: %1").arg(noteFontName), Close)
{
    TQVBox *box = makeVBoxMainWidget();
    TDEToolBar* controls = new TDEToolBar(box);
    controls->setMargin(3);

    (void) new TQLabel(i18n("  Component: "), controls);
    m_font = new KComboBox(controls);

    for (TQStringList::iterator i = fontNames.begin(); i != fontNames.end();
            ++i) {
        m_font->insertItem(*i);
    }

    (void) new TQLabel(i18n("  View: "), controls);
    m_view = new KComboBox(controls);

    m_view->insertItem(i18n("Glyphs"));
    m_view->insertItem(i18n("Codes"));

    (void) new TQLabel(i18n("  Page: "), controls);
    m_rows = new KComboBox(controls);

    m_frame = new FontViewFrame(pixelSize, box);

    connect(m_font, TQT_SIGNAL(activated(const TQString &)),
            this, TQT_SLOT(slotFontChanged(const TQString &)));

    connect(m_view, TQT_SIGNAL(activated(int)),
            this, TQT_SLOT(slotViewChanged(int)));

    connect(m_rows, TQT_SIGNAL(activated(const TQString &)),
            this, TQT_SLOT(slotRowChanged(const TQString &)));

    slotFontChanged(m_font->currentText());
}

}
#include "NoteFontViewer.moc"