diff options
author | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2021-04-21 09:53:54 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2021-05-03 09:32:17 +0200 |
commit | 5a4bd9bfbdb881368c202bc766f893a5c672621e (patch) | |
tree | d3f37369f5085e1f343ebb38c2ed13cd9ed8cc72 /sc/source/ui/inc | |
parent | 95d8eb87eb20351a2e5795fc8c16653c0f58d6b4 (diff) |
tdf#76258 Filter by colors
UI/Logic implementation
Change-Id: If7b48219caa466d8a3341bdc4e104d696e8988c5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114385
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/gridwin.hxx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx index 950d574a1ec7..023715a33c8a 100644 --- a/sc/source/ui/inc/gridwin.hxx +++ b/sc/source/ui/inc/gridwin.hxx @@ -322,7 +322,18 @@ protected: virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override; public: - enum class AutoFilterMode { Normal, Top10, Custom, Empty, NonEmpty, SortAscending, SortDescending }; + enum class AutoFilterMode + { + Normal, + Top10, + Custom, + Empty, + NonEmpty, + TextColor, + BackgroundColor, + SortAscending, + SortDescending, + }; ScGridWindow( vcl::Window* pParent, ScViewData& rData, ScSplitPos eWhichPos ); virtual ~ScGridWindow() override; |