~ubuntu-branches/ubuntu/trusty/digikam/trusty

« back to all changes in this revision

Viewing changes to core/utilities/cameragui/TODO

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-11-26 18:24:20 UTC
  • mfrom: (1.9.1) (3.1.23 experimental)
  • Revision ID: package-import@ubuntu.com-20121126182420-qoy6z0nx4ai0wzcl
Tags: 4:3.0.0~beta3-0ubuntu1
* New upstream release
  - Add build-deps :  libhupnp-dev, libqtgstreamer-dev, libmagickcore-dev
* Merge from debian, remaining changes:
  - Make sure libqt4-opengl-dev, libgl1-mesa-dev and libglu1-mesa-dev only
    install on i386,amd64 and powerpc
  - Depend on libtiff-dev instead of libtiff4-dev
  - Drop digikam breaks/replaces kipi-plugins-common since we're past the
    LTS release now
  - digikam to recommend mplayerthumbs | ffmpegthumbs. We currently only
    have latter in the archives, even though former is also supposed to
    be part of kdemultimedia. (LP: #890059)
  - kipi-plugins to recommend www-browser rather than konqueror directly
    since 2.8 no direct usage of konqueror is present in the flickr
    plugin anymore (LP: #1011211)
  - Keep kubuntu_mysqld_executable_name.diff
  - Don't install libkipi translations
  - Keep deps on libcv-dev, libcvaux-dev
  - Keep split packaging of libraries
  - Replace icons from KDE 3 time in debian/xpm.d/*.xpm with the new
    versions (LP: #658047)
* Update debian/not-installed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Camera Icon-view port to Qt4 Model/View port
2
 
============================================
3
 
 
4
 
For 2.1.0, a lots camera interface code have been cleaned to reduce depencies to Qt3 support class which still used in icon-view.
5
 
This code must be ported to Qt4 model-view. Code relevant of this are listed below :
6
 
 
7
 
https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/entry/utilities/cameragui/items/cameraiconitem.h
8
 
https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/entry/utilities/cameragui/views/cameraiconview.h
9
 
 
10
 
... which use these parents classes based on Q3ScrollView : 
11
 
 
12
 
https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/show/utilities/cameragui/q3support
13
 
 
14
 
Indirectly this class is also relevant of future model/view port :
15
 
 
16
 
https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/entry/utilities/cameragui/views/cameraiconviewtooltip.h
17
 
 
18
 
For all of this, we have already classes of icon-view based on Qt4 model-view in digiKam core. There are used in AlbumGUI:
19
 
 
20
 
https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/show/libs/widgets/itemview
21
 
 
22
 
Here, you will find models, used to populate and filter icon view:
23
 
 
24
 
https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/show/libs/models
25
 
 
26
 
But of course, these models are based on database and cannot be used in camera interface. They must be re-written...
27
 
 
28
 
The goal of model-view port is to be able to :
29
 
 
30
 
- factorize a lots of code shared with album gui.
31
 
- remove Qt3 dependency
32
 
- create more powerful icon-view for camera interface, with advanced filtering option, group of items (RAW+JPEG), pre-tags options, etc...
33
 
- To be able to use preview mode in camera interface (image + video), as in albumgui.
34
 
 
35
 
Relevant files from KDE bugzilla:
36
 
 
37
 
https://bugs.kde.org/show_bug.cgi?id=121310
38
 
https://bugs.kde.org/show_bug.cgi?id=126149
39
 
https://bugs.kde.org/show_bug.cgi?id=158437
40
 
https://bugs.kde.org/show_bug.cgi?id=216491
41
 
 
42
 
...and certainly more files...