xaizek / d2if (License: GPLv2+) (since 2018-12-07)
Simple dzen2 input formatter, which is supposed to not waste CPU time for nothing and provides a number of builtin "widgets" for displaying system information.
<root> / src / XKeyboard.hpp (c99d13b29db6d1d805f1cfd8100ee967741cb33a) (1,802B) (mode 100644) [raw]
// xkeyboard.hpp
// Interface for a class to get keyboard layout information and change layouts
// Copyright (C) 2008 by Jay Bromley <jbromley@gmail.com>
// Copyright (C) 2012 by xaizek <xaize@lavabit.com>
//
// 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.

#ifndef D2IF__XKEYBOARD_HPP__
#define D2IF__XKEYBOARD_HPP__

#include <cstddef>

#include <string>
#include <vector>


// XKeyboard -----------------------------------------------------------

class XKeyboard
{
public:
    XKeyboard();
    ~XKeyboard();

    std::size_t getGroupCount() const;
    const std::string & getCurrentGroupSymbol() const;

private:
    typedef std::vector<std::string> StringVector;

    bool initializeXkb();
    int currentGroupNum() const;
    std::string getSymbolNameByResNum(int groupResNum);
    int groupNumResToXkb(int groupNumRes);
    int groupLookup(int srcValue, StringVector fromText, StringVector toText, int count);
    void accomodateGroupXkb();

    struct _XDisplay* _display;
    int _groupCount;
    StringVector _groupNames;
    StringVector _symbolNames;
    int _currentGroupNum;

    int _deviceId;
};


// XkbSymbolParser -----------------------------------------------------

class XkbSymbolParser
{
public:
    typedef std::vector<std::string>::iterator StringVectorIter;

    XkbSymbolParser();
    ~XkbSymbolParser();
    void parse(const std::string& symbols, std::vector<std::string>& symbolList);

private:
    bool isXkbLayoutSymbol(const std::string& symbol);

    typedef std::vector<std::string> StringVector;
    StringVector _nonSymbols;
};

#endif // D2IF__XKEYBOARD_HPP__
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/d2if

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/d2if

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master