~ubuntu-branches/ubuntu/quantal/kate/quantal-proposed

« back to all changes in this revision

Viewing changes to kate/plugins/kate-ctags/kate_ctags_view.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 13:28:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: package-import@ubuntu.com-20111214132806-aa2uf6ri5w2p8ak3
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
#include "ui_kate_ctags.h"
43
43
 
44
 
#define DEFAULT_CTAGS_CMD "ctags -R --c++-types=+px --excmd=pattern --exclude=Makefile --exclude=."
 
44
#define DEFAULT_CTAGS_CMD "ctags -R --c++-types=+px --extra=+q --excmd=pattern --exclude=Makefile --exclude=."
45
45
 
46
46
typedef struct
47
47
{
62
62
    void readSessionConfig (KConfigBase* config, const QString& groupPrefix);
63
63
    void writeSessionConfig (KConfigBase* config, const QString& groupPrefix);
64
64
 
65
 
public slots:
 
65
public Q_SLOTS:
66
66
    void gotoDefinition();
67
67
    void gotoDeclaration();
68
68
    void lookupTag();
81
81
protected:
82
82
    bool eventFilter(QObject *obj, QEvent *ev);
83
83
 
 
84
private Q_SLOTS:
 
85
    void resetCMD();
 
86
 
84
87
private:
85
88
    bool listContains(const QString &target);
86
89
 
87
90
    QString currentWord();
88
91
    
89
 
    void clearInput();
 
92
    void setNewLookupText(const QString &newText);
90
93
    void displayHits(const Tags::TagList &list);
91
94
    
92
95
    void gotoTagForTypes(const QString &tag, QStringList const &types);