~ubuntu-branches/ubuntu/vivid/kdebase-runtime/vivid

« back to all changes in this revision

Viewing changes to nepomuk/services/backupsync/gui/identifiermodel.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-12-07 11:41:36 UTC
  • mfrom: (1.1.47 upstream)
  • Revision ID: james.westby@ubuntu.com-20101207114136-2yocncb7051tmobj
Tags: 4:4.5.85-0ubuntu1
New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        virtual QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const;
57
57
        virtual Qt::ItemFlags flags(const QModelIndex& index) const;
58
58
        
59
 
    public Q_SLOTS:
60
 
        /**
61
 
         * Used for debugging & testing.
62
 
         */
63
 
        void debug_notIdentified( int id, const QString & resUri, const QString & nieUrl, bool folder=false );
64
 
 
65
 
        /**
66
 
         * Used for debugging & testing.
67
 
         */
68
 
        void debug_identified( int id, const QString & nieUrl );
69
 
 
 
59
 
 
60
        void ignoreAll();
70
61
    public Q_SLOTS:
71
62
//         void resolveResource( const QUrl& resource, const QUrl& identified );
72
63
//         void discardResource( const QUrl& resource );
73
64
        
74
 
        void notIdentified( int id, const QList<Soprano::Statement> & sts );
75
 
        void identified( int id, const QString & oldUri, const QString & newUri );
 
65
        void notIdentified( const QList<Soprano::Statement> & sts );
 
66
        void identified( const QUrl& oldUri, const QUrl& newUri );
76
67
 
77
68
    private:
78
69
        IdentifierModelTree * m_tree;