diff options
Diffstat (limited to 'src/colortable.h')
| -rw-r--r-- | src/colortable.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/colortable.h b/src/colortable.h index c2b64a4d..039b6024 100644 --- a/src/colortable.h +++ b/src/colortable.h @@ -5,13 +5,24 @@ class Settings; +// a QTableWidget to view and modify color settings +// class ColorTable : public QTableWidget { public: ColorTable(QWidget* parent=nullptr); + // adds colors to the table from the settings + // void load(Settings& s); + + // resets the colors to their default values; commitColors() must be called + // to save them + // void resetColors(); + + // commits any changes + // void commitColors(); private: |
