/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ // Original file Copyright Crytek GMBH or its affiliates, used under license. #ifndef CRYINCLUDE_EDITORCOMMON_QPROPERTYTREE_PROPERTYROWRESOURCEFOLDERPATH_H #define CRYINCLUDE_EDITORCOMMON_QPROPERTYTREE_PROPERTYROWRESOURCEFOLDERPATH_H #pragma once #include "PropertyDrawContext.h" #include "PropertyRowImpl.h" #include "QPropertyTree.h" #include "PropertyTreeModel.h" #include "Serialization.h" #include #include #include #include using Serialization::ResourceFolderPath; class PropertyRowResourceFolderPath : public PropertyRowField { public: PropertyRowResourceFolderPath() : handle_() {} bool isLeaf() const override { return true; } bool isStatic() const override { return false; } bool onActivate(const PropertyActivationEvent& e) override; void setValueAndContext(const Serialization::SStruct& ser, Serialization::IArchive& ar) override; bool assignTo(const Serialization::SStruct& ser) const override; string valueAsString() const; bool onContextMenu(QMenu& menu, QPropertyTree* tree); int buttonCount() const override { return 1; } virtual const QIcon& buttonIcon(const QPropertyTree* tree, int index) const override; virtual bool usePathEllipsis() const override { return true; } void serializeValue(Serialization::IArchive& ar) override; const void* searchHandle() const override { return handle_; } Serialization::TypeID typeId() const override { return Serialization::TypeID::get(); } void clear(); bool processesKey(QPropertyTree* tree, const QKeyEvent* ev) override; bool onKeyDown(QPropertyTree* tree, const QKeyEvent* ev) override; private: string path_; string startFolder_; const void* handle_; }; struct ResourceFolderPathMenuHandler : PropertyRowMenuHandler { Q_OBJECT public: QPropertyTree * tree; PropertyRowResourceFolderPath* self; ResourceFolderPathMenuHandler(QPropertyTree* tree, PropertyRowResourceFolderPath* container); public slots: void onMenuClear(); }; #endif // CRYINCLUDE_EDITORCOMMON_QPROPERTYTREE_PROPERTYROWRESOURCEFOLDERPATH_H