~ubuntu-filemanager-dev/ubuntu-filemanager-app/trunk

« back to all changes in this revision

Viewing changes to src/plugin/folderlistmodel/smb/smblocation.h

  • Committer: Bileto Bot
  • Date: 2017-04-04 17:06:41 UTC
  • mfrom: (588.1.19 fix-desktop-file)
  • Revision ID: ci-train-bot@canonical.com-20170404170641-1p15lmx8wodlx2ut
* Rename binary file to ubuntu-filemanager-app
* Join plugin packages into the main package 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
 *
 
3
 * Copyright 2015 Canonical Ltd.
 
4
 * Copyright 2015 Carlos J Mazieri <carlos.mazieri@gmail.com>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU Lesser General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 * File: smblocation.h
 
19
 * Date: 17/01/2015
 
20
 */
 
21
 
 
22
#ifndef SMBLOCATION_H
 
23
#define SMBLOCATION_H
 
24
 
 
25
#include "networklocation.h"
 
26
#include "smblocationauthentication.h"
 
27
#include "smbobject.h"
 
28
 
 
29
 
 
30
class SmbLocation : public NetworkLocation, public SmbLocationAuthentication
 
31
{
 
32
    Q_OBJECT
 
33
public:
 
34
    explicit SmbLocation(int type, QObject *parent=0);
 
35
    ~SmbLocation();
 
36
 
 
37
public:   
 
38
    virtual DirItemInfo * newItemInfo(const QString& urlPath);
 
39
    virtual LocationItemDirIterator * newDirIterator(const QString & path,
 
40
                                                      QDir::Filters filters,
 
41
                                                      QDirIterator::IteratorFlags flags = QDirIterator::NoIteratorFlags,
 
42
                                                      LocationItemDirIterator::LoadMode loadmode = LocationItemDirIterator::LoadOnConstructor);
 
43
    virtual LocationItemFile   * newFile(const QString & path);   
 
44
    virtual LocationItemDir    * newDir(const QString & dir = QLatin1String(0));
 
45
    virtual bool        isThereDiskSpace(const QString& pathname, qint64 requiredSize);
 
46
    virtual QString     urlBelongsToLocation(const QString& urlPath, int indexOfColonAndSlash);
 
47
    virtual QString     currentAuthenticationUser();
 
48
    virtual QString     currentAuthenticationPassword();
 
49
 
 
50
public slots:   
 
51
    virtual void setAuthentication(const QString& user,
 
52
                                   const QString& password);
 
53
 
 
54
 
 
55
private:
 
56
   SmbUtil_Ptr m_smb;
 
57
};
 
58
 
 
59
#endif // SMBLOCATION_H