File indexing completed on 2025-01-05 05:14:48

0001 /*
0002 SPDX-FileCopyrightText: 2021 Hamed Masafi <hamed.masfi@gmail.com>
0003 
0004 SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "abstractactions.h"
0010 #include "libkommitwidgets_export.h"
0011 
0012 class LIBKOMMITWIDGETS_EXPORT SubmoduleActions : public AbstractActions
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     explicit SubmoduleActions(Git::Manager *git, QWidget *parent = nullptr);
0018 
0019     void init();
0020     void update();
0021     void create();
0022     void deinit();
0023     void sync();
0024 
0025     Q_REQUIRED_RESULT const QString &subModuleName() const;
0026     void setSubModuleName(const QString &newSubModuleName);
0027 
0028 private:
0029     QString mSubModuleName;
0030     DEFINE_ACTION(actionInit)
0031     DEFINE_ACTION(actionUpdate)
0032     DEFINE_ACTION(actionCreate)
0033     DEFINE_ACTION(actionDeinit)
0034     DEFINE_ACTION(actionSync)
0035 };