Seamly2D
Code documentation
vfileproperty_p.h
Go to the documentation of this file.
1
/************************************************************************
2
**
3
** @file vfileproperty_p.h
4
** @author hedgeware <internal(at)hedgeware.net>
5
** @date
6
**
7
** @brief
8
** @copyright
9
** All rights reserved. This program and the accompanying materials
10
** are made available under the terms of the GNU Lesser General Public License
11
** (LGPL) version 2.1 which accompanies this distribution, and is available at
12
** http://www.gnu.org/licenses/lgpl-2.1.html
13
**
14
** This library is distributed in the hope that it will be useful,
15
** but WITHOUT ANY WARRANTY; without even the implied warranty of
16
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
** Lesser General Public License for more details.
18
**
19
*************************************************************************/
20
21
#ifndef VFILEPROPERTY_P_H
22
#define VFILEPROPERTY_P_H
23
24
// ONLY INCLUDE THIS IN .CPP FILES
25
26
#include "
vproperty_p.h
"
27
28
namespace
VPE
29
{
30
31
class
VFilePropertyPrivate
:
public
VPropertyPrivate
32
{
33
public
:
34
//! File filters
35
QString
FileFilters
;
36
37
//! Determines whether the file property is a file or a directory. Default: false
38
bool
Directory
;
39
40
41
//! Constructor passing name and type
42
VFilePropertyPrivate
(
const
QString& name, QVariant::Type
type
,
bool
directory =
false
)
43
:
VPropertyPrivate
(name,
type
),
FileFilters
(),
Directory
(directory) {}
44
45
//! Constructor
46
VFilePropertyPrivate
()
47
:
VPropertyPrivate
(),
FileFilters
(),
Directory
(false) {}
48
49
virtual
~VFilePropertyPrivate
() Q_DECL_OVERRIDE;
50
};
51
52
VFilePropertyPrivate
::~
VFilePropertyPrivate
()
53
{}
54
55
}
56
57
#endif
// VFILEPROPERTY_P_H
VPE::VFilePropertyPrivate
Definition:
vfileproperty_p.h:32
VPE::VFilePropertyPrivate::VFilePropertyPrivate
VFilePropertyPrivate(const QString &name, QVariant::Type type, bool directory=false)
Constructor passing name and type.
Definition:
vfileproperty_p.h:42
VPE::VFilePropertyPrivate::~VFilePropertyPrivate
virtual ~VFilePropertyPrivate() Q_DECL_OVERRIDE
Definition:
vfileproperty_p.h:52
VPE::VFilePropertyPrivate::Directory
bool Directory
Determines whether the file property is a file or a directory. Default: false.
Definition:
vfileproperty_p.h:38
VPE::VFilePropertyPrivate::FileFilters
QString FileFilters
File filters.
Definition:
vfileproperty_p.h:35
VPE::VFilePropertyPrivate::VFilePropertyPrivate
VFilePropertyPrivate()
Constructor.
Definition:
vfileproperty_p.h:46
VPE::VPropertyPrivate
Definition:
vproperty_p.h:34
VPE::VPropertyPrivate::type
Property type
Definition:
vproperty_p.h:65
VPE
Definition:
lineweight_property.h:46
vproperty_p.h
src
libs
vpropertyexplorer
vfileproperty_p.h
Generated by
1.9.1