All Projects → gammasoft71 → Examples_wxWidgets

gammasoft71 / Examples_wxWidgets

Licence: MIT license
Shows how to use wxWidgets controls only by programming code (c++17).

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to Examples wxWidgets

Examples Qt
Shows how to use Qt widgets only by programming code (c++17).
Stars: ✭ 38 (-67.24%)
Mutual labels:  multi-platform, examples, checkbox, progressbar, radio-buttons, controls, textbox, trackbar, tabcontrol
Examples Win32
Shows how to use Win32 controls by programming code (c++17).
Stars: ✭ 22 (-81.03%)
Mutual labels:  examples, checkbox, progressbar, radio-buttons, controls, textbox, messagebox, trackbar
Examples Gtkmm
Shows how to use Gtkmm controls by programming code (c++17).
Stars: ✭ 23 (-80.17%)
Mutual labels:  examples, checkbox, progressbar, radio-buttons, controls, textbox, trackbar, tabcontrol
Examples FLTK
Shows how to use Fltk controls only by programming code (c++17).
Stars: ✭ 28 (-75.86%)
Mutual labels:  multi-platform, examples, progressbar, radio-buttons, textbox, trackbar
db2-samples
Db2 application code, configuration samples, and other examples
Stars: ✭ 56 (-51.72%)
Mutual labels:  sample, examples, samples
Rxjava2 Android Samples
RxJava 2 Android Examples - Migration From RxJava 1 to RxJava 2 - How to use RxJava 2 in Android
Stars: ✭ 4,950 (+4167.24%)
Mutual labels:  sample, examples, samples
Haxe Basics
The collection of easy samples and hello-worlds for Haxe.
Stars: ✭ 78 (-32.76%)
Mutual labels:  examples, samples
Ngxs Examples
NGXS Example Apps
Stars: ✭ 80 (-31.03%)
Mutual labels:  examples, samples
Thinking In Spring Boot Samples
小马哥书籍《Spring Boot 编程思想》示例工程
Stars: ✭ 1,725 (+1387.07%)
Mutual labels:  examples, samples
vercel-examples
📦 Example projects using Vercel platform. Using Node.js, PHP and others.
Stars: ✭ 205 (+76.72%)
Mutual labels:  sample, examples
samplescope
Desktop app with the main goal to simplify audio samples search over the internet sources.
Stars: ✭ 23 (-80.17%)
Mutual labels:  sample, samples
sendbird-javascript-samples
A guide of the installation and functions of Sendbird Chat, UIKit, and SyncManager for JavaScript samples.
Stars: ✭ 315 (+171.55%)
Mutual labels:  sample, samples
Examples
Many examples of Raku code
Stars: ✭ 276 (+137.93%)
Mutual labels:  examples, samples
Golang Samples
Sample apps and code written for Google Cloud in the Go programming language.
Stars: ✭ 3,088 (+2562.07%)
Mutual labels:  sample, samples
Androidwithkotlin
🚀 These are android sample projects which are written in Kotlin. It covers video streaming, mp3 player, sqlite, location services, custom camera, o-notifications, simple compass etc.
Stars: ✭ 447 (+285.34%)
Mutual labels:  sample, samples
playground
📚 Examples, projects, webprojects, skeletons for Nette Framework (@nette) from community members. Included @contributte @apitte @nettrine projects.
Stars: ✭ 23 (-80.17%)
Mutual labels:  examples, samples
Examples
An complete examples and related support for various popular projects, and more.
Stars: ✭ 22 (-81.03%)
Mutual labels:  examples, samples
Unity3D-JobsSystemAndBurstSamples
Examples of using the Job System in Unity 2018
Stars: ✭ 46 (-60.34%)
Mutual labels:  examples, samples
reisen
A simple library to extract video and audio frames from media containers (based on libav).
Stars: ✭ 41 (-64.66%)
Mutual labels:  sample, samples
Llvm 9.0 Learner Tutorial
A blog for LLVM(v9.0.0 or v11.0.0) beginner, step by step, with detailed documents and comments. Record the way I learn LLVM and accomplish a complete project for FPGA High-Level Synthesis with it.
Stars: ✭ 58 (-50%)
Mutual labels:  sample, samples

wxWidgets Examples

Shows how to use wxWidgets controls only by programming code (c++17).

wxwidgets

wxWidgets

Download

git clone https://github.com/gammasoft71/Examples_wxWidgets Examples_wxWidgets

Build and run

To build this project, open "Terminal" and type following lines:

Windows

mkdir build && cd build
cmake ..
start wxWidgetsExamples.sln

Select any project and type Ctrl+F5 to build and run it.

macOS :

mkdir build && cd build
cmake .. -G "Xcode"
open ./wxWidgetsExamples.xcodeproj

Select any project and type Cmd+R to build and run it.

Linux with Code::Blocks :

mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./wxWidgetsExamples.cbp > /dev/null 2>&1

Select any project and type F10 to build and run it.

Linux :

mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject

Remarks

This project run with wxWidgets 3.2 or above and CMake 3.0 or above.

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].