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

« back to all changes in this revision

Viewing changes to src/plugin/folderlistmodel/urliteminfo.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 2014 Canonical Ltd.
 
4
 * Copyright 2014 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: urliteminfo.h
 
19
 * Date: 08/12/2014
 
20
 */
 
21
 
 
22
#ifndef URLITEMINFO_H
 
23
#define URLITEMINFO_H
 
24
 
 
25
#include "diriteminfo.h"
 
26
 
 
27
 
 
28
/*!
 
29
 * \brief The UrlItemInfo is an abstract class that provides URL root
 
30
 *
 
31
 *  Basically it differs from DirItemInfo in the field \a d_ptr->_normalizedPath, it must store the
 
32
 *  url like trash:///Item, while the field d_ptr->_path stores the current path in the file system as usual.
 
33
 *
 
34
 */
 
35
 
 
36
class UrlItemInfo : public DirItemInfo
 
37
{
 
38
public:
 
39
    static QStringList separatePathFilename(const QString& urlPath);
 
40
protected:
 
41
    UrlItemInfo(const QString& urlPath, const QString& urlRoot);
 
42
    UrlItemInfo();
 
43
 
 
44
protected:
 
45
    void               setRoot(const QString& urlRoot);
 
46
 
 
47
 
 
48
private:
 
49
    void    init(const QString& urlPath);
 
50
    void    verifyHost(const QString urlPath);
 
51
};
 
52
 
 
53
#endif // URLITEMINFO_H