ContentSecurity
#include <bb/cascades/ContentSecurity>
Allows for associating a control with a security perimeter.
Hybrid applications can use this to set the security perimeter of the control. This will allow the control to interact within the set perimeter of the system.
TextArea {
content.flags: TextContentFlag.ActiveText
text: "Enterprise Link: www.rim.com will open browser in work perimeter"
attachedObjects: [
ContentSecurity {
id: contentsecurity
defaultPerimeter: SecurityPerimeter.Enterprise
}
]
}
BlackBerry 10.0.0
Inheritance
| bb::cascades::BaseObject | |||
| bb::cascades::AbstractContentSecurity | |||
| bb::cascades::ContentSecurity | |||
QML properties
| hasEnterpriseContent | : bool [read-only] |
| hasPersonalContent | : bool [read-only] |
| hasUnknownContent | : bool [read-only] |
| defaultPerimeter | : bb::system::SecurityPerimeter::Type |
| objectName | : QString |
| parent | : QObject [read-only] |
QML signals
Properties Index
| bool | hasEnterpriseContent [read-only] |
| bool | hasPersonalContent [read-only] |
| bool | hasUnknownContent [read-only] |
| bb::system::SecurityPerimeter::Type | defaultPerimeter |
| QString | objectName |
| QObject | parent [read-only] |
Public Functions Index
| ContentSecurity (BaseObject *parent=0) | |
| virtual | ~ContentSecurity () |
| bool | hasEnterpriseContent () |
| bool | hasPersonalContent () |
| bool | hasUnknownContent () |
| bb::system::SecurityPerimeter::Type | defaultPerimeter () |
| Q_SLOT void | resetDefaultPerimeter () |
| Q_SLOT void | setDefaultPerimeter (bb::system::SecurityPerimeter::Type defaultPerimeter) |
| void | setObjectName (const QString &name) |
| virtual Q_INVOKABLE QString | toDebugString () const |
Static Public Functions Index
| Builder | create () |
Protected Functions Index
Only has inherited protected functions
| BaseObject (QObject *parent=0) |
Signals Index
| void | hasEnterpriseContentChanged (bool hasEnterpriseContent) |
| void | hasPersonalContentChanged (bool hasPersonalContent) |
| void | hasUnknownContentChanged (bool hasUnknownContent) |
| void | creationCompleted () |
| void | defaultPerimeterChanged (const bb::system::SecurityPerimeter::Type newDefaultPerimeter) |
| void | objectNameChanged (const QString &objectName) |
Properties
bool
A read only property that indicates whether there is enterprise content.
The default value is false.
BlackBerry 10.0.0
bool
A read only property that indicates if there is personal content.
The default value is false.
BlackBerry 10.0.0
bool
A read only property that indicates if there is unknown content.
The default value is false.
BlackBerry 10.0.0
QString
This property is overridden from QObject.
As the objectName property is overridden from the QObject class, this signal will not be emitted if setObjectName() function is called directly on QObject.
The default value of this property is QString::null.
QObject::objectName().
BlackBerry 10.0.0
QObject
A read-only property that represents this object's parent.
The parent of an object is specified using QObject::setParent(QObject*). The purpose of the property is to expose the object's parent to QML.
This property is read-only to prevent modifications from QML, where typically the parent is declaratively set. In C++ code, the parent can be explicitly set using QObject::setParent(QObject*), or implicitly set by adding it to a visual container.
The default value of this property is 0.
BlackBerry 10.0.0
Public Functions
Constructs a ContentSecurity.
BlackBerry 10.0.0
virtual
Destructor.
BlackBerry 10.0.0
bool
Indicates whether there is enterprise content.
true if there is enterprise content, false otherwise. The default value is false.
BlackBerry 10.0.0
bool
Indicates whether there is personal content.
true if there is personal content, false otherwise. The default value is false.
BlackBerry 10.0.0
bool
Indicates whether there is unknown content.
true if there is unknown content, false otherwise. The default value is false.
BlackBerry 10.0.0
bb::system::SecurityPerimeter::Type 
Gets the default security perimeter.
The security perimeter. The default value is Default.
BlackBerry 10.0.0
Q_SLOT void 
Resets the default perimeter.
Resets the default perimeter to Default
BlackBerry 10.0.0
Q_SLOT void 
Sets the default security perimeter.
| Parameters | |
|---|---|
| defaultPerimeter | |
BlackBerry 10.0.0
void 
Sets the objectName property.
| Parameters | |
|---|---|
| name |
The new name for the object. |
BlackBerry 10.0.0
virtual Q_INVOKABLE QString 
Returns a debug string representing this object.
A debug string for the object.
BlackBerry 10.0.0
Static Public Functions
Builder
Protected Functions
(Only has inherited protected functions)
Constructs an instance of BaseObject's subclass.
| Parameters | |
|---|---|
| parent |
An optional parent, defaults to 0. |
BlackBerry 10.0.0
Signals
void
Emitted when the hasEnterpriseContent property has changed.
| Parameters | |
|---|---|
| hasEnterpriseContent |
true if the content now contains enterprise content, false otherwise. |
BlackBerry 10.0.0
void
Emitted when the hasPersonalContent property has changed.
| Parameters | |
|---|---|
| hasPersonalContent |
true if the content now contains personal content, false otherwise. |
BlackBerry 10.0.0
void
Emitted when the hasUnknownContent property has changed.
| Parameters | |
|---|---|
| hasUnknownContent |
true if the content now contains unknown content, false otherwise. |
BlackBerry 10.0.0
void 
This signal is emitted only when this object is instantiated as a result of loading a QML document and creating the root node, or when an object is being constructed using its builder class.
This signal is emitted only when this object is instantiated as a result of loading a QML document and creating the root node (only after the root component that caused this instantiation has completed construction), or when the object is being constructed from its builder class. This signal is emitted to indicate that the construction and initialization of the object has been completed, the properties are initialized, and any QML binding values have been assigned to the object.
This signal is not emitted when the object is constructed from C++ using the constructor. If the object is constructed using its builder class, the signal is emitted when the the builder class returns the fully constructed object.
This signal can be used when there is an activity that needs to be performed, such as a property state integrity verification after the object is instantiated from a QML document or a builder, but before control is returned to the application.
BlackBerry 10.0.0
void 
Emitted when the default perimeter has changed.
| Parameters | |
|---|---|
| newDefaultPerimeter |
The new default perimeter |
BlackBerry 10.0.0
void 
This signal is emitted when the objectName property is changed.
BlackBerry 10.0.0