All Projects → copperspice → Copperspice

copperspice / Copperspice

Cross platform C++ libraries

Programming Languages

cpp
1120 projects

Projects that are alternatives of or similar to Copperspice

Hyper Haskell
The strongly hyped Haskell interpreter.
Stars: ✭ 342 (-45.71%)
Mutual labels:  cross-platform, gui
Tgui
Cross-platform modern c++ GUI
Stars: ✭ 371 (-41.11%)
Mutual labels:  cross-platform, gui
Ricochet
Anonymous peer-to-peer instant messaging
Stars: ✭ 3,570 (+466.67%)
Mutual labels:  cross-platform, gui
Eiskaltdcpp
File sharing program using DC and ADC protocols
Stars: ✭ 277 (-56.03%)
Mutual labels:  cross-platform, gui
Autopy
A simple, cross-platform GUI automation module for Python and Rust.
Stars: ✭ 522 (-17.14%)
Mutual labels:  cross-platform, gui
Orbtk
The Rust UI-Toolkit.
Stars: ✭ 3,460 (+449.21%)
Mutual labels:  cross-platform, gui
Sqlectron Gui
A simple and lightweight SQL client desktop with cross database and platform support.
Stars: ✭ 3,852 (+511.43%)
Mutual labels:  cross-platform, gui
Libagar
Cross-Platform GUI Toolkit (stable)
Stars: ✭ 212 (-66.35%)
Mutual labels:  cross-platform, gui
Qt.go
Qt binding for Go (Golang) aims get Go's compile speed again.
Stars: ✭ 487 (-22.7%)
Mutual labels:  cross-platform, gui
Nigui
Cross-platform desktop GUI toolkit written in Nim
Stars: ✭ 430 (-31.75%)
Mutual labels:  cross-platform, gui
Cloaker
Simple, drag-and-drop, password-based file encryption
Stars: ✭ 267 (-57.62%)
Mutual labels:  cross-platform, gui
Qtsharp
Mono/.NET bindings for Qt
Stars: ✭ 532 (-15.56%)
Mutual labels:  cross-platform, gui
Docker Emacs
Dockerized Emacs (GUI)
Stars: ✭ 224 (-64.44%)
Mutual labels:  cross-platform, gui
Wxphp
Build cross-platform software with rich native GUIs using the combined power of the PHP language and the wxWidgets library.
Stars: ✭ 328 (-47.94%)
Mutual labels:  cross-platform, gui
Skui
Skia-based C++ UI framework
Stars: ✭ 218 (-65.4%)
Mutual labels:  cross-platform, gui
Wxwidgets
wxWidgets is a free and open source cross-platform C++ framework for writing advanced GUI applications using native controls.
Stars: ✭ 3,994 (+533.97%)
Mutual labels:  cross-platform, gui
Spotlightify
The Spotify overlay controller
Stars: ✭ 190 (-69.84%)
Mutual labels:  cross-platform, gui
Mednaffe
A front-end (GUI) for mednafen emulator
Stars: ✭ 200 (-68.25%)
Mutual labels:  cross-platform, gui
Go Astilectron
Build cross platform GUI apps with GO and HTML/JS/CSS (powered by Electron)
Stars: ✭ 4,150 (+558.73%)
Mutual labels:  cross-platform, gui
Dearpygui
Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies
Stars: ✭ 6,631 (+952.54%)
Mutual labels:  cross-platform, gui

CopperSpice

Introduction

CopperSpice is a set of individual libraries which can be used to develop cross platform software applications in C++. It is a totally open source project released under the LGPL V2.1 license and was initially derived from the Qt framework. Over the last several years CopperSpice has completely diverged, with a goal of providing a first class GUI library to unite the C++ community.

Our motivation for developing CopperSpice was to change the fundamental design and turn the existing framework into a set of libraries for C++ developers. We are accomplishing this by leveraging modern C++ functionality, new technology, and modern tooling. CopperSpice currently requires C++17 or newer.

The libraries avaiable in CopperSpice include:

  • CsCore
  • CsGui
  • CsMultimedia
  • CsNetwork
  • CsOpenGL
  • CsScript
  • CsSql
  • CsSvg
  • CsWebKit
  • CsXml
  • CsXmlPatterns

There are also several open source BSD licensed libraries which are used by CopperSpice and available as stand alone libraries for anyone developing C++ applications.

  • CsPrint
  • CsSignal
  • CsString
  • CsLibGuarded

System Requirements

To use the CopperSpice libraries a C++17 compiler and a C++17 standard library are required.

CopperSpice CMake build files are provided with the source distribution. We recommend your projects should also use CMake for the build system.

For additional information about building from source, refer to our CopperSpice Overview Documentation or the KitchenSink demo application for sample CMake project files.

Building

The CopperSpice libraries are built using the CMake build system.

Documentation

Overview

The CopperSpice Overview documentation includes information on building CopperSpice, downloading prebuilt binary files, package requirements, setting up an application which links with CopperSpice, migrating to CopperSpice, and general configuration information.

www.copperspice.com/docs/cs_overview/index.html

API

The API contains full class documentation and multiple tutorials for CopperSpice and is available directly on our website and from our download page.

URL Description
www.copperspice.com/docs/cs_api/index.html CopperSpice 1.7
https://download.copperspice.com/copperspice/documentation Overview and API (tar and zip formats)
Major Enhancements

Reflection

  • No Meta-Object Compiler is required for generating meta data, all references were removed
  • The functionality provided by moc was replaced with compile time templates
  • CopperSpice automatically generates meta data for processing Signals/ Slots and Introspection
  • A template class can now inherit from QObject with no restrictions on types
  • Complex data types such as QMap<QString, int> can be used for signal or slot arguments

Enhanced Functionality

  • CopperSpice makes extensive use of modern C++ features

    • constexpr, variadic templates, SFINAE, lambda expressions, tuple, move semantics, and type traits
  • Redesigned all container classes to use the C++ standard library containers, iterators, and algorithms

  • CopperSpice includes a majority of the Qt 5 classes

  • New platform independent plugin system based on C++

  • High DPI Support

  • Integration of CsSignal

    • Improved thread aware Signal/Slot delivery
    • Increased efficiency while maintaining the full Signal/Slot API
    • Deadlocks in Signal/Slot processing have been eliminated
  • Integration of CsString

    • Improved storage to properly represent Unicode strings
    • QString8 (UTF-8) and QString16 (UTF-16) classes
    • Added QStringView and QStringParser
  • Integration of CsLibGuarded

    • Used to manage shared data

Using the Libraries

  • Any C++ application using CopperSpice can be built with CMake or any build system which imports CMake files
  • CopperSpice can be linked directly into any standard C++ application

Presentations

Our YouTube channel contains videos about C++, graphics, build systems, CopperSpice, DoxyPress, and other topics related to software development.

https://www.youtube.com/copperspice

Links to technical presentations recorded at CppCon, CppNow, embBO++, MeetingC++, and code::dive, can be found on our presentation page.

www.copperspice.com/presentations.html

Authors / Key Contributors

  • Ansel Sermersheim
  • Barbara Geller
  • Jan Wilmans
  • Tim van Deurzen
  • Peter Bindels
  • Jeff Cohen
  • Mortaro Marcello
  • Adam Mensel
  • Robin Mills
  • Ivailo Monev
  • Adam Mensel
  • Matan Nassaw
  • Daniel Pfeifer
  • Zbigniew Skowron

License

This library is released under the LGPL V2.1 license. For more information refer to the LICENSE file provided with this project.

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].