79 lines
1.9 KiB
C++

/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)LGPL2+
*
* LXDE-Qt - a lightweight, Qt based, desktop toolset
* http://razor-qt.org
*
* Copyright: 2015 LXQt team
* Authors:
* Dmitriy Zhukov <zjesclean@gmail.com>
*
* This program or library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* END_COMMON_COPYRIGHT_HEADER */
#ifndef _KBDINFO_H_
#define _KBDINFO_H_
#include <QString>
#include <QList>
class KbdInfo
{
public:
KbdInfo()
{}
struct Info
{
QString sym;
QString name;
QString variant;
};
public:
const QString & currentSym() const
{ return m_keyboardInfo[m_current].sym; }
const QString & currentName() const
{ return m_keyboardInfo[m_current].name; }
const QString & currentVariant() const
{ return m_keyboardInfo[m_current].variant; }
int currentGroup() const
{ return m_current; }
void setCurrentGroup(int group)
{ m_current = group; }
uint size() const
{ return m_keyboardInfo.size(); }
const Info & current() const
{ return m_keyboardInfo[m_current]; }
void clear()
{ m_keyboardInfo.clear(); }
void append(const Info & info)
{ m_keyboardInfo.append(info); }
private:
QList<Info> m_keyboardInfo;
int m_current = 0;
};
#endif