Go to file
Julian Hinxlage 397982e59a Merge branch 'dev' into 'master'
Final Merge

See merge request link/projekte/ws19/vkvm-new/library!5
2020-01-09 06:51:12 +00:00
.ci + pixelwerte getter/setter 2019-11-21 11:35:54 +01:00
src reset shared memory if reset() is called 2020-01-08 12:11:15 +01:00
test removed keyboard buffer unit test 2020-01-07 16:16:07 +01:00
.clang-tidy + starting with unit tests for pixel area 2019-11-29 11:39:40 +01:00
.gitignore + Catch2 as Unit Test Framework 2019-10-16 15:11:16 +02:00
.gitlab-ci.yml ~use clang instead of g++ 2020-01-08 16:36:56 +00:00
CHANGELOG.md ~ updated changelog for 0.2.0 2019-11-07 17:44:06 +01:00
CMakeLists.txt add for MACOS 2020-01-08 13:15:27 +01:00
LICENSE + Catch2 as Unit Test Framework 2019-10-16 15:11:16 +02:00
README.md better README 2019-10-28 18:41:41 +00:00

README.md

vKVM Library

This library allows for easy interaction with the graphical user interface of the vKVM project.

Features

  • set pixel color
  • respond to keyboard/mouse events
  • get/set text to be drawn

Installation

Use the installation script provided in the Scripts repository to install the full package.

Installing a single component is currently not supported.

Include

Include this library with

set(LIB_PATH "${CMAKE_SOURCE_DIR}/../relative_path_to_library_folder")

include_directories(${LIB_PATH}/include)
add_executable(your_client ${SOURCES} ${HEADERS})

target_link_libraries(your_client ${LIB_PATH}/lib/liblibrary.a)

in your CMakeList.

Usage

#include <vkvm.h>

int main(int argc, char* argv[]) {
    if(argc != 1) return -1;
    int pid = std::stoi(argv[0]);
    initialize(pid);

    setPixel(10, 10, Color::black);
    setPixel(10, 20, Color::red);
}