summaryrefslogtreecommitdiff
path: root/include/sfx2/classificationhelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/classificationhelper.hxx')
-rw-r--r--include/sfx2/classificationhelper.hxx17
1 files changed, 16 insertions, 1 deletions
diff --git a/include/sfx2/classificationhelper.hxx b/include/sfx2/classificationhelper.hxx
index c5c6294d603b..a3f32788c2d9 100644
--- a/include/sfx2/classificationhelper.hxx
+++ b/include/sfx2/classificationhelper.hxx
@@ -110,6 +110,15 @@ public:
namespace sfx
{
+
+/// Specifies the origin: either defined by the BAF policy or manual via. the advanced classification dialog
+enum class ClassificationCreationOrigin
+{
+ NONE,
+ BAF_POLICY,
+ MANUAL
+};
+
class ClassificationKeyCreator
{
private:
@@ -199,7 +208,13 @@ public:
OUString makeFullTextualRepresentationKey() const
{
- return getPolicyKey() + "FullTexturalRepresentation";
+ return getPolicyKey() + "Extension:FullTexturalRepresentation";
+ }
+
+ /// Classification creation origin key
+ OUString makeCreationOriginKey() const
+ {
+ return getPolicyKey() + "CreationOrigin";
}
};