~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to kio/kfile/kdirselectdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class KFileTreeViewItem;
32
32
class KToggleAction;
33
33
class Q3ListViewItem;
 
34
class KSharedConfigPtr;
34
35
 
35
36
 
36
37
class K3ListView;
90
91
    KUrl startDir() const { return m_startDir; }
91
92
 
92
93
public Q_SLOTS:
93
 
    void setCurrentURL( const KUrl& url );
 
94
    void setCurrentUrl( const KUrl& url );
94
95
 
95
96
protected Q_SLOTS:
96
97
    virtual void slotUser1();
104
105
 
105
106
private Q_SLOTS:
106
107
    void slotCurrentChanged();
107
 
    void slotURLActivated( const QString& );
 
108
    void slotUrlActivated( const QString& );
108
109
    void slotNextDirToList( KFileTreeViewItem *dirItem );
109
110
    void slotComboTextChanged( const QString& text );
110
111
    void slotContextMenu( K3ListView *, Q3ListViewItem *, const QPoint & );
112
113
    void slotMkdir();
113
114
 
114
115
private:
115
 
    void readConfig( KConfig *config, const QString& group );
116
 
    void saveConfig( KConfig *config, const QString& group );
 
116
    void readConfig(const KSharedConfigPtr &config, const QString& group);
 
117
    void saveConfig(KSharedConfigPtr config, const QString& group);
117
118
    void openNextDir( KFileTreeViewItem *parent );
118
119
    KFileTreeBranch * createBranch( const KUrl& url );
119
120