QToolButton with color popup menu with lets you select a color. The popup features a color dialog button which can be used to add custom colors to the popup menu.
Version 0.2.0

$ git clone https://github.com/ksnip/kColorPicker$ cd kColorPicker$ mkdir build && cd build$ cmake .. && make$ sudo make install$ ./example/kColorPicker-exampleYou can either build the project as shared library by providing the
flag -DBUILD_SHARED_LIBS=ON to cmake or
-DBUILD_SHARED_LIBS=OFF to build as static library. On
Windows we currently can only build as static library.
Let cmake find the shared library, optionally with version
set(KCOLORPICKER_MIN_VERSION "0.x.x")
find_package(kColorPicker ${KCOLORPICKER_MIN_VERSION} REQUIRED)
Link the library with your application
target_link_libraries(myApp kColorPicker)