borgmanJeremy 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
..
CMakeLists.txt 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
Color2DSlider.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorDialog.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorLineEdit.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorLineEdit_with_color.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorListWidget.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorPaletteWidget.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorPaletteWidget_readonly.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorPreview.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
ColorWheel.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
GradientEditor.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
GradientListModel_combo.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
GradientListModel_view.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
HueSlider.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
README.md 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
Swatch.png 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago
screenshot.cpp 8ab1ac0eaa Bumping Qt-Color-Widgets (#2052) 2 years ago

README.md

Color Widgets Gallery

Color2DSlider

Color2DSlider

This widget allow the user to select 2 HSV color components at the same time, by default that is Saturation and Value but they can be changed.

ColorDialog

ColorDialog

This is a dialog analogous to QColorDialog but with a much nicer and friendlier user interface. It uses several of the other widgets.

ColorLineEdit

ColorLineEdit ColorLineEdit with color preview

This is a QLineEdit intended to be used to edit and display color names. It accepts several string formats:

  • #f00 (3 hexadecimal rgb digits)
  • #ff0000 (6 hexadecimal rgb digits)
  • rgb(255,0,0) (function-like)
  • red (color name)

It can optionally display the color it represents on its background.

ColorListWidget

ColorListWidget

It allows to display and edit a list of colors.

ColorPaletteWidget and Swatch

These widgets handle color palettes.

Swatch

Swatch only handles a single palette, can be used to just select colors from the palette or to modify the palette via drag and drop operations.

ColorPaletteModel is a list model that represents palettes with can be used with the Qt item view widgets, it provides a name and a preview icon for each of the stored palettes. It also has functionality to load and save palettes from the filesystem.

Read-only ColorPaletteWidget ColorPaletteWidget

ColorPaletteWidget manages a list of palettes (via ColorPaletteModel). Has two modes: read-only only allows to select palettes and colors, otherwise it can be used to modify the list of palettes and the palette itself.

ColorPreview and ColorSelector

ColorPreview

ColorPreview is a widget that displays a color or compares two colors.

ColorSelector is like ColorPreview but when clicked it shows a ColorDialog.

GradientSlider and HueSlider

HueSlider

GradientSlider is a QSlider which uses a gradient as its background.

HueSlider is specifically made to select a hue and has more information about the represented color.

GradientEditor

GradientEditor

GradientEditor is similar in appearance to GradientSlider but it's for editing the gradient.

GradientListModel and GradientDelegate

GradientListModel GradientListModel

GradientListModel is a QAbstractListModel used to list gradients (useful for combo boxes, item views and the like).

GradientDelegate is an item delegate to edit gradients in an item view.