[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-bugs-dist
Subject:    [Bug 305603] Wish: frequently/recently used styles on top in list in text editing docker
From:       Pierre Stirnweiss <pstirnweiss () googlemail ! com>
Date:       2012-11-28 17:15:55
Message-ID: bug-305603-17878-pKcs8VwiVm () http ! bugs ! kde ! org/
[Download RAW message or body]

https://bugs.kde.org/show_bug.cgi?id=305603

Pierre Stirnweiss <pstirnweiss@googlemail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
      Latest Commit|                            |http://commits.kde.org/call
                   |                            |igra/f3ae1099e25423e15a6249
                   |                            |968f42b5c368f29843

--- Comment #2 from Pierre Stirnweiss <pstirnweiss@googlemail.com> ---
Git commit f3ae1099e25423e15a6249968f42b5c368f29843 by Pierre Stirnweiss.
Committed on 28/11/2012 at 18:01.
Pushed by pstirnweiss into branch 'master'.

Sort styles according to usage in the textshape docker's comboBoxes.

REVIEW: 107445


Squashed commit of the following:

commit bd699d1bbf8c837505ebe19c5c0fc7cbc307ca11
Merge: 15e1a5c c98e784
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Tue Nov 27 20:14:12 2012 +0100

    Merge branch 'master' into textshape-stylesWidget-PierreSt

commit 15e1a5c348a09e516fa5b3e58525e9f4440060a1
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Tue Nov 27 17:58:17 2012 +0100

    Fix problems highlighted by C. Boemann

commit fe4de0d618eb6c6dd83ab07f8641f6e24cfd55fc
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Mon Nov 26 18:43:33 2012 +0100

    Clean-up left-over

commit 1e40dfdc986eb2bc9114684a20aa5ec60db77d2d
Merge: ea8cdb0 82cc058
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sun Nov 25 10:19:14 2012 +0100

    Merge branch 'master' into textshape-stylesWidget-PierreSt

commit ea8cdb0e14e6805b4082ffd0929c8b1b344c82f4
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sat Nov 24 15:02:15 2012 +0100

    Additional clean ups

commit 6308ed4fd70aa99ccd5214806f370423ca5b7015
Merge: d306e00 81b50ca
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sat Nov 24 14:49:45 2012 +0100

    Merge branch 'master' into textshape-stylesWidget-PierreSt

commit d306e009525c97d2c7e1706a47ec267d7e994c8c
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sat Nov 24 14:48:09 2012 +0100

    Clean ups in the code

commit 231e717b0c1c7dbec984679e0fb07dc821f8e889
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sun Nov 11 13:03:26 2012 +0100

    Fix another crash

commit c37b513c5b4f9c09345848f2885f4eac24791008
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sun Nov 11 12:42:08 2012 +0100

    Fix random crash.

commit 0a9c5e3464c39e45eeeb26b1c65643bdb63fca32
Merge: 8e675f4 e6c1c31
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sat Nov 10 17:07:22 2012 +0100

    Merge branch 'master' into textshape-stylesWidget-PierreSt

commit 8e675f4d1b66eda355e994c0c88b6ac67337bca3
Merge: bcb9fbd 6c7d9e1
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sat Nov 10 15:54:06 2012 +0100

    Merge branch 'master' into textshape-stylesWidget-PierreSt

commit bcb9fbd767aa2c4b7e5670ab2546797e9cf3e42b
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sat Nov 10 15:52:53 2012 +0100

    Initial population of style, a tad further.

commit fbbcf132764ca9a60b59e46aa844df918aa8fd05
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Mon Oct 22 21:36:20 2012 +0200

    Add missing bits to previous commit

commit 889e39862888ef83dc052604746611c959352bf0
Author: Pierre Stirnweiss <pstirnweiss@googlemail.com>
Date:   Sun Oct 21 23:39:14 2012 +0200

    Create filter for stylesCombo in the docker

M  +2    -0    libs/kotext/KoTextEditor.h
M  +2    -0    libs/kotext/KoTextEditor_format.cpp
M  +41   -21   libs/kotext/styles/KoCharacterStyle.cpp
M  +28   -11   libs/kotext/styles/KoCharacterStyle.h
M  +14   -1    libs/kotext/styles/KoParagraphStyle.cpp
M  +10   -1    libs/kotext/styles/KoParagraphStyle.h
M  +33   -0    libs/kotext/styles/KoStyleManager.cpp
M  +9    -0    libs/kotext/styles/KoStyleManager.h
M  +7    -3    plugins/textshape/CMakeLists.txt
M  +11   -2    plugins/textshape/TextTool.cpp
A  +26   -0    plugins/textshape/dialogs/AbstractStylesModel.cpp     [License:
LGPL (v2+)]
A  +98   -0    plugins/textshape/dialogs/AbstractStylesModel.h     [License:
LGPL (v2+)]
A  +196  -0    plugins/textshape/dialogs/DockerStylesComboModel.cpp    
[License: LGPL (v2+)]
A  +54   -0    plugins/textshape/dialogs/DockerStylesComboModel.h     [License:
LGPL (v2+)]
M  +34   -10   plugins/textshape/dialogs/SimpleCharacterWidget.cpp
M  +8    -0    plugins/textshape/dialogs/SimpleCharacterWidget.h
M  +33   -5    plugins/textshape/dialogs/SimpleParagraphWidget.cpp
M  +5    -0    plugins/textshape/dialogs/SimpleParagraphWidget.h
M  +7    -4    plugins/textshape/dialogs/StylesCombo.cpp
M  +3    -3    plugins/textshape/dialogs/StylesCombo.h
A  +248  -0    plugins/textshape/dialogs/StylesFilteredModelBase.cpp    
[License: LGPL (v2+)]
A  +102  -0    plugins/textshape/dialogs/StylesFilteredModelBase.h    
[License: LGPL (v2+)]
M  +28   -23   plugins/textshape/dialogs/StylesModel.cpp
M  +44   -22   plugins/textshape/dialogs/StylesModel.h
A  +95   -0    plugins/textshape/dialogs/ValidParentStylesProxyModel.cpp    
[License: LGPL (v2+)]
A  +60   -0    plugins/textshape/dialogs/ValidParentStylesProxyModel.h    
[License: LGPL (v2+)]

http://commits.kde.org/calligra/f3ae1099e25423e15a6249968f42b5c368f29843

-- 
You are receiving this mail because:
You are watching all bug changes.
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic