Bug 211060 - Advanced rename: keep the pattern
Summary: Advanced rename: keep the pattern
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: AdvancedRename-dialog (show other bugs)
Version: 1.0.0
Platform: Fedora RPMs Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-10-19 11:58 UTC by Bartek Pietrasiak
Modified: 2022-02-01 06:23 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 1.0.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bartek Pietrasiak 2009-10-19 11:58:59 UTC
Version:           revision 1034752 (using KDE 4.3.2)
OS:                Linux
Installed from:    Fedora RPMs

It would be nice if the advanced rename dialog didn't remove the pattern but keep it in the input box (as the kipi rename plugin does), so that I wouldn't have to create it every time (and it always the same).

Perhaps a drop down list with a few recently used would be useful for people, who use more than one pattern.
Comment 1 Andi Clemens 2009-10-19 12:36:38 UTC
Yes, I was thinking about a combobox with at least 5 last used patterns.
About keeping the pattern: I guess most users don't like it, but we will see.
But a history combobox should definitely help you out here.
Comment 2 Andi Clemens 2009-10-19 13:04:53 UTC
Ok right now I have a huge problem :)
I use a modified KLineEdit here to insert tokens, highlight them etc. This can not be done with an editable KComboBox widget, so right now I have no clue how to add a dropdown menu with history items. The only solution I see so far is copying the kcombobox class from KDE and modify it.
Comment 3 caulier.gilles 2009-10-19 13:07:12 UTC
Why, you don't use auto-completion ? It work very well... It's not enough ?

Gilles
Comment 4 caulier.gilles 2009-10-19 13:09:37 UTC
Like this : http://lxr.kde.org/source/extragear/graphics/digikam/libs/widgets/common/searchtextbar.cpp#68

KLineEdit will provide combobox menu if necessary...

Gilles
Comment 5 Andi Clemens 2009-10-19 13:14:25 UTC
You mean for history? Hmm I can try it... otherwise I will reimplement KComboBox. The API is weird there, we have a KComboBox::cursorPosition() method, but no KComboBox::setCursorPosition(). This would have solved my problem I guess.
Comment 6 caulier.gilles 2009-10-19 13:16:11 UTC
yes, for history...

Gilles
Comment 7 Bartek Pietrasiak 2009-10-19 14:57:42 UTC
"I guess most users don't like it"
I think that most people like this digikam feature and miss it in e.g. gimp. It is quite useful when you edit more than one file. I don't have to change the input data while resizing, sharpening and saving to jpg.

In this case it might not be so important, since I don't rename as often as resize ;)

Btw, if you wanted to make both of the groups happy, you can put a checkbox in the options ;)
Comment 8 Andi Clemens 2009-10-19 15:05:37 UTC
The "problem" is that I just added another request about using the filename as a pattern when only a single image is going to be renamed.
It would be very inconsistent if many files will restore the last pattern, but a single file will use the filename as the pattern.

So I guess a history function is much more practical, since we can set the filename as a pattern for single rename, but you are still able to restore your last patterns by a dropdown menu.

Both sides should be happy then... at least I guess so :D
Comment 9 Andi Clemens 2009-10-19 17:49:12 UTC
SVN commit 1037602 by aclemens:

Add history to the AdvancedRenameWidget.
Some issues:
- Highlighting is not working correctly anymore, somehow the CSS
style is ignored (if you move the mouse very quickly, a token sometimes is
colored red, but only for some milliseconds).

- The lineedit widget seems to be overlaying the ComboBox, I have not found yet
  a way to make it fit

Bartek,
can you test this and tell me if it is enough for you?

CCBUG:211060

 M  +91 -33    advancedrenameinput.cpp  
 M  +38 -4     advancedrenameinput.h  
 M  +21 -4     advancedrenamewidget.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1037602
Comment 10 Andi Clemens 2009-10-19 20:39:13 UTC
History is implemented now and should work fine.
A maximum of 10 patterns will be remembered.

Gilles,
somehow the history / combobox is broken in BQM?
I don't understand why.

Any idea?

Andi
Comment 11 Andi Clemens 2009-10-19 21:59:16 UTC
Right now the history is saved in AdvancedRenameWidget (which made sense to me), but I'm thinking about moving it out into the places where the widget is used, e.g. CameraUI, AlbumUIDialog and BQM.
Every one of these instances will then have it's own history.
What do you think?
Comment 12 Andi Clemens 2009-10-19 22:21:26 UTC
Hmm I will go with this setup now:
Every instance (CameraUI, AlbumUI and BQM) remembers the their last renaming string and inserts it as the active pattern.

The history will be shared though.
This should satisfy the original poster as well.

I'll close this wish now, feel free to add more comments if necessary.
Comment 13 Bartek Pietrasiak 2009-10-20 19:20:13 UTC
It is fine for me. Thx.