JobTreeViewItemDelegate.h 707 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #if !defined(Q_MOC_RUN)
  10. #include <AzQtComponents/Components/Widgets/TableView.h>
  11. #endif
  12. namespace AssetProcessor
  13. {
  14. class JobTreeViewItemDelegate
  15. : public AzQtComponents::TableViewItemDelegate
  16. {
  17. Q_OBJECT
  18. public:
  19. using AzQtComponents::TableViewItemDelegate::TableViewItemDelegate;
  20. protected:
  21. void initStyleOption(QStyleOptionViewItem* option, const QModelIndex& index) const override;
  22. };
  23. } // namespace AssetProcessor